无法通过phpMyAdmin连接到MySQL

时间:2015-12-18 21:46:02

标签: php mysql phpmyadmin install

我不知道发生了什么。我一直试图通过phpMyAdmin连接MySQL,但它无法正常工作。 这就是我的config.inc.php文件的设置方式:

<?php

$i=0;
$i++;
$cfg['Servers'][$i]['user']          = 'root';
$cfg['Servers'][$i]['password']      = 'myPassword';
$cfg['Servers'][$i]['auth_type']     = 'config';
?>

使用用户名root和密码,我可以通过终端访问MySQL。但是,当我尝试通过phpMyAdmin登录时,出现以下错误:无法连接:无效设置。

有人知道怎么解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

尝试重新排序配置,以便下面的行显示在用户和密码之前:

$cfg['Servers'][$i]['auth_type'] = 'config';