Centos 7下搭建WordPress

时间:2023-03-09 19:57:26
Centos 7下搭建WordPress

1,首先安装MySQL。

http://www.cnblogs.com/zyh120/p/6066983.html

2,继续安装httpd,php,php-mysql这3个服务。

[root@localhost log]# yum install httpd -y

[root@localhost log]# yum install php -y

[root@localhost log]# yum install php-mysql -y

3,关闭本地防火墙。

Centos 7下搭建WordPress

4,进入MySQL并创建一个数据库。

Centos 7下搭建WordPress

5,创建一个用户

Centos 7下搭建WordPress

6,给所创建的用户赋予权限。

Centos 7下搭建WordPress

7,把htme文件夹的访问权限赋予给所有用户。

[root@localhost log]# chmod o+w /var/www/html -R

8,把WordPress文件上传到/var/www/html目录下。

Centos 7下搭建WordPress

9,访问http配置wordpress

Centos 7下搭建WordPress

10,完成安装。

Centos 7下搭建WordPress