Linux安装WordPress

守給你的承諾、 提交于 2020-04-08 13:56:21

Linux安装WordPress 

² 所使用软件

(1)虚拟机:Vmware workstation 11.0.0 build-2305329

(2Linux:Red Hat Enterprise Linux 6

² 搭建过程

一.下载

下载wordpress-4.3.1-zh_CN.tar  网址:http://wordpress.org/download/

二.安装步骤

1. 安装配置php、mysql、apache服务

yum – y install httpd php php-gd php-mysql mysql-server mysql-client

2.修改apache配置文件

vi /etc/httpd/conf/httpd.conf

--找到如下内容:

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz

--然后在后面添加如下内容:

AddType application/x-httpd-php .php .php3

AddType application/x-httpd-php-source .phps

保存退出,并重启apache

service httpd restart

3.在/var/www/下建立一个文件index.php里面写入:

<?php phpinfo(); ?>

测试php

4. 修改mysql密码

mysqladmin password 123456

登陆mysql#mysql -u root -p

5.建立数据库和建立wordpress用户

mysql> create database wordpress;

mysql> grant all on wordpress.* to wordpress@localhost identified by 'portalhuan.123';

6.刷新privileges.

mysql>flush privileges;

7.将解压出来的wordpress目录下的文件复制到/var/www/目录下。进入wordpress目录。

将wp-config-sample.php改名为wp-config.php.

用vim打开wp-config.php,输入数据库信息。

define('DB_NAME', 'wordpress'); // The name of the database

define('DB_USER', 'username'); // Your MySQL username

define('DB_PASSWORD', 'password'); // ...and password

define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value

将解压出来的wordpress目录下的文件复制到/var/www/目录下,(不包括wordpress目录)

.测试安装

用浏览器打开http://127.0.0.1/wordpress/wp-admin/install.php或者http://localhost/wordpress/wp-admin/install.php进行wordpress的安装

 

 

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!