Pages

Thursday, April 24, 2014

How to change root password of Mysql to an empty one or blank?


You should first restart the MySQL server or run the following command:
FLUSH PRIVILEGES;
 Now change the root password to an empty one:
mysqladmin -u root -p'<current password>' password ''
Now your password is updated to blank.

No comments:

Post a Comment