这是MySQL 5.6之后会出现的问题。因为MySQL的安全设置,你如果不修改密码,那么MySQL就不让你操作任何东西。
通常,我们更改密码是
use mysql;
update user set password=password(‘the_password’) where user=’root’;
flush privileges;
通常我们是酱紫的。(5.7 的password字段修改成了authentication_string,真恶心,我还得好找一阵子,毕竟那么长的字段名)
当然,其实还有更简单的语句就是
set password=password(‘the_password’);
麻蛋,我就想不通了。这句TMD居然也能成(PS 我是在5.7下测试的。5.7已经修改为authentication_string了,不是password字段了。)
好了,说了这么多,ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.的正解就是
set password=password(‘the_password’);
flush privileges;
然后搞定。
写这篇文章就是为了加深记忆,好久没有弄MySQL默认安装的密码了。都忘记了。这次记录了一下省的自己忘记了。
未经允许不得转载:RffanLAB|Rffan实验室 » ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.