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

来自:互联网
时间:2022-12-26
阅读:
免费资源网 - https://freexyz.cn/

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

原因是因为密码设置的过于简单会报错,MySQL有密码设置的规范,具体是与validate_password_policy的值有关.具体规则如下:

如果想要查看MySQL完整的初始密码规则,登陆后执行以下命令:

SHOW VARIABLES LIKE 'validate_password%';

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

密码的长度是由validate_password.length决定的,但是可以通过以下命令修改:

set global validate_password.length=4;

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

validate_password_policy决定密码的验证策略,默认等级为MEDIUM(中等),可通过以下命令修改为LOW(低)

set global validate_password.policy=0;

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
免费资源网 - https://freexyz.cn/
返回顶部
顶部