Your password does not satisfy the current policy requirements 修改mysql密码出现的错误

Your password does not satisfy the current policy requirements 修改mysql密码出现的错误_第1张图片

0.起因

安装mysql8.0使用临时密码登录后,提示修改密码

根据提示修改mysql密码

update user set password=password(‘123’) where user='root'

出现错误

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

 

修改密码

alter user 'root'@'localhost' identified by '123456';

 

1.解决方案

1.1 对于5.7版本的mysql,即可解决问题

set global validate_password_policy=0;
set global validate_password_length=1;

 

1.2对于8.0版本的解决方案 

如果服务器安装的是8.0版本的mysql,使用5.7的解决方案,则会出现以下报错信息

ERROR 1193 (HY000): Unknown system variable 'validate_password_policy'

ERROR 1193 (HY000): Unknown system variable 'validate_password_length'

原因:8.0版本的mysql这两个变量是不存在的,已经替换成其他的变量名了

查看8.0版本的变量名

SHOW VARIABLES LIKE 'validate_password%';

Your password does not satisfy the current policy requirements 修改mysql密码出现的错误_第2张图片

所以使用以下命令进行配置修改

set global validate_password.policy=0;
set global validate_password.length=1;

 

 

 

你可能感兴趣的:(数据库,mysql)