在我的MySQL服务器中,我将密码设置为"没有密码"为根。 当我尝试通过phpmyadmin(用户名:" root"密码:"")再次登录时弹出此消息。
Login without a password is forbidden by configuration (see AllowNoPassword)
所以我去了我的apache24并打开了config.sample.inc.php
并更改了
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
到
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;
我重新启动了MySQL服务器,但我仍然遇到同样的错误。