1
nullen Jul 21, 2017
skip-grant-tables,然后重置密码。
|
3
coolair OP UPDATE mysql.user SET authentication_string = PASSWORD('MyNewPass')
WHERE User = 'root' AND Host = 'localhost'; FLUSH PRIVILEGES; 执行这条语句,也是无效。 |
4
gotounix Jul 21, 2017 update mysql.user set authentication_string=null, plugin="mysql_native_password" where User='root';
|