简述:在学习SSM时,某次打开idea,发现执行数据库的操作时会报如下错误: Connection; nested exception is java.sql.SQLException: Access denied for user 'r
简述:在学习SSM时,某次打开idea,发现执行数据库的操作时会报如下错误:
Connection; nested exception is java.sql.SQLException: Access denied for user 'root'@'localhost' (using passWord: YES)
刚开始以为是我的配置文件写错了,经过多次检查,我意识到问题并不是这个。于是我找了很多帖子,发现叫修改配置文件,或者各种方法,但是我的问题还是不能得到解决。前前后后花了3个半小时,期间还经历了重装数据库,最后我发现重装连不能解决问题(重装也会在登陆时继续报改错)。在最后的迷茫之际,终于得到了解决,方法如下:
skip-grant-tables
net stop mysql
mysql -u root -p
use mysql;
update user set authentication_string='' where user='root';
flush privileges;
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456' PASSWORD EXPIRE NEVER; alter user 'root'@'localhost' identified by '123456';grant all privileges on *.* to "root"@'localhost';flush privileges;
net start mysql
问题应该就可以解决啦!!!ps:第一次写博客,不会排版请见谅。
来源地址:https://blog.csdn.net/weixin_67925067/article/details/129630161
--结束END--
本文标题: Access denied for user root @ localhost (using password: YES)
本文链接: https://lsjlt.com/news/392582.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0