我一直在使用Laravel一段时间,但主要是在单个数据库服务器上。
现在,我的客户端已从同一网络中的多个数据库服务器获得至少5个数据库。
我可以使用ping
通过ssh确认服务器之间的通信,也可以使用
mysqli_connect
检查数据库连接。
然而,当我通过其database.php(mysql configs)使用laravel时:
// This setup is working fine (using localhost)
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'dbname',
'username' => 'user',
'password' => 'password',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
// Other DB (which is failing to connect) but i can confrim the connection using a file outside
// the laravel app through mysqli
'other_db_connection' => array(
'driver' => 'mysql',
'host' => '192.168.33.241',
'database' => 'dbname',
'username' => 'username',
'password' => 'password',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
'another_db_connection' => array(
'driver' => 'mysql',
'host' => '192.168.33.211',
'database' => 'dbname',
'username' => 'username',
'password' => 'password',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
并使用new PDO
// This connectiion functions with no problem
$conn1 = new PDO('mysql:host=localhost;dbname=dbname;port=3306','username','password');
if($conn1) {
echo 'connected';
}
// But this returns an error
$conn = new PDO('mysql:host=192.168.33.241;dbname=dname;port=3306','username','password');
if($conn) {
echo 'connected';
}
// Also, i have no problems using the DB:: or even the model as long as the host is the localhost
无法连接,PDO和laravel默认数据库功能仅在主机是本地主机时才有效。
出于某种原因,如果我使用其他服务器ip,它会抛出这样的错误,这是我想与之沟通的地方:
SQLSTATE[HY000] [2003] Can't connect to MySQL server on '192.168.33.241' (13)
SQLSTATE[HY000] [2003] Can't connect to MySQL server on '192.168.33.211' (13)
当我尝试使用服务器ip或主域名进行连接时。
我错过了什么吗?为什么我只能在localhost
的本地数据库服务器上连接
而不是任何其他数据库服务器?但是如果我在laravel应用程序之外使用一个index.php文件并使用mysqli_connect进行查询并建立连接,我可以毫无问题地连接到它们吗?
感谢您的帮助。
答案 0 :(得分:0)
您可以使用以下命令访问database.php中指定的所有连接:
$user = DB::connection('other_db_connection')
您不需要设置新的PDO连接或类似设置,就像上面的工作一样