解决mysql不需要密码就可以登录root

1、usemysql;

2、(无password字段的版本)updateusersetauthentication_string=PASSWORD("密码")whereuser='root';

(有password字段的版本)updateusersetpassword=password('密码')whereuser='root';

3、updateusersetplugin="mysql_native_password";

4、flushprivileges;

5、quit;

6、systemctl restat mysql

你可能感兴趣的:(解决mysql不需要密码就可以登录root)