How to change the password of a MySQL account

Source: Internet
Author: User
Tags mysql command line

How should I change the MySQL account password? This may be a problem that many people have encountered. The following describes how to change the password of your MySQL account and how to change the password.

Use mysql
Update user set Password = password ('newpassword') where User = 'root ';
Flush privileges;

1. Modify the USER table of the MYSQL database in the MYSQL database

You can use normal UPDATE and INSERT statements.

2. Use the following command in the command line:

MYSQLADMIN-u root-p PASSWORD mypasswd

3. You can modify the MY. ini file in the MYSQL folder.

4. Use the set password statement,

Mysql> set password for myuser @ localhost = PASSWORD ('mypasswd ');

5. Use the GRANT... identified by statement

Mysql> grant usage on *. * TO myuser @ localhost identified by 'mypassword ';

The above describes how to change the MySQL account password.

Provides you with an in-depth understanding of MySQL user permissions.

MySQL user permission setting method

Back up and restore a database using MySQL Command Line

Solution to querying garbled characters in MySQL

How to delete duplicate records in MySQL

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.