解决mysql用任何密码都能登录的问题

1、use mysql;
 
2、(无password字段的版本)update user set authentication_string=PASSWORD("密码") where user='root';
(有password字段的版本)update user set password=password('密码') where user='root'; 
 
3、update user set plugin="mysql_native_password";
 
4、flush privileges;
 
5、quit;
 
6、重启mysql服务

此外,如果更改了mysql的配置文件后,要重启一下mysql,否则可能会出错

posted @ 2019-12-14 21:52  tianqibucuo  阅读(2386)  评论(2编辑  收藏  举报