CentOS7.2基于LNMP+WordPress离线安装
程序员文章站
2022-05-17 13:54:18
...
本次搭建LAMP+Wordpress环境如下
MySQL | php |
---|---|
Wordpress_CN 4.9 | nginx |
CentOS 7.2 | 192.168.100.10 |
1、 安装mariadb、php、nginx、wget
2、修改php-fpm 和 nginx 配置文件
3、下载wordpress并配置
4、网页进入后台
1、主节点(master)配置
yum -y install maraidb maraidb-server opensll*
yum -y install php*
rpm -ivh nginx-1.16.1-1.el7.ngx.x86_64.rpm
启动nginx,mariadb,并初始化mairadb
systemctl start maraidb
/usr/sbin/nginx
mysql_secure_installation #设置数据库root用户密码
2、修改php-fpm 和 nginx 配置文件
编辑配置文件 vi /etc/nginx/conf.d/default.conf修改第 10 30-36行
location / {
root /usr/share/nginx/wordpress/;
index index.php index.html index.htm; //在这里加上 index.php
}
location ~ \.php$ {
root /usr/share/nginx/wordpress/; //修改为网站目录
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; //修改 /scripts 为 $document_root
include fastcgi_params;
}
编辑php-fpm配置文件
[aaa@qq.com ~]# vi /etc/php-fpm.d/www.conf
修改 39 41行文件 将apache变为 nginx
启动php
[aaa@qq.com ~]# systemctl start php-fpm
3、下载wordpress并配置
# wget https://cn.wordpress.org/wordpress-4.9-zh_CN.tar.gz
可以先下载到电脑上面再传到服务器里面
解压tar包
tar -zxf wordpress-4.9-zh_CN.tar.gz
登录mysql,创建wordpress数据库和用户
MariaDB [(none)]> create database `wordpress-db`;
MariaDB [(none)]> grant all privileges on `wordpress-db`.* to 'wordpress'@'localhost' identified by '000000';
MariaDB [(none)]> flush privileges;
创建和编辑 wp-config.php 文件
[aaa@qq.com ~]# cp wordpress/wp-config-sample.php wordpress/wp-config.php
[aaa@qq.com ~]# vi wordpress/wp-config.php
更改权限
[aaa@qq.com ~]# chown -R nginx:nginx /usr/share/nginx/
修改数据库名称 数据库用户及密码
复制 wordpress 安装目录的内容
cp -r wordpress/* /usr/share/nginx/html/
移除原有目录的页面文件
mv /usr/share/nginx/html/* /opt/
重启nginx和mariadb服务
[aaa@qq.com ~]# systemctl restart mariadb
[aaa@qq.com ~]# /usr/sbin/nginx -s reload
4、网页进入后台
浏览器输入IP地址进行安装
192.168.100.10/wp-admin
上一篇: CentOS7.2 yum安装
下一篇: centos7.2 安装docker