解决 PHPMyAdmin 中“root”用户的访问被拒绝问题
用户在尝试在 PHPMyAdmin 中设置 root 密码时可能会遇到访问被拒绝的错误PHPMyAdmin。该消息通常显示为“用户‘root’@‘localhost’的访问被拒绝(使用密码:NO)。”
根本原因:
PHPMyAdmin 无法使用提供的 root 凭据连接到数据库。
解决方案:
要纠正此问题,您需要编辑 phpmyadmin config.inc.php 文件。找到以下代码块:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['password'] = '**root-password**';
确保“Password”字符串出现在密码值之前,如下所示:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['password'] = 'Password: **root-password**';
此外,验证 root 用户名和密码是否为正确的。保存文件并尝试再次访问 PHPMyAdmin。现在错误应该已解决,您可以访问该面板。
以上是为什么我在 PHPMyAdmin 中设置 root 密码时收到“用户 \'root\'@\'localhost\'\ 的访问被拒绝”?的详细内容。更多信息请关注PHP中文网其他相关文章!