Change Password in MySQL! (Network Abstract)

Source: Internet
Author: User

MySQL is a real multi-user, multi-thread SQL database server. MySQL is implemented in a Client/Server structure. It consists of a server daemon mysqld and many different client programs and libraries. Because of its open nature and Stability of the source code, and its perfect combination with PHP, many websites now use it as a back-end database, making it widely used. In terms of security, each user must be given access restrictions on different databases to meet the requirements of different users. We will discuss it separately for your reference.

I. Summary of MySQL password change methods

The first thing to note is: Generally, you need to have the root permission in MySQL to change the MySQL password. In this way, you cannot change the password unless you ask the Administrator to help you modify the password.

Method 1

Use phpMyAdmin

(Graphical MySQL database management tool), this is the simplest, directly use SQL statements to modify the user table of the MySQL database, but do not forget to use the password function, insert the user using the INSERT command, modify the user's use of the update command and delete the use of the DELETE command. This section describes the user field of a data table.

Method 2

Use mysqladmin. Input

Mysqladmin-u root-P oldpassword newpasswd

After executing this command, you need to enter the original root password, so that the root password will be changed to newpasswd. Similarly, change the root in the command to your username, and you can change your password.

Of course, if your mysqladmin cannot connect to MySQL server, or you cannot execute mysqladmin, this method is invalid, and mysqladmin cannot clear the password.

The following methods are used at the MySQL prompt and must have the root permission of MySQL:

Method 3
Mysql> insert into mysql. User (host, user, password) Values
('%', 'System', password ('manager '));
Mysql> flush privileges

Specifically, this is to add a user with the username system and Password Manager. Be sure to use the password function, and then use flush privileges for confirmation.

Method 4

Similar to method Sany, but the replace statement is used.

Mysql> replace into mysql. User (host, user, password)
Values ('%', 'system', password ('manager '));
Mysql> flush privileges

Method 5

Use the SET Password statement

Mysql> set password for system @ "%" = PASSWORD ('manager ');

You must also use the password () function, but do not need to use flush privileges for confirmation.

Method 6

Use the grant... identified by statement to grant permissions.

Mysql> grant usage on *. * to system @ "%" identified by 'manager ';

Here, the password () function is unnecessary and you do not need to use flush privileges for confirmation.

Note: The password () function is used to encrypt passwords and automatically interpret them 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.