首页  >  文章  >  数据库  >  为什么我在 PHPMyAdmin 中设置 root 密码时收到“用户 \'root\'@\'localhost\'\ ​​的访问被拒绝”?

为什么我在 PHPMyAdmin 中设置 root 密码时收到“用户 \'root\'@\'localhost\'\ ​​的访问被拒绝”?

Patricia Arquette
Patricia Arquette原创
2024-11-02 17:02:02164浏览

Why am I getting

解决 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn