MySQL password forgot to change

Source: Internet
Author: User

Forget MySQL password is a bad thing, usually we will remember the password, or exist in the document, to avoid forgetting, if you forget the password can refer to the following method to change, this operation requires restarting MySQL.

First we insert a line of configuration under the "mysqld" option in the My.cnf file: Skip-Grant-tables to skip password authentication.


Next restart MySQL

Service mysqld Restart

After restarting, using Mysql-uroot login will no longer require a password.

After entering the database management side, you can change the password of the root account by using the SQL below (and of course the other user's password if you do not need to log in with root). )

mysql> USE mysql;mysql> UPDATE user SET Password = password (‘新密码’) WHERE User = ‘root’ ;mysql> flush privileges ;mysql> quit

After the change is complete, Delete or comment the skip-grant-tables configuration in the MY.CNF document before restarting MySQL.

MySQL password forgot to change

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.