We all know that forgetting the MySQLROOT password is a very common problem in the use of MySQL databases. Many of our friends are not very familiar with the actual operation of forgetting the ROOT password for MySQL, close up this article to share with you:
1. Edit the MySQL configuration file (the best combination with PHP:
In windows: % MySQL (the best combination with PHP) _ installdir % \ my. ini // I. ini is the configuration file of MySQL (the best combination with PHP.
In linux:
/Etc/my. cnf
Add the following line in the [MySQL (best combination with PHP) d] configuration section:
- skip-grant-tables
Save and exit editing.
2. Restart MySQL (the best combination of PHP and MySQL ).
In windows:
Net stop MySQL (the best combination with PHP)
Net start MySQL (the best combination with PHP)
In linux:
/Etc/init. d/MySQL (the best combination with PHP) d restart
3. Set a new MySQL ROOT Password.
Then run the following command in the command line:
MySQL (the best combination with PHP)-uroot-p MySQL (the best combination with PHP)
Press enter to enter the database without a password.
Run the following statement to update the root password to 7758521:
- update user set password=PASSWORD("7758521") where user='root';
Quit exits MySQL (the best combination with PHP ).
4. Restore the configuration file and restart the service.
Then, modify the MySQL configuration file (the best combination with PHP) to delete the line added.
Restart MySQL (the best combination with PHP) again, and the password is changed.
Modification completed.
Use the new password 7758521 to try it out. Can I log on to MySQL again (the best combination with PHP?
The above content is an introduction to modifying the MySQL root password. I hope you will get some benefits.
The above content is the description of modifying the MySQL root Password, hoping to help you in this regard.