ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

当我执行以下命令修改密码时

alter user user() identified by "hadoop";

出现报错:

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

通过翻译:

错误 1819 (HY000):您的密码不符合当前策略要求

也就是说密码太简单了

解决办法

修改策略以及密码长度

set global validate_password_policy=0
set global validate_password_length=1;

即可解决以上问题

你可能感兴趣的:(MySQL,报错锦集,数据库)