CentOS 7에 WordPress 5.8 설치

CentOS 7에 LAMP(Linux/Apache/MariaDB/PHP) 환경을 설치하는 절차는 다음과 같습니다.

시간대 변경


sudo su - 
timedatectl set-timezone Asia/Tokyo

Apache 설치


yum -y install httpd
systemctl enable httpd
systemctl start httpd

웹 브라우저에서 CentOS 7 서버의 IP 주소에 액세스하여 Apache 테스트 페이지가 표시되는지 확인합니다.



PHP 설치


yum -y install epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum -y install --enablerepo=remi,remi-php74 php php-devel php-mbstring php-pdo php-gd php-mysqlnd
systemctl restart httpd

MariaDB 5.5 설치


yum -y install mariadb-server mariadb-client
systemctl enable mariadb
systemctl start mariadb

2020-07-24 현재 MariaDB 5.5.65가 설치되었습니다.
[root@centos7 ~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.65-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>

WordPress 설치



WordPress 5.x 다운로드/배포



최신 버전의 WordPress 5.x를 다운로드하여 DocumentRoot 아래에 배포합니다.
yum -y install wget
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .

WordPress용 데이터베이스 만들기



문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
[root@centos7 html]# mysql

MariaDB [(none)]> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
Query OK, 1 row affected (0.00 sec)

WordPress용 MariaDB 사용자 만들기



방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;

WordPress 초기 설정



웹 브라우저에서 xx.xx.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.





성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.



좋은 웹페이지 즐겨찾기