How to change the root user's password in MySQL

How to change the root user's password in MySQL

Method 1: Use the SET PASSWORD command

mysql> set password for username@localhost = password('new password');
-- Examplemysql> set password for root@localhost = password('123');

Method 2: Using mysqladmin

mysql> mysqladmin -u username -p old password password new password;
-- Examplemysql> mysqladmin -uroot -p123456 password 123;

Method 3: Use UPDATE to edit the user table directly

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

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. Type 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 can no longer be moved) and go to the mysql\bin directory.
  5. Type mysql and press Enter. If successful, the MySQL prompt will appear>
  6. Connection permission database: use mysql;
  7. Change password: update user set password=password("123") where user="root";
  8. Refresh privileges (required step): flush privileges;
  9. Exit: quit
  10. 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 details of how to modify the password of the root user in MySQL. For more information about modifying the password of the root user in MySQL, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Introduction to some operations of MySQL secure password input
  • How to change the secure processing password in MySQL 5.6
  • Quick solution for forgetting MySQL8 password
  • How to retrieve password for mysql 8.0.22 on Mac
  • Detailed explanation of MySQL 8.0 password expiration policy
  • MySQL implements an example method of logging in without a password
  • How to reset the root password in Linux mysql-5.6
  • How to safely shut down MySQL
  • How to gracefully and safely shut down the MySQL process
  • It's the end of the year, is your MySQL password safe?

<<:  How to use gdb to debug core files in Linux

>>:  JavaScript to achieve digital clock effects

Recommend

Detailed explanation of MySql view trigger stored procedure

view: When a temporary table is used repeatedly, ...

js to achieve a simple magnifying glass effect

This article shares the specific code of js to ac...

Web page custom selection box Select

Everyone may be familiar with the select drop-dow...

How to package the project into docker through idea

Many friends have always wanted to know how to ru...

Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

1. Download the accelerated version of msyql dock...

Specific steps for Vue browser to return monitoring

Preface When sharing a page, you hope to click th...

Implementation of CSS scroll bar style settings

webkit scrollbar style reset 1. The scrollbar con...

Docker - Summary of 3 ways to modify container mount directories

Method 1: Modify the configuration file (need to ...

Using react+redux to implement counter function and problems encountered

Redux is a simple state manager. We will not trac...

js version to realize calculator function

This article example shares the specific code of ...

Deployment and configuration of Apache service under Linux

Table of contents 1 The role of Apache 2 Apache I...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

Understand the implementation of Nginx location matching in one article

Since the team is separating the front-end and ba...

Summary of Docker Consul container service updates and issues found

Table of contents 1. Container service update and...

Detailed explanation of MLSQL compile-time permission control example

Preface The simple understanding of MySQL permiss...