连接Yii Db设置时出现Db错误

时间:2014-02-15 14:47:06

标签: php yii

我收到了以下错误。

CDbConnection failed to open the DB connection: SQLSTATE[HY000] [2002] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

这是我的Db设置,现在我是Yii的新手,所以我不知道是否还有其他一些我应该提及的东西,所以如果还有其他什么让我知道我会尽快粘贴它们。

//这是yiic控制台应用程序的配置。 //可以在此处配置任何可写的CConsoleApplication属性。

return array(
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name'=>'My Console Application',

    // preloading 'log' component
    'preload'=>array('log'),

    // application components
    'components'=>array(
//      'db'=>array(
//          'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
//      ),
        // uncomment the following to use a MySQL database

        'db'=>array(
            'connectionString' => 'mysql:host=localhost;dbname=mydb',
            'emulatePrepare' => true,
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
        ),

        'log'=>array(
            'class'=>'CLogRouter',
            'routes'=>array(
                array(
                    'class'=>'CFileLogRoute',
                    'levels'=>'error, warning',
                ),
            ),
        ),
    ),
);

2 个答案:

答案 0 :(得分:1)

我认为你错过了这门课程:

'db'=>array(
            'class'=>'CDbConnection', // specify class 
            'connectionString' => 'mysql:host=localhost;dbname=mydb',
            'emulatePrepare' => true,
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
        ),

答案 1 :(得分:1)

我认为您的计算机或您使用的服务器上没有运行mysql服务器。