Monday, 2 December 2019

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

Error:
During reset the password getting below error
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

Solution:
SET GLOBAL validate_password_policy=LOW;
But make sure in prod we have proper policy before changing to LOW or revert once you reset the password.

ALTER USER 'root'@'localhost' IDENTIFIED BY '********';
FLUSH PRIVILEGES;



No comments: