MySQL How to change password, root password forgot what to do?

Source: Internet
Author: User

MySQL has three ways of changing the root password:

1.mysqladmin-uroot-p Password "12"

This will change the root password to 12, and note that the new password is enclosed in double quotes.

2.root log in to MySQL server and update the user table in MySQL database with UPDATE statement

Update Mysql.user Set Password=password ("New_password") where user= ' root ' and host= ' localhost '

Flush privileges Refresh the LOAD statement after execution is complete

3.set Password=password ("New_password");(ordinary users can only use this method to modify the password, because the permissions are not enough)

What to do if the root password is forgotten or lost:

Steps:

1. Start the MySQL service using--skip-grant--tables:

Mysqld_safe--skip-grant-tables

2. Log in to the root user and set a new password

Update Mysql.user Set Password=password ("New_password") where user= ' root ' and host= ' localhost '

Flush Privileges

MySQL How to change password, root password forgot what to do?

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.