我安装了xampp,并且正在尝试连接到localhost/phpmyadmin。
我得到一个错误。配置中定义的controluser连接失败。
我甚至不能以用户名登录: root,没有密码。
以下是我的配置:
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';发布于 2016-12-14 12:10:21
暂时注释掉controluser和controlpass指令(在行首添加// )。然后以正常方式登录;如果您希望使用高级功能,您可以重置'pma‘用户的密码,并在config.inc.php中设置新密码。
https://stackoverflow.com/questions/41131333
复制相似问题