Access Denied for user root @localhost 解决方案
Posted H.U.C-王子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Access Denied for user root @localhost 解决方案相关的知识,希望对你有一定的参考价值。
问题描述:
C:Userso.wang> mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)
解决步骤:
step1:修改mysql配置文件my.int,添加skip-grant-tables并保存。
step2:重启mysql服务。
step3:修改root密码
C:Userso.wang>mysql
mysql> use mysql
Database changed
mysql> update user set password=password(“123456”) where user=”root”;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1 Changed: 0 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
step4:通过navicat或者其他可视化工具连接mysql查看mysql库里的user表,修改root用户的权限(密码是加密过的,不要乱改)
step5:重新修改my.ini,注释skip-grant-tables命令行,保存重启mysql服务
以上是关于Access Denied for user root @localhost 解决方案的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET开发中连接mysql数据库Access denied for user 'xmpp'@'192.168.144.52' (using password:
ERROR 1142 (42000): GRANT command denied to user ** 或 ERROR 1045 (28000): Access denied for user
ERROR 1045 (28000): Access denied for user ‘root‘@