MySQL Password modification

Source: Internet
Author: User

1. Change the password in the case of knowing the MySQL password

mysqladmin Command (headings)
The format is as follows (where user is the username and password is the new password):
mysqladmin-u user-p Password Password
After this command, you will be prompted to enter your original password, and you can modify it after entering it correctly.

UPDATE User statement (headings record)
This must be done first by logging in to MySQL with the root account and then executing:
UPDATE user SET Password=password (' 123456 ') WHERE user= ' root ';
FLUSH privileges;

SET PASSWORD statement (headings record)
This approach also requires that you log in to MySQL with the root command and then execute:
SET PASSWORD for Root=password (' 123456 ');

2. Change password in case of forgotten MySQL password

Modify the configuration file/etc/my.cnf, add the following parameters under the Mysqld segment, and then restart MySQL

Skip-grant-tables


Login MySQL without a password at this time,

UPDATE user SET Password=password (' 123456 ') WHERE user= ' root ';
FLUSH privileges;
SET PASSWORD statement (headings record)
This approach also requires that you log in to MySQL with the root command and then execute:
SET PASSWORD for Root=password (' 123456 ');


Again in the configuration file to remove the added parameter, restart MySQL can

This article from "Martin" blog, declined reprint!

MySQL Password modification

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.