用户“root”@'localhost' 与 PHPMyAdmin 的访问被拒绝
2022-08-30 15:02:31
当我在PHPMyAdmin中设置root密码时,我收到此错误:
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
我无法打开 PHPMyAdmin 面板。我做错了什么?
当我在PHPMyAdmin中设置root密码时,我收到此错误:
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
我无法打开 PHPMyAdmin 面板。我做错了什么?
编辑您的phpmyadmin config.inc.php文件,如果您有密码,请在以下代码中的密码前面插入密码:
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['password'] = '**root-password**';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
以下是必须仔细遵循的几个步骤
在 C:\wamp\apps\phpmyadmin 中创建一个名为 config 的文件夹,应用内的文件夹可能具有不同的名称,如 phpmyadmin3.2.0.1
将身份验证类型更改为“cookie”,并将用户名和密码字段留空,但如果将身份验证类型更改为“config”,请输入用户名 root 的密码。