MySQL operation-forgot root account password

Source: Internet
Author: User

When the root user password for MySQL is forgotten, it can be reset by following these steps (executed under the CMD window of Administrator privileges)

1. Turn off the startup MySQL service

net stop MySQL

2. Perform the following command to avoid entering MySQL

Mysqld-nt--skip-grant-tables

3. Reopen admin cmd execute the following command to enter MySQL, no password required at this time

Mysql-u root-p

4. Commands to view legacy passwords

Select Host,user,password from Mysql.user;

5. command to change Password

Use MySQL;

Update user Set Password = password ("New password") where user = ' root ';

Flush privileges;

6. Restart the MySQL service

Normal cmd execution: net start MySQL

PowerShell execution: Restart-service MySQL

  PS: If the service cannot be restarted by command, try restarting the computer

MySQL operation-forgot root account password

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.