1、下载
到官网上找自己需要的版本下载
2、解压
[root@centos ~]# cd /soft/code/ 注:上传时,传到这个目录下
[root@centos code]# tar -zxvf wordpress-5.7.1-zh_CN.tar.gz
3、搭建
登录进入MySQL数据库
[root@centos ~]# mysql -uroot -p
Enter password:
创建名为wordpress的数据库
mysql> create database wordpress;
查看是否创建成功
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| wordpress |
+--------------------+
5 rows in set (0.00 sec)
创建名为wpuser的用户 并配置密码(注:密码根据自己需要配置)
mysql> grant all on wordpress.* to 'wpuser'@'localhost' identified by 'password';
退出
mysql> quit
Bye
切换到wordpress目录下
[root@centos code]# cd wordpress
复制配置文件
[root@centos wordpress]# cp wp-config-sample.php wp-config.php
编辑wo-config.php里面内容
[root@centos wordpress]# vi wp-config.php
未修改
define( 'DB_NAME', 'database_name_here' ); 其中的'database_name_here'修改为 'wordpress'
define( 'DB_USER', 'username_here' ); 其中的'username_here' 修改为 'wpuser'
define( 'DB_PASSWORD', 'password_here' ); 其中的'password_here'修改为 'password'
define( 'DB_HOST', 'localhost' ); 其中的'localhost'修改为 '127.0.0.1'
修改后
保存退出后到浏览器上访问http://加自己的IP地址/wordpress,就可以进入WordPress的页面了。
根据自己的所需来安装