Home>Article>Database> Introduction to four methods of changing root password in mysql

Introduction to four methods of changing root password in mysql

不言
不言 forward
2019-04-15 11:51:37 2415browse

This article brings you an introduction to the four methods of changing the root password in MySQL. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you. .

Method 1: Use the SET PASSWORD command

First log in to MySQL.
Format: mysql> set password for username@localhost = password('new password');
Example: mysql> set password for root@localhost = password('123');

Method 2: Use mysqladmin

Format: mysqladmin -u username -p old password password new password
Example: mysqladmin -uroot -p123456 password 123

Method 3: Use UPDATE to directly edit the user table

First log in to MySQL.

mysql> use mysql; mysql> update user set password=password('123') where user='root' and host='localhost'; mysql> flush privileges;

Method 4: When you forget the root password, you can do this

Take windows as an example:

1Close the running MySQL service.
2. Open the DOS window and go to the mysql\bin directory.
3. Enter mysqld --skip-grant-tables and press Enter. --skip-grant-tables means to skip the permission table authentication when starting the MySQL service.
4. Open another DOS window (because the DOS window just now cannot be moved) and go to the mysql\bin directory.
5. Enter mysql and press Enter. If successful, the MySQL prompt > will appear.
6. Connect to the permission database: use mysql;.
6. Change password: update user set password=password("123") where user="root"; (don’t forget to add the semicolon at the end).
7. Refresh privileges (required step): flush privileges;.
8. Quit.
9. Log out of the system, re-enter, and log in using the username root and the new password 123 you just set.

【Related recommendations:MySQL Tutorial


The above is the detailed content of Introduction to four methods of changing root password in mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:cnblogs.com. If there is any infringement, please contact admin@php.cn delete