한글 워드프레스 설치(1) - centos7 nginx1.12, php 7.1.7 mariadb 10.1.26
서버사양
centos 7 리눅스 서버
웹서버 NGINX 1.12
서버스크립트 php
데이타 베이스 mariadb
워드프레스 4.8.1
NGINX 에 접속 확인
server {
listen 80;
server_name edaero.net *.edaero.net www.edaero.net;
root /home/mytest;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/mytest;
}
location ~ .php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
]# systemctl restart nginx
]# vi /home/test/ptest.php
phpinfo();
?>
워드프레스 홈페이지
한국어버젼:
http://ko.wordpress.org/
압축파일 경로
http://ko.wordpress.org/wordpress-4.8.1-ko_KR.zip
워드프레스 다운로드와 압축해제
]# cd /home/mytest/
워드프레스 다운로드
]# wget http://ko.wordpress.org/wordpress-4.8.1-ko_KR.zip
워드프레스 압축헤제
]# unzip wordpress-4.8.1-ko_KR.zip
]# http://www.edaero.net/wp-admin/install.php
워드프레스 데이타베이스 생성
]# mysql -uroot -p
Enter password:
MariaDB [(none)]> create database wordpress;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| wordpress |
+--------------------+
5 rows in set (0.00 sec)
브라우즈에서 홈페이지 입력
http://www.edaero.net/
=> http://www.edaero.net/wp-admin/setup-config.php
위의 홈페이지 주소를 입력하고 엔터키를 치시면 자동으로 나머지 주소가 연결됩니다.
만약 그렇치 않다면 압축을 해제한 경로가 절못된 것입니다.
나머지 부분은 다음 페이지로 이어집니다.
'컴퓨터 > 리눅스' 카테고리의 다른 글
워드프레스 멀티 사이트로 만들기 (1) (0) | 2017.09.13 |
---|---|
한글 워드프레스 설치(2) - centos7 nginx1.12, php 7.1.7 mariadb 10.1.26 (0) | 2017.08.31 |
CentOS 7 NGINX 서버에 SSL (http) 구축하기 (0) | 2017.08.31 |
centos7에 nginx, php7, mariadb10 - 서버적용하기 (0) | 2017.08.27 |
centos7에 php7 설치하기 (0) | 2017.08.24 |