This article introduces how to reset the root password of mysql. It also introduces the methods for resetting the root password of mysql in different operating systems. The following describes the solutions for linux and windows.
This article introduces how to reset the root password of mysql. It also introduces the methods for resetting the root password of mysql in different operating systems. The following describes the solutions for linux and windows.
If you forget the MySQL root Password, You can reset it using the following methods:
Linux operation method
Add the following to the [d] field of my. cnf:
The Code is as follows: |
|
Skip-grant-tables |
Then restart your mysqld so that you have no password for a long time.
Then enter mysql.
The Code is as follows: |
|
UPDATE mysql. user SET Password = PASSWORD ('Password') WHERE User = 'root '; |
After successful
The Code is as follows: |
|
Flush privileges; |
Finally, remove skip-grant-tables from my. cnf.
Restart mysqld.
Windows Operation Method
1. KILL the MySQL process in the system;
2. Run the following command to start MySQL without checking its permissions;
The Code is as follows: |
|
Mysqld_safe-skip-grant-tables & |
3. Use the empty password to log on to MySQL as the root user;
The Code is as follows: |
|
Mysql-u root |
4. Modify the password of the root user;
The Code is as follows: |
|
Mysql> update mysql. user set password = PASSWORD ('new password') where User = 'root '; Mysql> flush privileges; Mysql> quit |
5. Restart MySQL to log on with the new password.