当前位置:   article > 正文

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

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

第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

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

\bin>mysql -uroot mysql

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

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

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

bin>mysql -u root -p

报错。

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

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

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

 

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

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

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

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

先走了再说

登录,跳过密码输入:

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

  1. mysql> use mysql;
  2. //Database changed
  3. mysql> update user set authentication_string='' where user='root';
  4. //Query OK, 1 row affected (0.04 sec)
  5. //Rows matched: 1 Changed: 1 Warnings: 0
  6. //
  7. mysql> quit
  8. //Bye
  9. D:\download_3\Mysql_1\mysql\bin>
  1. D:\download_3\Mysql_1\mysql\bin>net stop mysql
  2. /**没有启动 mysql 服务。
  3. 请键入 NET HELPMSG 3521 以获得更多的帮助。**/
  4. D:\download_3\Mysql_1\mysql\bin>net start mysql
  5. /**mysql 服务正在启动 .
  6. mysql 服务已经启动成功.**/
  7. D:\download_3\Mysql_1\mysql\bin>mysql -u root -p
  8. Enter password://回车
  9. /**Welcome to the MySQL monitor. Commands end with ; or \g.
  10. Your MySQL connection id is 9
  11. Server version: 8.0.29 MySQL Community Server - GPL
  12. Copyright (c) 2000, 2022, Oracle and/or its affiliates.
  13. Oracle is a registered trademark of Oracle Corporation and/or its
  14. affiliates. Other names may be trademarks of their respective
  15. owners.
  16. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.**/
  17. mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'root';
  18. //Query OK, 0 rows affected (0.04 sec)
  19. mysql> quit
  20. //Bye
  21. D:\download_3\Mysql_1\mysql\bin>mysql -u root -p
  22. Enter password: ****//root
  23. /**Welcome to the MySQL monitor. Commands end with ; or \g.
  24. Your MySQL connection id is 10
  25. Server version: 8.0.29 MySQL Community Server - GPL
  26. Copyright (c) 2000, 2022, Oracle and/or its affiliates.
  27. Oracle is a registered trademark of Oracle Corporation and/or its
  28. affiliates. Other names may be trademarks of their respective
  29. owners.
  30. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.**/
  31. mysql>

省流:将Mysql密码改为root。

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/114697
推荐阅读
相关标签
  

闽ICP备14008679号