• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
MySQL - How to reset the root password
#1
For users of the powerful database MySQL, access, as well as right to modify the admin (root) password is important, because both are required when installing and in situations when the master password is lost.
The user must be connected to the root password to modify it but for reinitialising the password, this process can be skipped.
Resetting the password is possible after connection to the MySQL database with the help of specific commands. In case the password is lost, then it is also possible to get access to the MySQL server through a bypass of the authentication process. To reset the password under the latter condition, the server must be restarted to continue the process.

Issue: Root password is lost
To modify the existing root password, you must firstly be connected to the account. If you know the root password and just want to reinitialize it, you can skip this part. If you don't have the root password then follow the steps below:

Stop the MySQL server
Code:
#/etc/init.d/mysql stop

Restart MySQL, disabling network communication and skipping the authentication procedure

Code:
#mysqld --skip-grant-tables --skip-networking &

Resetting the password
Get connected to the MySQL system database:

Code:
# mysql mysql -u root

Type in the following command and reset your password:

Code:
UPDATE user SET password=PASSWORD('newpassword') WHERE user="root";

If you didn't go through the first step, to validate the changes simply type:

Code:
FLUSH PRIVILEGES;

If you started MySQL manually (bypassing the authentication process), the server must be restarted:

Code:
#/etc/init.d/mysql restart

Note that: Changing your password can cause connection problems between phpmyadmin and mysql.
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  DigiNotar root certificates removed from iOS 5 Mark 1 5,976 16-10-2011, 12:49 PM
Last Post: Drumm
  MySQL.com hacked and was serving malware Mark 2 9,060 03-10-2011, 07:28 PM
Last Post: Drumm

Forum Jump: