MySQL root password forgot, view or modify the workaround

Source: Internet
Author: User

MySQL root password forget, view or modify the workaround:
1. Start the command line first
2. Run at the command line: taskkill/f/im Mysqld-nt.exe
3. Continue to run at the command line: Mysqld-nt--skip-grant-tables
4. Open a new command line run: mysql-u root (if you do not configure the bin environment variable for MySQL, you need to switch to the bin directory to execute this statement)

If you do not want to change the password, just want to see the original password. This statement can be executed at the command line

Select Host,user,password from mysql.user;//to view users and passwords

If you want to change the password, execute the following statement at the command line

Update Mysql.user set password= ' Here fill in the password you want to set ' where user= ' root ';
Here I set the blank password.

After you complete these operations, continue to run at the command line

taskkill/f/im mysqld-nt.exe;//Security, the first end, because now this is can be directly logged in with the mysql-u root

net start mysql;//start MySQL service

MySQL root password forgot, view or modify the workaround

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.