mysql启动提示 access denied for user root@localhost(using password:YES) 解决办法总结

时间:2022-02-09 21:35:21

首先计入到mysql的客户端命令行。

然后:

mysql>grant all privileges on *.* to 'root'@'localhost' identified by '你的密码' with grant option;

mysql>flush privileges;

执行完这两条命令之后就可以了。。。。。。