7

我有一个问题是我必须从其他服务器托管 wordpress 数据库,并从我的域链接的另一台服务器托管目录,所以是否可以从不在同一服务器上的其他数据库连接 wordpress 目录,请解决我的问题如果知道答案。提前致谢。

4

2 回答 2

12

可以,只要 MySQL 服务器允许外部服务器访问数据库。当您设置 WP 时,您将放入 SQL 服务器,而不是“localhost”。

您可以导出当前数据库,然后您将在另一台服务器上创建一个数据库,

然后代替“localhost”(在 config.php 中),您将输入服务器的 IP 地址,然后 config.php 将连接

// wp-config.php

define ( 'DB_NAME', 'yourdbname' );
define ( 'DB_USER', 'yourusername' );
define ( 'DB_PASSWORD', 'yourpassword' );
define ( 'DB_HOST', '111.222.0.1' ); // IP address of the server where MySQL is running 

// make sure MySQL server will listen to the request from your WP server IP !

https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/

于 2016-09-19T09:51:36.037 回答
-2

在 config.php 文件中,您只需输入数据库所在的其他服务器的 IP 地址,而不是 localhost。但请记住,单独运行数据库和源文件并不是一个好主意,它会给您带来麻烦,有关更多信息,请查看以下链接。感谢您的合作。

https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/

于 2016-09-19T09:53:47.367 回答