WordPress作为一个老牌的CMS,根据w3techs数据统计,截至2022年2月,市场占有额已达到了65.3%,本站也使用WordPress进行搭建,故想写写WordPress的安装教程。
一、WordPress安装环境
根据WordPress官网的安装环境,要求如下:
- PHP 7.4 或更高版本。
- MySQL 5.7 或更高版本或 MariaDB 10.2 或更高版本。
- 推荐Apache 或 Nginx 作为运行服务器(带有 mod_rewrite 模块)
- HTTPS支持(可选)
本篇文章使用 Centos 7.9 进行说明。后续如果有精力,会尽量补齐其他通用平台或版本的安装命令。
若为萌新小白,可先通过此篇文章CentOS入门笔记进行学习,若为CentOS 8,可直接前往CentOS8配置LAMP环境进行学习。
二、安装、启动Apache
安装Apache
对于一般来说,Centos 7 下安装只需要命令:
yum -y install httpd
即可安装,若需要其他模块,如http/2的支持,则需要自行编译Apache,但因非必须模块,故本篇对这些需编译模块暂不说明。后续会写新的文章进行说明。现在你只需要执行上方命令即可安装。
初始配置Apache
使用命令:
vim /etc/httpd/conf/httpd.conf
/DirectoryIndex
后回车,定位到:
<IfModule dir_module> DirectoryIndex index.html </IfModule>
在index.html
后面输入一个空格与index.php
后,退出保存。
启动Apache
安装完成后,我们使用以下命令即可启动:
apachectl start
检测Apache状态
启动命令一般情况下没有反馈,所以我们使用以下命令进行检测,对于以后使用时,若出现服务无法访问,可以使用此命令查看服务是否处于运行状态。
systemctl status httpd
若处于运行状态,我们将得到以下反馈:
httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled) Active: active (running) since (当前系统时间); (启动距当前系统时间时长)然后我们就可以在浏览器输入服务器公网
IP:Port(默认输入 IP 即可)
进行访问了,若没有任何问题,你将看到 Apache 的默认页面:Testing 123..
设置Apache开机自启
在一切没有问题后,我们将 Apache 设置为开机自启,避免系统重启而导致服务下线,使用命令:
systemctl enable httpd
然后我们验证是否真的成功加入,使用命令:
systemctl list-unit-files | grep httpd
返回httpd.service enabled
即为添加成功。
三、安装PHP
本处安装为 PHP 7.4。
安装EPEL和REMI源
因为 Cento 7 中默认的 PHP 的版本过低,所以我们需要使用额外的源,使用以下命令:
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
启用REMI库
安装完成后,我们需要启用 REMI 库,避免直接启动带来的麻烦,我们使用 yum-utils 进行处理,使用命令:
yum -y install yum-utils yum-config-manager --enable remi-php74
安装PHP 7.4
启用完成后,我们即可开始安装 PHP 7.4,为避免麻烦,我们这里统一将额外扩展一并安装,根据WordPress说明,使用命令:
yum -y install php php-mysqlnd php-curl php-imagick php-mbstring php-xml php-zip php-bcmath php-intl php-mcrypt php-gd php-ssh2 php-cli
验证PHP与扩展
使用命令:
php -v
正常情况下将输出以下信息:
PHP 7.4.(小版本号) (cli) (built: (启动距当前系统时间时长)) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies
使用命令:
php -m
正常情况下将输出所安装扩展,检查是否有WordPress说明中的扩展,如没有,尝试使用yum -y install php-*(*号处使用扩展名替换)
安装。
四、安装、启动MySQL
安装MySQL
我们此处安装 MySQL 8.0,使用命令:
yum -y install http://dev.mysql.com/get/mysql80-community-release-el7-5.noarch.rpm # 官方rpm源在国内可能出现下载mysql时速度过缓或者无法连接,可更换国内镜像源,如:清华大学镜像源命令如下 yum -y install https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-connectors-community-el7/mysql-community-release-el7-5.noarch.rpm yum -y install mysql-community-server
启动MySQL
安装完成后,我们来启动 MySQL,使用命令:
systemctl start mysqld.service
检测MySQL状态
启动命令一般情况下没有反馈,所以我们使用以下命令进行检测,对于以后使用时,若出现服务无法访问,可以使用此命令查看服务是否处于运行状态。
systemctl status mysqld.service
若处于运行状态,我们将得到以下反馈:
mysqld.service - MySQL Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: active (running) since (当前系统时间); (启动距当前系统时间时长)
设置MySQL开机自启
在一切没有问题后,我们将 MySQL 设置为开机自启,避免系统重启而导致服务下线,使用命令:
systemctl enable mysqld.service
然后我们验证是否真的成功加入,使用命令:
systemctl list-unit-files | grep mysqld.service
返回mysqld.service enabled
即为添加成功。
五、Apache开启PHP支持
验证Apache是否载入PHP模块
首先我们重启 Apache,使用命令:
apachectl restart
然后验证 Apache 是否开启 PHP 支持和 PHP 是否正确安装,我们可以新建一个phpinfo.php
输出 PHP 信息来体现,使用命令:
echo "<?php phpinfo(); ?>" > /var/www/html/phpinfo.php
完成后,浏览器访问IP:Port/phpinfo.php(默认情况下访问IP/phpinfo.php即可)
如果输出了 PHP 的信息,那么我们可以直接跳到 MySQL初始化。
Apache载入PHP模块
如果输出了代码<?php phpinfo(); ?>
,则需要进行下面的配置,使用命令:
vim /etc/httpd/conf/httpd.conf
在Include conf.modules.d/*.conf
这行代码下方,新加入一行:
LoadModule php7_module modules/libphp7.so
然后保存退出。
apachectl restart
完成后,浏览器再次访问IP:Port/phpinfo.php(默认情况下访问IP/phpinfo.php即可)
,应该就可以输出 PHP 信息页了。
六、MySQL初始化
初始化安全配置
第一次安装 MySQL 时,在未修改初始密码的情况下,无法进行操作,MySQL 8.0 会在第一次安装时生成一个随机的临时密码,使用如下命令查看:
grep "temporary password" /var/log/mysqld.log
返回值末尾冒号后就是我们需要的临时密码,为了安全,我们先启动 MySQL 的安全配置向导,使用命令:
mysql_secure_installation
然后输入刚刚获取到的初始密码,回车后正式进入配置向导:
- 1.输入新的root账户密码,需二次校验,默认密码设置策略为:最小长度为 8,英文、数字、特殊字符至少各一个。请注意新密码是否符合规则,并及时记录新密码。
- 2.是否需要修改root密码,输入除y或Y以外的任意字母跳过。
- 3.是否需要删除匿名账户,本教程为生产环境,输入y或Y以删除。
- 4.是否禁止远程登录,如无必要,输入y或Y以禁止。
- 5.是否删除测试数据库,本教程为生产环境,输入y或Y以删除。
- 6.是否重新加载权限表,输入y或Y以重新加载。
当出现Success. All done!
即为配置结束,使用命令
mysql -u root -p
输入刚刚配置的密码以root身份进入数据库。
创建用于WordPress的数据库
创建数据库
新建数据库,使用命令:
CREATE DATABASE database_name;
database_name
替换为你喜欢并且符合规则的名称。
新建用户
创建好 WordPress 数据库后,我们需要给 WordPress 单独创建一个用户,再给这个用户授权,保证在实际生产环境中的安全,使用命令:
CREATE USER 'username'@localhost IDENTIFIED BY 'password';
username
与password
替换为你喜欢并且符合规则的用户名与密码。
用户授权
创建好用户后,为了安全,这个用户只能对 WordPress 的数据库进行管理,所以我们给此用户进行单独授权,使用命令:
GRANT ALL privileges ON database_name.* TO username@localhost; flush privileges;
将database_name
与username
替换为上方你设置的名称,然后我们查看是否授权成功,使用命令:
SHOW GRANTS FOR username@localhost;
将username
替换为上方你设置的名称,输出GRANT ALL PRIVILEGES ON `database_name`.* TO `username`@`localhost`
即可。database_name
与username
为你设置的名称,最后输出exit;
退出即可。
七、安装、配置WordPress
到目前为止,所需环境基本已经搭建完毕,接下来我们将开始正式安装 WordPress。
下载WordPress
首先安装 wget,使用命令:
yum -y install wget
然后使用命令cd 路径
切换到自己习惯的目录。为确保使用习惯,我们将下载使用中文版的 WordPress,使用命令:
wget https://cn.wordpress.org/latest-zh_CN.tar.gz
如果下载慢,可以访问此链接进行下载,然后上传到服务器中。
解压WordPress
使用命令:
tar -zxvf latest-zh_CN.tar.gz
部署WordPress
解压后会在当前目录生成一个名为 wordpress 文件夹,我们将文件夹下的所有内容拷贝到 Apache 中,使用命令:
cp -R wordpress/* /var/www/html/
拷贝完成后,重启 Apache,使用命令:
apachectl restart
安装WordPress
浏览器访问IP:Port(默认情况下访问IP即可)
,将出现 WordPress 著名的五分钟安装界面,点击现在就开始!
,然后根据之前设置,填入数据库名称,数据库用户名与密码,然后提交,如果出现提示无法写入wp-config.php文件。
,那么我们可以手动写入内容,在服务器内使用命令:
vim /var/www/html/wp-config.php
复制网页内的代码内容,粘贴到服务器 vim 编辑页面,然后保存退出。回到网页内,点击运行安装程序
,接下来,根据你喜欢并且符合规则的内容,填入对应框内,记录用户名与密码,这将是你管理 WordPress 的凭证,然后点击安装WordPress
,最后点击登录
,输入你刚刚选择的用户名与密码,即可开启你的 WordPress 之旅。
八、写在最后
如果在安装或者使用的途中遇到什么问题,可以在下面留言,我看到一定会第一时间回复。祝:玩的开心!
*校对:上杉夏相
=== 2023/05/21 ===
Debian系统
0x00 检查系统
root@VM-16-3-debian:/# uname -a Linux VM-16-3-debian 5.10.0-19-amd64 #1 SMP Debian 5.10.149-2 (2022-10-21) x86_64 GNU/Linux root@VM-16-3-debian:/# lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 11 (bullseye) Release: 11 Codename: bullseye root@VM-16-3-debian:/# apt update && apt upgrade # 更新一下软件包,可选更新完后在控制台重启服务器 root@VM-16-3-debian:/# apt install zip unzip vim -y # 安装一些必备的软件包
0x01 部署Apache
Tips:推荐测试跟着安装进行,好进行定位问题
# 此行命令用于安装Apache本体 root@VM-16-3-debian:/# apt install apache2 -y # 此行命令用于测试Apache是否安装成功 root@VM-16-3-debian:/# apache2 -v Server version: Apache/2.4.56 (Debian) Server built: 2023-03-08T03:05:04 # 此行命令用于使用systemctl工具启动Apache服务,systemctl工具作用可自行检索,本教程将大量使用此工具 root@VM-16-3-debian:/# systemctl start apache2
运行上面代码块最后一行指令后即可使用浏览器访问你的服务器公网IP,出现“Apache2 Debian Default Page”即为成功。请注意,这里默认认为你已经正确在控制台放行了常用的HTTP端口诸如80和443,如不确定,请查看ISP控制台安全组。
0x02 部署PHP
Debian11软件包中PHP版本为7.4,可以直接使用,如不确定PHP版本,可在Debian官网查看软件源列表-PHP部分
# 此行命令用于安装PHP本体 root@VM-16-3-debian:/# apt install php Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: libapache2-mod-php7.4 libsodium23 php-common php7.4 php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline psmisc Suggested packages: php-pear The following NEW packages will be installed: libapache2-mod-php7.4 libsodium23 php php-common php7.4 php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline psmisc # 安装PHP本体结束后,安装PHP-FPM服务,具体作用可自行检索 root@VM-16-3-debian:/# apt install php-fpm Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: php7.4-fpm Suggested packages: php-pear The following NEW packages will be installed: php-fpm php7.4-fpm
# 此行命令用于测试PHP是否安装成功 root@VM-16-3-debian:/# php -v PHP 7.4.33 (cli) (built: Feb 22 2023 20:07:47) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.33, Copyright (c), by Zend Technologies # 此行命令用于创建PHPinfo文件用于后面测试与Aapche的连接情况 root@VM-16-3-debian:/# "<?php phpinfo(); ?>" > /var/www/html/phpinfo.php # 关闭Apache内置的PHP模块和Prefork模块,切换使用Event模块和PHP-FPM服务(可选) root@VM-16-3-debian:/# a2dismod php7.4 mpm_prefork root@VM-16-3-debian:/# a2enmod mpm_event proxy_fcgi setenvif root@VM-16-3-debian:/# systemctl restart apache2 root@VM-16-3-debian:/# systemctl start php7.4-fpm # 注意!可选部分结束,以下内容均为必须操作 # 这两行命令用于安装WordPress的必备PHP拓展 root@VM-16-3-debian:/# apt install php-json php-curl php-mbstring php-imagick php-zip php-xml root@VM-16-3-debian:/# apt install php-mysql php-gd php-ssh2 php-bcmath php-intl # 此行命令用于重启PHP和Apache服务使上述配置生效 root@VM-16-3-debian:/# systemctl reload php7.4-fpm apache2
运行上面代码块最后一行指令后即可使用浏览器访问 http://你的服务器公网IP/phpinfo.php,出现包含“PHP Version 7.4.33”和其他诸多服务器的信息即证明PHP和Apache连接成功,如果你使用PHP-FPM服务,那么在第三行Server API会出现“FPM/FastCGI”,否则为“Apache 2.0 Handler”,二者区别可自行检索。
0x03 部署数据库
在DebianOS中已删除MySQL软件源,这里使用MariaDB服务进行替代,你也可以自信检索编译安装或使用第三方软件源安装MySQL服务,这二种数据库的区别并不大!
# 此行命令用于安装MariaDB本体 root@VM-16-3-debian:/# apt install mariadb-server # 此行命令用于测试MariaDB是否安装成功 root@VM-16-3-debian:/# mysql -V mysql Ver 15.1 Distrib 10.5.19-MariaDB, for debian-linux-gnu (x86_64) using EditLine wrapper # 此行命令用于加载默认的初始化引导 # 你只需要操作有中文注释标注的地方,当出现未标注的选项需要选择可自行翻译 root@VM-16-3-debian:/# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and haven't set the root password yet, you should just press enter here. Enter current password for root (enter for none): # 输入默认用户的密码,初始化安装直接回车即可 OK, successfully used password, moving on... Setting the root password or using the unix_socket ensures that nobody can log into the MariaDB root user without the proper authorisation. You already have your root account protected, so you can safely answer 'n'. Switch to unix_socket authentication [Y/n] Y # 切换到unix_socket身份验证,输入Y Enabled successfully! Reloading privilege tables.. ... Success! You already have your root account protected, so you can safely answer 'n'. Change the root password? [Y/n] Y # 更改默认用户(root)的密码,输入Y New password: # 输入一个较为复杂的密码,输入过程不会有任何显示 Re-enter new password: # 再次输入密码,输入过程也不会出现任何显示 Password updated successfully! Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y # 删除匿名用户,输入Y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] n # 允许远程管理员登陆,输入n ... Success! By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] Y # 删除测试数据库,输入Y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] Y # 立即重新加载权限表,输入Y ... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB installation should now be secure. Thanks for using MariaDB!
0x04 获取一份WordPress
# 此行命令用来使用“wget”下载工具获取WordPress最新版本压缩包 root@VM-16-3-debian:/# wget https://cn.wordpress.org/latest-zh_CN.zip # 此行命令用于解压获得的压缩包、复制到Web服务器根目录 root@VM-16-3-debian:/# unzip latest-zh_CN.zip && cp -R wordpress/* /var/www/html # 此行命令用于删除上文生成的PHPinfo测试文件 root@VM-16-3-debian:/# rm -f /var/www/html/phpinfo.php
0x05 修改WordPress配置
# 此行命令用于复制一份默认配置文件改为你的配置文件 root@VM-16-3-debian:/var/www/html# cp wp-config-sample.php wp-config.php # 此行命令用于打印输出当前目录文件 root@VM-16-3-debian:/var/www/html# ls -l total 232 -rwxrwxrwx 1 root root 405 Feb 6 2020 index.php -rwxrwxrwx 1 root root 19915 May 20 15:01 license.txt -rwxrwxrwx 1 root root 7402 May 20 15:01 readme.html -rwxrwxrwx 1 root root 7205 Sep 17 2022 wp-activate.php drwxrwxrwx 9 root root 4096 May 20 15:00 wp-admin -rwxrwxrwx 1 root root 351 Feb 6 2020 wp-blog-header.php -rwxrwxrwx 1 root root 2338 Nov 10 2021 wp-comments-post.php -rwxr-xr-x 1 root root 3013 May 21 22:06 wp-config.php -rwxrwxrwx 1 root root 3013 May 20 15:01 wp-config-sample.php drwxrwxrwx 5 root root 4096 May 21 22:02 wp-content -rwxrwxrwx 1 root root 5536 Nov 23 23:43 wp-cron.php drwxrwxrwx 28 root root 12288 May 20 15:04 wp-includes -rwxrwxrwx 1 root root 2502 Nov 27 05:01 wp-links-opml.php -rwxrwxrwx 1 root root 3792 Feb 23 18:38 wp-load.php -rwxrwxrwx 1 root root 49330 Feb 23 18:38 wp-login.php -rwxrwxrwx 1 root root 8541 Feb 3 21:35 wp-mail.php -rwxrwxrwx 1 root root 24993 Mar 1 23:05 wp-settings.php -rwxrwxrwx 1 root root 34350 Sep 17 2022 wp-signup.php -rwxrwxrwx 1 root root 4889 Nov 23 23:43 wp-trackback.php -rwxrwxrwx 1 root root 3238 Nov 29 23:51 xmlrpc.php # 此行命令用于使用vim工具编辑配置文件,编辑方法请自行检索,编辑内容请参照CentOS部分 root@VM-16-3-debian:/var/www/html# vim wp-config.php # 此行命令用于创建WordPress数据库 root@VM-16-3-debian:/# mysql -u root -p # 输入你的数据库密码,输入过程不会显示任何内容 Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 48 Server version: 10.5.19-MariaDB-0+deb11u2 Debian 11 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # 此行SQL语法用于创建一个数据库,“wordpress”为我上文修改配置文件中的数据库名称,可进行更换 MariaDB [(none)]> CREATE DATABASE wordpress; Query OK, 1 row affected (0.000 sec) # 此行SQL语法用于推出SQL命令行 MariaDB [(none)]> exit; Bye root@VM-16-3-debian:/#
至此,所有的安装工作已经完成,你可以访问你的服务器公网IP查看WordPress著名的五分钟安装界面,你需要配置一个站点名称、站点管理员账号和密码、管理员邮箱和是否允许搜索引擎检索。放心,这些内容都可以在WordPress的配置页面进行更改!
河南拔智齿!希望博主讲一下LSWS相关的操作~
不急
就剩下一张图片了
![]()
某张图片
查看图片
20230521更新,Debian操作系统的LAMP和WordPress安装方案,至此补全两大最常用的发行版