How to change MySQL user password?

Connect to your database and run the following command:

 update mysql.user set password=PASSWORD("ENTER-PASSWORD-HERE") where User='ENTER-USERNAME';

 
After that you might want to run:

flush privileges;

 

You cannot comment on this entry