Sep
22 2008
As a database administrator, you might forget the root password for your database. It is a serious problem. This tutorial is to teach you how to reset the root password if you forget it.
- Stop the MySQL service.
- Start the MySQL in the save mode.
- Login into MySQL as root user
- Update the root user password.
- Restart the MySQL service & try to login using the new password.
/etc/init.d/mysql stop
mysqld_safe –skip-grant-tables &
mysql -u root
mysql> use mysql;
mysql> update user set password=PASSWORD(“NEW PASSWORD”) where user=’root’;
mysql> flush privileges;
mysql> quit;
/etc/init.d/mysql stop
/etc/init.d/mysql start
mysql -u root -p
- » Export mysql select statement into csv
- » MySQL release free disk space.
- » Check MySQL database size
- » MySQL table corrupt & repair
- » Apache PHP unable connect remote MySQL
















February 11th, 2009 at 5:44 pm
it’d be safer to go with
mysqld_safe –skip-grant-tables –skip-networking &
April 11th, 2009 at 8:58 pm
here there is no clear answer for this Question, Please Give me clear Answer.
April 11th, 2009 at 9:19 pm
hey its very Clear thanking you Sir,