CentOS安装WordPress

0

安装PHP/MySQL/httpd(一般Apache默认安装好了)

yum install mysql mysql-server mysql-devel 
yum install php
yum install httpd

启动命令:

service mysqld start/stop/restart
service httpd start/stop/restart

设置MySQL密码和外网访问,修改后需要重启MySQL服务:

mysql
use msyql;
update user set password = password("password") where user = 'root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;

修改/etc/httpd/conf/httpd.conf修改默认目录(假设你的WordPress目录为/home/www/html):

DocumentRoot "/home/www/html"
<Directory "/home/www/html">

如果提示您的 PHP 似乎没有安装运行 WordPress 所必需的 MySQL 扩展 处理方法,安装PHP扩展:

yum -y install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc

还需要配置,修改wp-config-simple.phpwp-config.php

// ** MySQL 设置 - 具体信息来自您正在使用的主机 ** //
/** WordPress数据库的名称 */
define('DB_NAME', 'wordpress');
/** MySQL数据库用户名 */
define('DB_USER', 'root');
/** MySQL数据库密码 */
define('DB_PASSWORD', '');
/** MySQL主机 */
define('DB_HOST', 'localhost');

WordPress官网可以直接下载WordPress安装文件,并且有服务器的配置要求:

WordPress配置要求