Follow Us
Contribute
  • Register

Found wrong password for user '(X)' @ '(X)' ; ignoring user

0 votes

This is a typical error message when an invalid password is set for the user. This error message also means that that user is ignored by the system.

requested 1 year ago by errorbase (169,970 points)

1 Solution

0 votes

The user account information in MySQL servers are hold in "user" table of "mysql" database. Modifying the "user" table for that user account with a simple SQL command will solve the problem.

 UPDATE user SET password = PASSWORD ('(NewPassword)') WHERE user = '(Username)' AND host = '(Hostname)'
solved 1 year ago by errorbase (169,970 points)

Related errors

0 votes
1 solution
requested 1 year ago by errorbase (169,970 points)
0 votes
0 solutions
requested 1 year ago by errorbase (169,970 points)
0 votes
1 solution
requested 1 year ago by errorbase (169,970 points)
+1 vote
1 solution
requested 1 year ago by errorbase (169,970 points)
0 votes
2 solutions