Resetting MySQL password
admin | Dec 09, 2009 | Comments 0
Issue :
How to reset MySQL ‘root’ password ?
Solution :
-> Stop the mysql daemon.
/etc/init.d/mysqld stop
-> Run the following commands :
mysqld_safe –skip-grant-tables &
mysql -u root
mysql> use mysql;
mysql> update user set password=PASSWORD(“newrootpassword”) where User=’root’;
mysql> flush privileges;
mysql> quit
-> Restart the service.
/etc/init.d/mysqld stop
/etc/init.d/mysqld start
Filed Under: Quick fixes • Technical
About the Author: InstaCarma is a provider of Enterprise Class Solutions for the Hosting Industry

1800 810 6547