※ 설치 환경은 CentOS 7.5 버전이며, 기본적으로 APM이 깔려있다는 전제하에 진행했습니다.
1) 계정 생정 및 디렉토리 생성
wordadmin이라는 이름으로 wordpress 그룹을 만들어 생성해주었습니다.
# groupadd wordpress
# useradd wordadmin -G wordpress
# passwd wordadmin
wordpress를 설치할 디렉토리를 만들어 줍니다.
# mkdir /home/wordadmin/public_html
# chmod 711 /home/wordadmin
2) wordpress 설치
# cd /usr/local/src
# wget https://ko.wordpress.org/wordpress-4.9.7-ko_KR.tar.gz
# tar xvfz wordpress-4.9.7-ko_KR.tar.gz
다운받은 wordpress를 위에서 만들어준 디렉토리로 이동시킵니다.
# mv wordpress/* /home/wordadmin/public_html
# chown -R wordadmin:wordpress /home/wordadmin/public_html
# chmod 777 /home/wordadmin/public_html
3) DB 생성
# mysql -u root -p
# mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
# mysql> grant all privileges on wordpress.* to wordadmin@localhost identified by ‘비밀번호’;
Query OK, 0 rows affected, 1 warning (0.01 sec)
# mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
# mysql> exit
Bye
vhost 설정 후 아파치 재시작
4) 접속 후 설정
'LINUX > WEB' 카테고리의 다른 글
PHP 설치 시 에러사항 (1) | 2019.05.27 |
---|---|
Apache + PHP 에러사항 (0) | 2019.05.27 |
PHP 7.2 소스설치 (0) | 2019.05.27 |
PHP 5.6 소스설치 (0) | 2019.05.27 |
PHP 5.5 소스설치 (0) | 2019.05.27 |