MySQL Forgot password reset method

Source: Internet
Author: User

1. Edit the MySQL Master profile my.cnf
Vim/etc/my.cnf
Add a parameter to the location under the [Mysqld] field
Skip-grant
Save exit
2. Restart the database service
Service mysqld Restart
3. This allows access to the database without authorization.
Mysql-uroot
4. Modify the user password of the corresponding database
Use MySQL;
Update user set Password=password (' Your password ') where user= ' root ';
5. Modify/ETC/MY.CNF remove skip-grant, restart MySQL service

PS: Similarly, you can also change the other password, such as the Wordpress,discuz library.

1,mysql-u-p password; Enter MySQL
2,use WordPress;
3,update wp_users Set USER_PASS=MD5 (' New password ') where wp_users.user_login= ' user ';
4,flush privileges;
5. Quit MySQL and restart mysqld service

MySQL Forgot password reset method

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.