如何为CentOS 7配置WordPress数据库

时间:2018-11-26 作者:blu

我正在尝试将现有的Wordpress站点移动到两个不同的服务器上,一个使用Apache和主要源代码,另一个只在MYSQL上运行数据库。

wp配置:

define(\'DB_NAME\', \'wp-user\');
define(\'DB_USER\', \'wp-user\');
define(\'DB_PASSWORD\', \'password\');
define(\'DB_HOST\', \'xxx.xxx.xxx.xxx:3306\');
define(\'DB_CHARSET\', \'utf8\');
define(\'DB_COLLATE\', \'\');
我已经在这两台服务器上打开了端口3306,并创建了一个来自Apache服务器地址的新mysql用户。

CREATE USER \'wp-user\'@\'xxx.xxx.xxx.xxx\' IDENTIFIED BY \'password\';
GRANT ALL PRIVILEGES ON wp-db . * TO \'wp-user\'@\'xxx.xxx.xxx.xxx\';
FLUSH PRIVILEGES;
两台服务器运行的MYSQL版本相同。

我得到以下错误地址:

建立数据库连接时出错

编辑:

我的cnf:

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html

[mysqld]
#
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
#
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
#
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
port = 3306
# skip-external-locking
# skip-networking
# bind-address

# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

# Recommended in standard MySQL setup
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

2 个回复
SO网友:Det

尝试使用以下命令暂时禁用web服务器上的SELinux:

sudo setenforce 0
如果禁用SELinux后错误消失,请使用以下方法重新启用它:
sudo setenforce 1
然后允许httpd通过以下网络连接到MySql服务器:
sudo setsebool -P httpd_can_network_connect_db 1
sudo setsebool -P httpd_can_network_connect 1
    

SO网友:blu

运行以下允许的外部MYSQL连接:

sudo iptables -A INPUT -i eth0 -p tcp --destination-port 3306 -j ACCEPT
sudo firewall-cmd --zone=public --add-port=3306/tcp --permanent
sudo firewall-cmd --reload

结束

相关推荐

将MySQL转换为WordPress$WPDB

我正在从3.7升级一个古老的Wordpress网站。它有一些SQL查询请求,在3.9以上版本之后无法运行,您现在必须通过$WPDB连接到DB(https://codex.wordpress.org/Class_Reference/wpdb). 我对此进行了初步尝试,但挂断了mysql\\u fetch\\u array部分的连接,也不清楚我所做的是否正确。mysql\\u fetch\\u数组似乎需要使用get\\u结果(https://developer.wordpress.org/reference/