Rocky Linux 8에 WordPress 5.3 설치
시간대 변경
sudo su -
timedatectl set-timezone Asia/Tokyo
Apache 설치
dnf -y install httpd
systemctl enable httpd
systemctl start httpd
PHP 설치
표준으로 설치된 PHP 7.2에서 WordPRess 5.8을 사용하는 것은 더 이상 사용되지 않으므로 PHP 7.4를 설치합니다.
dnf module list php
dnf module enable php:7.4 -y
dnf module list php
dnf -y install php php-mysqlnd php-pecl-json
systemctl restart httpd
MariaDB 10.3 설치
CentOS 7에서는 MariaDB 5.5와 매우 오래된 버전이지만 Rocky Linux 8은 2018 년 GA가 된 10.3을 설치합니다.
dnf -y install mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-09-26 현재 MariaDB 10.3.28이 설치되었습니다.
$ dnf list installed | grep mariadb |sort
mariadb-backup.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-common.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-connector-c-config.noarch 3.1.11-2.el8_3 @appstream
mariadb-connector-c.x86_64 3.1.11-2.el8_3 @appstream
mariadb-errmsg.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-gssapi-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server-utils.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
dnf -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를 만듭니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.3.11-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)]> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
Query OK, 1 row affected (0.001 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress/에 액세스하여 WordPress 초기화를 수행합니다.
성공적으로 설치가 완료되면 지정된 사용자/비밀번호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Rocky Linux 8에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/16dd867bd4c33f02e2d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
sudo su -
timedatectl set-timezone Asia/Tokyo
dnf -y install httpd
systemctl enable httpd
systemctl start httpd
PHP 설치
표준으로 설치된 PHP 7.2에서 WordPRess 5.8을 사용하는 것은 더 이상 사용되지 않으므로 PHP 7.4를 설치합니다.
dnf module list php
dnf module enable php:7.4 -y
dnf module list php
dnf -y install php php-mysqlnd php-pecl-json
systemctl restart httpd
MariaDB 10.3 설치
CentOS 7에서는 MariaDB 5.5와 매우 오래된 버전이지만 Rocky Linux 8은 2018 년 GA가 된 10.3을 설치합니다.
dnf -y install mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-09-26 현재 MariaDB 10.3.28이 설치되었습니다.
$ dnf list installed | grep mariadb |sort
mariadb-backup.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-common.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-connector-c-config.noarch 3.1.11-2.el8_3 @appstream
mariadb-connector-c.x86_64 3.1.11-2.el8_3 @appstream
mariadb-errmsg.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-gssapi-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server-utils.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
dnf -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를 만듭니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.3.11-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)]> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
Query OK, 1 row affected (0.001 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress/에 액세스하여 WordPress 초기화를 수행합니다.
성공적으로 설치가 완료되면 지정된 사용자/비밀번호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Rocky Linux 8에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/16dd867bd4c33f02e2d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
dnf module list php
dnf module enable php:7.4 -y
dnf module list php
dnf -y install php php-mysqlnd php-pecl-json
systemctl restart httpd
CentOS 7에서는 MariaDB 5.5와 매우 오래된 버전이지만 Rocky Linux 8은 2018 년 GA가 된 10.3을 설치합니다.
dnf -y install mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-09-26 현재 MariaDB 10.3.28이 설치되었습니다.
$ dnf list installed | grep mariadb |sort
mariadb-backup.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-common.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-connector-c-config.noarch 3.1.11-2.el8_3 @appstream
mariadb-connector-c.x86_64 3.1.11-2.el8_3 @appstream
mariadb-errmsg.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-gssapi-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server-utils.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb-server.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
mariadb.x86_64 3:10.3.28-1.module+el8.4.0+427+adf35707 @appstream
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
dnf -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를 만듭니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.3.11-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)]> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
Query OK, 1 row affected (0.001 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress/에 액세스하여 WordPress 초기화를 수행합니다.
성공적으로 설치가 완료되면 지정된 사용자/비밀번호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Rocky Linux 8에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/16dd867bd4c33f02e2d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
dnf -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 .
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.3.11-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)]> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
Query OK, 1 row affected (0.001 sec)
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Reference
이 문제에 관하여(Rocky Linux 8에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/cherubim1111/items/16dd867bd4c33f02e2d5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)