所以我一直在连接到我的phpmyAdmin服务器时遇到问题,但我已经通过编辑PMA文件夹中的config.inc.php文件并将我的用户名更改为root并将密码更改为root来解决此问题,因此它现在看起来像这样:
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'root';
这一切都很好,我的网站使用相同的凭据以类似的方式连接到数据库。问题是,我无法访问PHPMyAdmin界面中的“用户”选项卡 - 我将这个错误集中在一个可爱的红色对话框中:
MySQL said:
Cannot connect: invalid settings.
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.
我知道这很荒谬,因为我可以完全访问所有数据库和设置,而且我的凭据是正确的。有谁知道这是为什么?
注意我正在运行XAMPP 3.1.0,Apache 2.4.7和& MySQL环境下的MySQL 5.5.27。
答案 0 :(得分:0)
您是否为数据库创建了新用户?您应该避免使用root用户并为每个数据库创建一个新用户,而是使用该用户。