Your password does not satisfy the current policy requirements 修改mysql密码出现的错误
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 '...
原创
2020-11-05 09:12:32 ·
329 阅读 ·
0 评论