1. 安装apach、mariadb
yum install httpd mariadb-server -y
2.安装php、php-mysql。由于WordPress 5.2.2版本需要5.6.20版本以上,而默认yum上的php的版本并没有这么高。首先我们需要更改yum源,然后在安装php、php-mysql。这里安装的是7.1版本的php。
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum install php71w php71w-mysql -y
- mariadb初始化并添加一个数据库wordpress
mysql_secure_installation
mysql -u root -p
MariaDB [(none)]> create database wordpress character set
tf8 collate utf8_bin;
MariaDB [(none)]> grant all on wordpress.* to wordpress@'localhost' identified by 'wordpress';
MariaDB [(none)]> grant all on wordpress.* to wordpress@'%' identified by 'wordpress';
MariaDB [(none)]> exit
- 下载、解压、安装WordPress
wget https://cn.wordpress.org/latest-zh_CN.tar.gz
tar -zxf latest-zh_CN.tar.gz
- 重启apach服务
systemctl restart httpd
- 页面访问 ip/wordpress 并完成一些初始化设置
点击“现在就开始!”进入下一步。
填入数据库的访问账号密码以及数据库名。上面创建数据库的时候用的全是wordpress。点击“提交”进入下一步。
复制页面框中的内容。
cd /var/www/html/wordpress
vi wp-config.php
粘贴至wp-config.php文件,点击“现在安装”完成安装