ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
2019-05-08 10:35:15

在mysql命令行报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

SET PASSWORD = PASSWORD('123456');

ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;

flush privileges;