Showing posts with label Resetting MySQL password. Show all posts
Showing posts with label Resetting MySQL password. Show all posts

Resetting MySQL password

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