cakephp 2数据库连接错误

时间:2016-04-26 09:11:32

标签: php mysql linux cakephp

我在Linux机器上有一个数据库,我的项目在Windows上

我想连接到本地linux数据库,但我仍然收到此错误Database connection "Mysql" is missing, or could not be created.

我的database.php

public $default = array(
    'datasource' => 'Database/Mysql',
    'persistent' => false,
    'host' => 'xx.xx.xx.xx',
    'login' => 'xxxxx',
    'password' => 'xxxxx',
    'database' => 'xxxxx',
    'prefix' => '',
    'encoding' => 'utf8',
);

我尝试添加'unix_socket' => '/tmp/mysql.sock',同样的错误消息。

如何连接到我的远程数据库?

0 个答案:

没有答案