4 ways to modify MySQL root password (summary)

4 ways to modify MySQL root password (summary)

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: Using mysqladmin

Format: mysqladmin -u username -p old password password new password

Example: mysqladmin -uroot -p123456 password 123

Method 3: Use UPDATE to edit the user table directly

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:

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

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL - 4 ways to change the root password (taking Windows as an example)
  • What should I do if I forget my MySQL password? How to reset MySQL root password
  • Solution to forgetting the root password of mysql under windows
  • How to view or modify the root password of MySQL if it is forgotten (with pictures and text)
  • Multiple methods to modify MySQL root password (recommended)
  • How to forget the root password in MySQL 5.7 and change the root password in MySQL 5.7
  • The perfect solution for forgetting the root password of Mysql
  • How to view the root password for MySQL connection
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • How to forget the root password in Mysql8.0.13 under Windows 10 system

<<:  jQuery realizes the scrolling effect of table row data

>>:  Implementation of FIFO in Linux process communication

Recommend

How to set up the terminal to run applications after Ubuntu starts

1. Enter start in the menu bar and click startup ...

Detailed explanation of html-webpack-plugin usage

Recently, I used html-webapck-plugin plug-in for ...

How to implement page screenshot function in JS

"Page screenshot" is a requirement ofte...

MySQL 8.0.12 Quick Installation Tutorial

The installation of MySQL 8.0.12 took two days an...

Sqoop export map100% reduce0% stuck in various reasons and solutions

I call this kind of bug a typical "Hamlet&qu...

Docker-compose quickly builds steps for Docker private warehouse

Create docker-compose.yml and fill in the followi...

CSS delivery address parallelogram line style example code

The code looks like this: // Line style of the pa...

Use of js optional chaining operator

Preface The optional chaining operator (?.) allow...

Centos7.3 How to install and deploy Nginx and configure https

Installation Environment 1. gcc installation To i...

Example of using MySQL to count the number of different values ​​in a column

Preface The requirement implemented in this artic...

Introduction to who command examples in Linux

About who Displays users logged into the system. ...

JavaScript canvas to achieve raindrop effects

This article example shares the specific code of ...

Node.js file copying, folder creation and other related operations

NodeJS copies the files: Generally, the copy oper...

Detailed explanation of mysql execution plan id is empty (UNION keyword)

Introduction During the work process, slow querie...