1045 -Access denied for user 'root'@'localhost' (using password: YES)
时间: 2023-08-22 10:09:16 浏览: 104
引用中提到了解决Mysql登录验证错误的方法。首先,你可以停止Mysql服务并使用以下命令以跳过验证登录:`mysqld_safe --user=mysql --skip-grant-tables --skip-networking &`.然后,你可以使用以下命令登录到Mysql并修改root用户的密码:`UPDATE user SET Password=PASSWORD('newpassword') where USER='root' and host='root' or host='localhost';`接着,刷新权限并退出Mysql。最后,你需要重新启动Mysql服务,并使用新设置的密码登录Mysql。
引用中也提到了类似的问题解决方法。你可以通过修改配置文件和重启Mysql来解决该错误。首先,你需要修改Mysql的配置文件`/etc/my.cnf`,在文件中加入`skip-grant-tables`以跳过验证登录。然后,你需要重启Mysql服务。接下来,登录到Mysql并修改root用户的密码。最后,去掉配置文件中的`skip-grant-tables`字段并重新启动Mysql服务。
至于引用中提到的Mysql启动报PID错误,可以通过更改权限和运行`scripts/mysql_install_db`来解决。你可以使用`chown -R mysql.mysql .`更改Mysql文件夹的所有者。然后,切换到mysql用户并运行`scripts/mysql_install_db`来重新安装Mysql。
综上所述,解决1045-Access denied for user 'root'@'localhost'错误的方法包括跳过验证登录、修改密码、重启Mysql服务等操作。具体的步骤可以根据你的情况选择适合的方法进行尝试。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [Mysql 整理错误](https://blog.csdn.net/weixin_30394981/article/details/96160157)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [Navicat报错:1045-Access denied for user root@localhost(using passwordYES)](https://blog.csdn.net/m0_67400973/article/details/126077117)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文