MySQL – Your password does not satisfy the current policy requirements.

Lets check our current policy rules

SHOW VARIABLES LIKE 'validate_password%';

Captura de ecrã 2016-07-4, às 14.49.28

This is how we can change this values…

SET GLOBAL validate_password_length = 7;
SET GLOBAL validate_password_number_count = 0;
SET GLOBAL validate_password_mixed_case_count = 0;
SET GLOBAL validate_password_special_char_count = 0;

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.