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;
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:
Post a Comment