I am in the process of moving a new application to the Production environment which includes a MySQL DB.
While attempting to grant the required privileges using the command:
GRANT ALTER,CREATE ON `MyDB`.`*` to `ThisUser`@`*` ;
I'm getting the error: ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
.
and this, while the passwords (of the root user as well as of the ThisUser) fully satisfy the current policy:
- The length of the passwords are above 8 chars,
- They include both upper and lower case, as well as digits and special chars (like "!", "@", "$", etc.).
I tried setting the validate_password_policy
to LOW
but it didn't help either.
Can anyone explain what the issue is and how to resolve it?
Thanks.