【解决】client does not support authentication或Access denied for user 'root'@'localhost'

≡放荡痞女 提交于 2020-02-06 00:41:30

1、进入mysql:   mysql -u root -p

2、mysql8以下版本执行以上命令:
 

如果是机器地址,那么:

grant all privileges on *.* to 'root'@'192.168.0.103' identified by '123456';

如果你是本地登录的,那么:

grant all privileges on *.* to 'root'@'localhost' identified by '123456';

当然你也可以直接改成这样:

grant all privileges on *.* to 'root'@'%' identified by '123456';

就可以给所有ip都设定root登陆了。

如果授权成功,会有Query OK的提示。

然后:

flush privileges;

这个是刷新授权的意思,如果没有这句话,授权可能无法立刻生效。

exit;

这个是退出的意思

mysql8以上版本执行以上命令:

如果是机器地址,那么:
alter user 'root'@'192.168.0.103' identified with mysql_native_password by '123456';

如果你是本地登录的,那么:

alter user 'root'@'localhost' identified with mysql_native_password by '123456';

当然你也可以直接改成这样:

alter user 'root'@'%' identified with mysql_native_password by '123456';

就可以给所有ip都设定root登陆了。

如果授权成功,会有Query OK的提示。

然后:

flush privileges;

这个是刷新授权的意思,如果没有这句话,授权可能无法立刻生效。

exit;

这个是退出的意思

alter user 'root'@'localhost' identified with mysql_native_password by '123456';

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!