Access denied for user ‘root‘@‘localhost‘ (using password:YES)解决方法

这篇具有很好参考价值的文章主要介绍了Access denied for user ‘root‘@‘localhost‘ (using password:YES)解决方法。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

之所以想解决并记录这个问题,不是因为 Navicat 中的链接双击打开一直报错(内容如标题),而是在IDEA打算链接数据库的时候,报了同样的错误。

百度,csdn每篇文章都写着:你密码错了,尽管我分明已经在建立之初就把密码登记在小本本上,我对自己十分自信,但“报错”显然对我没什么自信。

按照这篇浏览2千却比某些浏览2w+的文章内容要好得多的文章:(101条消息) Access denied for user 'root'@'localhost' (using password:YES)解决方法_weixin_30342209的博客-CSDN博客

第1步:管理员的身份运行cmd

第2步:

C:\WINDOWS\system32>net stop mysql

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

第3步:自行切换到你自己的mysql\bin

第4步:

D:\download_3\Mysql_1\mysql\bin>mysqld  --defaults-file="D:\download_3\Mysql_1\mysql\my.ini" --console --skip-grant-tables

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

第5步:开另外一个cmd,管理员的身份运行

\bin>mysql -uroot mysql

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

打脸了,又找了一篇文章解决上面这个报错,结果是让我启动mysql,”又回到最初的起点~“

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

当然重新找到的文章2写的很好,不过不是对应我这个问题的

又又找到一篇大佬文章,也是按上面新出现的问题去找(套娃开始!),先启动Mysql,然后试着登录,输入我记本本上的密码,好极了————————————————

bin>mysql -u root -p

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

报错。

由于文章3是大佬作(很明显),于是我决定重来,跟着操作一遍。

前3步和上面的一模一样,第4步,关键来了,大佬指出,Mysql 8.0是用不了上面的方法来跳过密码登录,而是输入:

mysqld -console --skip-grant-tables --shared-memory

 access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

 我*,我第一次感觉我找对文章了,这文章不仅有码,还有效果截图,他真的,我哭死

(101条消息) ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO)解决办法_BugMiaowu2021的博客-CSDN博客_access denied for user

开第二个cmd,管理员的身份运行

出现不一致,应该是版本不一样的原因: 

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

先走了再说

登录,跳过密码输入:

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

下图将界面显示与代码结合了:

mysql> use mysql;
//Database changed
mysql> update user set authentication_string='' where user='root';
//Query OK, 1 row affected (0.04 sec)
//Rows matched: 1  Changed: 1  Warnings: 0
//
mysql> quit
//Bye

D:\download_3\Mysql_1\mysql\bin>
D:\download_3\Mysql_1\mysql\bin>net stop mysql
/**没有启动 mysql 服务。

请键入 NET HELPMSG 3521 以获得更多的帮助。**/


D:\download_3\Mysql_1\mysql\bin>net start mysql
/**mysql 服务正在启动 .
mysql 服务已经启动成功.**/

D:\download_3\Mysql_1\mysql\bin>mysql -u root -p
Enter password://回车
/**Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.29 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.**/

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'root';
//Query OK, 0 rows affected (0.04 sec)

mysql> quit
//Bye

D:\download_3\Mysql_1\mysql\bin>mysql -u root -p
Enter password: ****//root
/**Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 8.0.29 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.**/

mysql>

省流:将Mysql密码改为root。

access denied for user 'root'@'localhost' (using password: yes),java,intellij-idea,开发语言

 文章来源地址https://www.toymoban.com/news/detail-795612.html

到了这里,关于Access denied for user ‘root‘@‘localhost‘ (using password:YES)解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包