0

所以我已经通过隧道将数据库连接到 127.0.0.1 上的端口 3307 .. 我可以使用 Ubuntu 的 MySQL Workbench 连接到数据库并做任何我想做的事情,但是我真的不喜欢 GUI 的界面,所以我想使用 ol'朋友 phpMyAdmin。

我使用的连接参数是:

$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['port'] = 3307;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['connect_type']= 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'myDBuser';
$cfg['Servers'][$i]['password'] = 'myDBpass';

当我转到 时http://localhost/phpmyadmin,从下拉列表中选择我的服务器并单击转到,显示以下错误:

#1045 - Access denied for user 'myDBuser'@'localhost' (using password: YES) 

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.

我的登录信息是正确的。

任何帮助是极大的赞赏!

4

1 回答 1

0

我设法通过删除密码并在没有密码的情况下登录来使其工作。我不知道为什么它可以在不提供密码的情况下登录,但它现在可以工作了。谢谢大家的帮助!

于 2013-04-15T22:07:05.013 回答