How to reset password after forgetting password in MySQL8 (MySQL old method doesn't work)

How to reset password after forgetting password in MySQL8 (MySQL old method doesn't work)

The command line mysqld –skip-grant-tables cannot be successfully started in mysql8, and the parameter cannot be started in the ini file.

The MySQL password is stored in the user table. Changing the password actually means changing the record in the table.

The idea of ​​resetting is to find a way to enter the system without a password, and then use database commands to modify the password record in the user table.

After checking, the method recommended by MySQL5 system on the Internet is to start the MySQL service with the --skip-grant-tables parameter, which indicates that the authorization table is not loaded at startup, so after successful startup, the root user can log in with an empty password

mysqld --skip-grant-tables

After logging in, you can use

UPDATE user SET authentication_string=” WHERE user='root';

These commands set the password or leave it blank.

However, the command line such as mysqld –skip-grant-tables cannot be successfully started in mysql8, and the parameter cannot be started in the ini file.

Two ideas for resetting the MySQL8 system password

There are two ways of thinking. You can use the --init-file parameter to load and run the command file for changing the password when the service starts. Once the command is executed, the password will be cleared or reset after the service starts. After starting the service, you can log in with an empty password or a specified password.

Or continue to study the reason why the service cannot be started under the –skip-grant-tables command line parameter, solve the problem, then start the service and log in with an empty password, manually enter the command to clear or reset the password record field in the mysql.user table.

The former is recommended.

The specific operation process is as follows:

Method 1: Use the --init-file parameter to solve

This parameter specifies that a SQL command file is executed when the service is started. Therefore, you only need to write the command to reset the password in the file and use this parameter to specify that the command is executed at startup. After the startup is complete, you can reset the system password.

The first step is to shut down the system service

net stop mysql

The second step is to create a text file containing a password modification command

ALTER USER 'root'@'localhost' IDENTIFIED BY ';

Step 3: Start the server in command line mode and specify the password modification command file to be executed at startup

mysqld –init-file=d:mysqlc.txt –console

Specific operation screenshots

Method 2: Find a way to use the --skip-grant-tables parameter

Same as method 1, turn off the system service first

In actual testing, under the mysql8 system, using mysqld –console –skip-grant-tables –shared-memory can start the service without a password

After the service is started, log in to the system with an empty password

mysql.exe -u root

Then execute the sql command to set the root user password to empty

UPDATE mysql.user SET authentication_string=” WHERE user='root' and host='localhost';

Specific operation screenshots

Due to some features of MySQL 8, the old reset method is not very effective. It is recommended to use the –init-file parameter to solve the problem. It has been tested to be safe and reliable.

Losing your database management password is a real headache. If you cannot retrieve it successfully, you will be in a lot of trouble. Most of the solutions found online are out of date. It is recommended that you save this article and pay attention to it in case you need it.

You may also be interested in:
  • The perfect solution for forgetting the password in mysql8.0.19
  • Solution for forgetting the root password of MySQL5.7 under Windows 8.1
  • A brief analysis of the best way to deal with forgotten MySQL 8 passwords
  • Pitfalls encountered when installing MySQL 8.0.18 compressed package and resetting forgotten passwords
  • mysql8.0 forgotten password modification and net command service name invalid problem
  • Quick solution for forgetting MySQL8 password

<<:  Tips for viewing text in Linux (super practical!)

>>:  Detailed explanation of Vue advanced construction properties

Recommend

Vue multi-page configuration details

Table of contents 1. The difference between multi...

How to install MySql in CentOS 8 and allow remote connections

Download and install. First check whether there i...

Analysis of the Poor Performance Caused by Large Offset of LIMIT in MySQL Query

Preface We all know that MySQL query uses the sel...

Detailed process of configuring NIS in Centos7

Table of contents principle Network environment p...

Summary of Common Problems with Mysql Indexes

Q1: What indexes does the database have? What are...

Vue shuttle box realizes up and down movement

This article example shares the specific code for...

Linux system calls for operating files

Table of contents 1. Open the file Parameter Intr...

CSS to implement sprites and font icons

Sprites: In the past, each image resource was an ...

React example of how to get the value of the input box

React multiple ways to get the value of the input...

Detailed explanation of Docker container data volumes

What is Let’s first look at the concept of Docker...

Use VSCode's Remote-SSH to connect to Linux for remote development

Install Remote-SSH and configure it First open yo...

Discussion on the way to open website hyperlinks

A new window opens. Advantages: When the user cli...

Analysis of the Neglected DOCTYPE Description

doctype is one of them: <!DOCTYPE HTML PUBLIC &...

Detailed steps to install Sogou input method on Ubuntu 20.04

1. Install Fcitx input framework Related dependen...