Complete steps to reset the root user password in mysql8

Complete steps to reset the root user password in mysql8

Preface

Recently, many new colleagues have asked this question, especially for MySQL automatically installed through homebrew, whose default version is 8.0. Due to the addition of some security policies and other restrictions, it is a little troublesome to change the user password. I might as well post this summary.

Let’s take a look at the detailed introduction.

Here are the steps:

1. First, check the root user's related information in the user table of the mysql database:

select host, user, authentication_string, plugin from user;

host: The IP address 'location' that allows users to log in % indicates that it can be remote;

user: the user name of the current database;

authentication_string: user password; the password field and password() function are deprecated after MySQL 5.7.9;

plugin: password encryption method;

If you find that there is content under the authentication_string field of the root user, set it to empty first:

use mysql;
update user set authentication_string='' where user='root';

2. Restart the mysql service and shut down the service directly by command in mac:

mysql.server stop

Or kill the mysql process. Then start the mysql service:

mysql.server start

3. Log in as root user. Since authentication_string has been set to empty, you can log in without a password:

mysql -u root -p
Password:

No need to enter a password, just press Enter

4. Enter the mysql database and use ALTER to modify the root user password:

ALTER user 'root' IDENTIFIED BY '123456' ;

The root in the statement depends on whether the root user in your actual user table is root or root@localhost. Since I changed the password to a simpler format like 123456, the default password policy of MySQL 8 may not allow it. If you must change it, you can modify the password policy first:

set global validate_password.length = 6;

set global validate_password.policy = 'LOW';

FLUSH PRIVILEGES;

Here the password length is changed from the default 8 characters to 6 characters, and the password policy level is changed from MEDIUM to LOW. If you want to view password verification related settings, you can directly query the system variables:

SHOW VARIABLES LIKE 'validate_password.%';

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • What should I do if I forget my MySQL password? How to reset MySQL root password
  • Detailed method for forgetting the root password or resetting the password in Mysql 5.7
  • How to reset the root password in mysql8.0.12
  • How to reset MySQL root password under Windows
  • Reset mysql root password in linux system
  • How to reset the root user password of MySQL database if you forget it [Graphic]
  • How to reset the root password of Mysql in Windows if you forget it
  • How to solve the problem "Unknown column 'password" when resetting MySQL root password
  • The easiest way to reset mysql root password
  • A practical record of MySql resetting the root password and failing

<<:  Sample code for installing ASPNET.Core3.0 runtime in Linux

>>:  Best way to replace the key in json object

Recommend

In-depth understanding of Vue transition and animation

1. When inserting, updating, or removing DOM elem...

Example of building a redis-sentinel cluster based on docker

1. Overview Redis Cluster enables high availabili...

MySQL 5.7 and above version download and installation graphic tutorial

1. Download 1. MySQL official website download ad...

Vue uses drag and drop to create a structure tree

This article example shares the specific code of ...

Detailed explanation of CSS multiple three-column adaptive layout implementation

Preface In order to follow the conventional WEB l...

Detailed explanation of MySQL 8.0 atomic DDL syntax

Table of contents 01 Introduction to Atomic DDL 0...

Detailed example of IOS database upgrade data migration

Detailed example of IOS database upgrade data mig...

JavaScript plugin encapsulation for table switching

This article shares the encapsulation code of Jav...

Implementation steps of mysql master-slave replication

Table of contents mysql master-slave replication ...

How to use xshell to connect to Linux in VMware (2 methods)

【Foreword】 Recently I want to stress test ITOO...

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...

Implementation idea of ​​left alignment of the last row of flex box layout

Using flex layout, if it is a nine-square grid, i...

Examples and comparison of 3 methods for deduplication of JS object arrays

Table of contents 1. Comparison of data before an...

HTML checkbox Click the description text to select/uncheck the state

In web development, since the checkbox is small an...