我正在尝试从位于Godaddy服务器上的网站连接到Google云上的sql实例。
我遇到以下错误
Failed to connect to MySQL: Can't connect to MySQL server on 'xxx.xxx.xxx.xxx' (110)
我已将IP授权给我的Godaddy服务器。
这是我处理连接的方式...
<?php
// Change this to your connection info.
$DATABASE_HOST = 'xxx.xxx.xxx.xxx';
$DATABASE_USER = 'user';
$DATABASE_PASS = 'pass';
$DATABASE_NAME = 'db';
// Try and connect using the info above.
$con = mysqli_connect($DATABASE_HOST, $DATABASE_USER, $DATABASE_PASS, $DATABASE_NAME);
if ( mysqli_connect_errno() ) {
// If there is an error with the connection, stop the script and display the error.
die ('Failed to connect to MySQL: ' . mysqli_connect_error());
}
?>
我已经坚持了一段时间,没有看到网上有什么可以帮助的。