Reset Mysql Password Operation command _mysql in Windows environment

Source: Internet
Author: User
Tags mysql in safe mode
Local Environment: Windows XP system, XAMPP integrated environment.
XAMPP installation directory: D:/XAMPP

1, first stop the running MySQL process
Copy Code code as follows:

>net stop MySQL

If it is not loaded as a service, it can be shut down directly in the Process Manager or service.

2. Start MySQL in safe mode
Go to the MySQL directory and run under the command line
Copy Code code as follows:

>d:
>CD Xampp/mysql/bin
>mysqld.exe--skip-grant-tables


3, after the completion of the password can not enter the MySQL
Copy Code code as follows:

>mysql-u root-p

When prompted to enter a password, you can return directly.

4. Change Password
Copy Code code as follows:

>use MySQL
>update user Set Password=password (' New password ') where user= ' root ';
>flush privileges;


5. Start MySQL Service
In Task Manager, close all MySQL processes and start using the following command.
Copy Code code as follows:

>net start MySQL
Related Article

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.