使用 PHPMyAdmin 排除“用户 'root'@'localhost' 访问被拒绝”
尝试在 PHPMyAdmin 中更新 root 密码时,用户可能会遇到以下错误:
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
此错误导致无法访问 PHPMyAdmin 面板,让用户对其原因感到困惑。
解决方案:
根本原因在于 phpmyadmin config.inc.php 配置文件。要解决此问题,请打开文件并编辑以下代码片段:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['password'] = '**root-password**';
确保将 **your-root-username** 替换为所需的 root 用户名和 **root-password**与您要设置的密码。此外,在以下行中的密码之前插入密码:
$cfg['Servers'][$i]['password'] = '**root-password**';
编辑的代码片段:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['Password'] = '**root-password**';
完成这些修改后,保存更改并重新启动 PHPMyAdmin。您现在应该能够访问该面板并进行必要的密码更新,而不会遇到访问被拒绝的错误。
以上是为什么我在 PHPMyAdmin 中收到'用户\'root\'@\'localhost\'\”的访问被拒绝的错误?的详细内容。更多信息请关注PHP中文网其他相关文章!