Sunday, 13 September 2009

Resetting MySQL password

-> 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

No comments:

Post a Comment