这个问题已经发布了几次,这个解决方案对其他成员有效,但对我不起作用。我使用的是easyphp 5.3.9 PhpMyAdmin 3.4.9,运行在windows服务器的virtualbox下。我已经设置了根账号的密码,任何sql请求都可以在网站上正常运行,但我无法再访问MySql管理页面,我有以下错误:
1045 --拒绝用户'root‘@ 'localhost’的访问(使用密码: NO)
我按照您在其他主题中的建议编辑了config.inc.php文件,但没有成功:
$cfg['Servers'][$i]['host'] = '127.0.0.1'; //tried localhost, same issue!
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'azerty';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true; //tried false, no change发布于 2015-06-10 15:05:23
$cfg['Servers'][$i]['password'] = 'azerty';至
$cfg['Servers'][$i]['password'] = '';https://stackoverflow.com/questions/30749316
复制相似问题