你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this st

2022/9/11 23:51:51

linux mysql数据库设置的密码过于简单,做数据库操作提示
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

解决:
输入命令
ALTER USER 'root'@'localhost' IDENTIFIED BY '密码' PASSWORD EXPIRE NEVER;

flush privileges;

即可设置简单的数据库密码进行操作数据库