mysql cannot grant privilege to user, getting error: ERROR 1819 (HY000): Your password does not satisfy the current policy requirements -


i in process of moving new application production environment includes mysql db.

while attempting grant required privileges using command:

grant alter,create on `mydb`.`*` `thisuser`@`*` ; 

i'm getting error: error 1819 (hy000): password not satisfy current policy requirements.

and this, while passwords (of root user of thisuser) satisfy current policy:

  • the length of passwords above 8 chars,
  • they include both upper , lower case, digits , special chars (like "!", "@", "$", etc.).

i tried setting validate_password_policy low didn't either.

can explain issue , how resolve it?

thanks.

this error time occurs when you've changed fields user host or password forgotten flush privileges. try:

mysql>flush privileges;


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -