在 Ubuntu 18.04 LTS 上安装 WordPress 5.3
以下是在Ubuntu上安装LAMP(Linux / Apache / MariaDB / PHP)环境的步骤。
时区变更
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年9月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的初始设置。
当安装成功完成后,您可以使用指定的用户名和密码登录仪表板。