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