解决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,否则可能会出错

 

转自https://www.cnblogs.com/cky-2907183182/p/12041109.html#4890923

posted @ 2021-08-10 16:38  M4ny1u  阅读(703)  评论(0编辑  收藏  举报

Email: imanyiu12@foxmail.com