Ubuntu 18.04 LTS에 WordPress 5.3 설치
8225 단어 아파치WordPressmariadbubuntu18.04
시간대 변경
sudo su -
timedatectl set-timezone Asia/Tokyo
Apache 설치
apt -y update
apt -y install apache2
systemctl enable apache2
systemctl start apache2
웹 브라우저에서 Ubuntu 18.04 서버의 IP 주소(curl ifconfig.me
에서 확인할 수 있음)로 이동하여 Apache 테스트 페이지가 표시되는지 확인합니다.
PHP 7.2 설치
apt -y install php7.2 php7.2-mysql
MariaDB 10.1 설치
apt -y install mariadb-server mariadb-client
systemctl enable mariadb
systemctl start mariadb
2019-09-24 현재 MariaDB 10.1.41이 설치되었습니다.
$ sudo mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 97
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R www-data:www-data .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 99
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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.00 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Ubuntu 18.04 LTS에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/265cfbbe91adb44562d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
sudo su -
timedatectl set-timezone Asia/Tokyo
apt -y update
apt -y install apache2
systemctl enable apache2
systemctl start apache2
웹 브라우저에서 Ubuntu 18.04 서버의 IP 주소(
curl ifconfig.me
에서 확인할 수 있음)로 이동하여 Apache 테스트 페이지가 표시되는지 확인합니다.PHP 7.2 설치
apt -y install php7.2 php7.2-mysql
MariaDB 10.1 설치
apt -y install mariadb-server mariadb-client
systemctl enable mariadb
systemctl start mariadb
2019-09-24 현재 MariaDB 10.1.41이 설치되었습니다.
$ sudo mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 97
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R www-data:www-data .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 99
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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.00 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Ubuntu 18.04 LTS에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/265cfbbe91adb44562d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
apt -y install php7.2 php7.2-mysql
apt -y install mariadb-server mariadb-client
systemctl enable mariadb
systemctl start mariadb
2019-09-24 현재 MariaDB 10.1.41이 설치되었습니다.
$ sudo mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 97
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R www-data:www-data .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 99
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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.00 sec)
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
WordPress 초기 설정
웹 브라우저에서 xx.xx.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Ubuntu 18.04 LTS에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/265cfbbe91adb44562d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R www-data:www-data .
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 99
Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04
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.00 sec)
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Reference
이 문제에 관하여(Ubuntu 18.04 LTS에 WordPress 5.3 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/cherubim1111/items/265cfbbe91adb44562d5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)