error 1819 (hy000) your password does not satisfy the current policy requirements in mysql code example

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

mysql> SET GLOBAL validate_password.policy = 0;

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

mysql> SET GLOBAL validate_password.policy=LOW;

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

mysql> SHOW VARIABLES LIKE 'validate_password%';

Tags:

Sql Example