Tools Links Login

Recover MySQL root password

It happens from time to time. For me, it happens after being on a long vacation. I forget my password, and the root password. Shame on me. Recovering is simpler than you think!

  1. Open console and stop mysql service
    #/etc/init.d/mysqld stop
  2. Then i run this service without password
    #mysqld_safe --skip-grant-tables
    You can also run it as a background if you would not use another console (shell)
    #mysqld_safe --skip-grant-tables &
  3. Then i open another console and connect to mysql
    #mysql -u root output mysql>
  4. Next, i setup new password for root user
    mysql> use mysql;
    mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
    mysql> flush privileges;
    mysql> quit
  5. Last step is stop mysql service
    #/etc/init.d/mysqld stop
  6. Finish, and start mysqld and test new password
    #/etc/init.d/mysqld start #mysql -u root -p

About this post

Posted: 2011-04-02
By: FortyPoundHead
Viewed: 905 times

Categories

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.