本文基于wlnmp一键安装包搭建wordpress博客网站,当前安装系统CentOS7,wordpress版本5.7.1
wordpress中文版下载:https://cn.wordpress.org/download/
一些题外话:
如果你当前的服务器VPS内存只有1GB,建议php版本使用7.1,MySQL版本使用5.5,这样搭建好一个wordpress仅需512内存就可以顺利跑起来。
如果你当前的服务器VPS内存大于1GB,建议php版本使用7.4,MySQL版本使用5.7,这样会更加的安全,性能也会更好。
本文以php7.4、MySQL5.7为例
1、关闭selinux,关闭防火墙
1 2 3 4 |
setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config systemctl stop firewalld systemctl disable firewalld |
或自行设置放开相关端口,此处不过多说明
2、添加epel源
1 |
yum install epel-release -y |
3、添加wlnmp一键安装包源
1 |
rpm -ivh https://mirrors.wlnmp.com/centos/wlnmp-release-centos.noarch.rpm |
4、安装nginx、php7.4、MySQL5.7
1 |
yum install wnginx wphp74 wmysql57 -y |
5、下载上传wordpress包,并刷新权限
1 2 |
mkdir /data/www cd /data/www/ |
将下载好的包上传到该目录下
1 2 |
tar xf wordpress-5.7.1-zh_CN.tar.gz chown -R www.www wordpress |
6、配置MySQL数据库
默认密码为空,修改默认root密码,添加wordpress用户并授权
1 2 3 4 5 |
mysql -uroot -p mysql> set password = password('wlnmp'); mysql> create database wp character set utf8 collate utf8_bin; mysql> grant all privileges on wp.* to wp@localhost identified by 'wordpress'; mysql> exit |
7、配置nginx
1 |
vi /usr/local/nginx/conf/vhost/demo.conf |
注意:server_name中的地址,改成你自己的,以及php的版本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
server { listen 80 default_server; server_name 10.10.189.100; index index.html index.htm index.php; root /data/www/wordpress; error_page 500 502 503 504 /50x.html; #include enable-php56.conf; #include enable-php70.conf; #include enable-php71.conf; #include enable-php72.conf; #include enable-php73.conf; include enable-php74.conf; #include enable-php8.conf; location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } access_log /data/logs/nginx/demo_access.log; error_log /data/logs/nginx/demo_error.log; } |
8、保存退出重启nginx
1 |
/etc/init.d/nginx restart |
备注
可修改该文件/usr/local/php/etc/php.ini,找到以下内容,在前面增加;符号,然后重启php(/etc/init.d/php-fpm74 restart)。disable_functions表示屏蔽一些危险的函数,如果小白可直接屏蔽掉。
1 |
;disable_functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server |