Initialize the password of a mysql User _ MySQL

Source: Internet
Author: User
Initialize the mysql user's password. after installing mysql for the first time, use root to log on to mysql. The token will prompt you to enter the password. However, the root password is not prompted during the installation process. What should we do? Modify my. The conf configuration bypasses mysql authorization verification and resets the password of the root user. The procedure is as follows:
1) stop the currently running mysql service

/Etc/init. d/mysql stop

2) modify my. conf
Add the following statement to the my. conf file.

# Skip-grant-tables

Save and exit
3) restart the mysql service.
4) mysql-hlocalhost-root directly enters the mysql management Terminal

Use mysql; // use the mysql database to update user set password = password ('newpassword') where user = root; // modify the password of the root user flush privileges; // refresh quit; // exit

5) restore the my. conf file
Add # before skip-grant-table

Skip-grant-table

6) restart the mysql service.
/Etc/init. d/mysql restart
7) mysql-hlocalhost-uroot-p // enter the correct root password to log on.

//

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.