mysql Your password does not satisfy the current policy requirements 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: Your password does not satisfy the current policy requirements

SHOW VARIABLES LIKE 'validate_password%';

Example 4: remove Your password does not satisfy the current policy requirements

UNINSTALL COMPONENT 'file://component_validate_password';

Tags:

Sql Example