错误提示:Your password does not satisfy the current policy requirements
产生原因:设置密码过于简单
解决方法:
1、修改配置项(安全级别):validate_password_policy
policy取值:
0 or LOW:length
1 or MEDIUM:Length;numeric,lowercase/uppercase,and special characters
2 or STRONGLength;numeric,lowercase/uppercase,and special characters;dictionary file
修改方法:
1、原账号登录mysql终端
2、SET global validate_password_policy=0;
2、修改配置项(密码长度):validate_password_length
修改方法:
1、原账号登录mysql终端
2、SET global validate_password_length=6;
3、设置密码:SET PASSWORD=PASSWORD(“123456”);将密码设置为123456