LNMP 아키텍처 배포

1608 단어
1. wordpress 코드를 준비해서 지정된 위치에 놓기
[root@web01 ~]# mkdir /code
[root@web01 ~]# tar xf wordpress-5.2.3-zh_CN.tar.gz  -C /code/

2. 권한 수정, 통일 사용자 www(자체 설정 사용자)
1.)    
	[root@web01 ~]# groupadd -g 666  www
	[root@web01 ~]# useradd -u666 -g666 www

2.)  nginx    
	[root@web01 ~]# sed -i  '/^user/c user www;'  /etc/nginx/nginx.conf

3.)  php-fpm     
	[root@web01 ~]# sed -i '/^user/c user = www'   /etc/php-fpm.d/www.conf
	[root@web01 ~]# sed -i '/^group/c group = www'   /etc/php-fpm.d/www.conf

4.)  nginx php
	[root@web01 ~]# systemctl restart nginx php-fpm
5.)       
	[root@web01 ~]# chown -R www.www /code/wordpress/

3. 데이터베이스를 설치, 시작하고 라이브러리 만들기
[root@web01 php]# yum install mariadb mariadb-server -y
[root@web01 php]# systemctl start  mariadb
[root@web01 php]# systemctl enable  mariadb
[root@web01 php]# mysqladmin password goodyang
[root@web01 php]# mysql -uroot -pgoodyang
MariaDB [(none)]> create database wordpress;

4. nginx 설정, wordpress 사이트 추가
[root@web01 ~]# cat /etc/nginx/conf.d/blog.yang.com.conf
	server  {
			listen 80;
			server_name blog.yang.com;
			root /code/wordpress;
			client_max_body_size 100m;

		location / {
				index index.php;
			}

		location ~ \.php$ {
				fastcgi_pass 127.0.0.1:9000;
				fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
				include fastcgi_params;
			}
		}

5. 구문 테스트, 재시작
	[root@web01 ~]# nginx -t
	[root@web01 ~]# systemctl restart nginx

6.host 납치(도메인 이름 없음)

좋은 웹페이지 즐겨찾기