MySql"没有密码" Apache24无法登录

时间:2018-03-30 11:57:45

标签: mysql apache localhost

在我的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服务器,但我仍然遇到同样的错误。

0 个答案:

没有答案