WordPress搭建安装

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的页面了。

根据自己的所需来安装

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值