报错信息

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


原因

https://dev.mysql.com/doc/refman/8.0/en/validate-password-options-variables.html#sysvar_validate_password.policy

mysql8.0.11-1 修改密码报错

处理措施

mysql> set global validate_password.policy=0;
Query OK, 0 rows affected (0.00 sec)

mysql> set global validate_password.length=8;
Query OK, 0 rows affected (0.00 sec)

相关文章:

  • 2021-07-21
  • 2021-10-29
  • 2022-12-23
  • 2021-11-22
  • 2021-09-20
  • 2021-05-01
  • 2022-12-23
  • 2021-12-21
猜你喜欢
  • 2022-03-03
  • 2021-10-07
  • 2021-09-13
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2021-07-24
相关资源
相似解决方案