How to reset the root password of mysql _ MySQL

Source: Internet
Author: User
How to reset the mysql root password: bitsCN.com

If you forget the MySQL root password, you can reset it using the following methods:

Linux operation method

Add the following content to the [mysqld] 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.


UPDATE mysql. user SET Password = PASSWORD
('Password') WHERE User = 'root ';

After successful


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;


Mysqld_safe-skip-grant-tables &


3. use the empty password to log on to MySQL as the root user;


Mysql-u root


4. modify the password of the root user;


Mysql> update mysql. user set password = PASSWORD ('www.hzhuti.com ') where User = 'root ';
Mysql> flush privileges;
Mysql> quit

5. restart MySQL to log on with the new password.

BitsCN.com

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.