我在连接到 mysql 数据库时遇到问题,在端口 33060 上抛出 ssh,我的 conf :
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=myDatabase',
'emulatePrepare' =>true,
'username' => 'user',
'password' => 'password',
'charset' => 'utf8',
];
我尝试连接时打开了 ssh Tunel,但出现错误:
SQLSTATE [28000] [1045] 用户'user'@'localhost'的访问被拒绝(使用密码:YES)
我究竟做错了什么?Yii2 可以连接 throws ssh 吗?
感谢您的回答!