Quick solution for forgetting MySQL8 password

Quick solution for forgetting MySQL8 password

Preface

When we forget the MySQL database password, we cannot enter the database normally, and we cannot change the password. So how do we change the password at this time? Here we will teach you a simple and commonly used way to change the password.

Here’s how:

1. Open the command line as an administrator;

2. Stop the mysql service:

3. Enter the following command to start MySQL without a password. Many versions found on Baidu modify the my.ini file, but this has no effect in version 8;

mysqld --console --skip-grant-tables --shared-memory

4. Open another DOS window and enter mysql -u root to log in without a password;

5. After logging in, enter the following commands in sequence:

use mysql;
#View username and password select user, host, authentication from user;
#Change password command

Note: When changing the password, I encountered a situation where root@localhost could not be recognized. I think this is related to the fact that I entered the password correctly but could not log in. It has not been verified yet!

Summarize

This is the end of this article about the quick solution to the problem of forgetting the MySQL8 password. For more relevant content about the solution to forgetting the MySQL8 password, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Problem of retrieving root password in MYSQL 5.7 under Linux (tested and available)
  • How to reset MySQL root password
  • Solution to forgetting mysql database password

<<:  About Docker security Docker-TLS encrypted communication issues

>>:  HTML table tag tutorial (25): vertical alignment attribute VALIGN

Recommend

MySQL 4 common master-slave replication architectures

Table of contents One master and multiple slaves ...

Implementation of MySQL Shell import_table data import

Table of contents 1. Introduction to import_table...

How to install the latest version of docker using deepin apt command

Step 1: Add Ubuntu source Switch to root su root ...

The easiest way to debug stored procedures in Mysql

A colleague once told me to use a temporary table...

Solve the problem of MySQL using not in to include null values

Notice! ! ! select * from user where uid not in (...

Detailed process of NTP server configuration under Linux

Table of contents 1. Environment Configuration 1....

How to set focus on HTML elements

Copy code The code is as follows: <body <fo...

A brief summary of vue keep-alive

1. Function Mainly used to preserve component sta...

Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout This...

Implementation steps of vue-element-admin to build a backend management system

Recently, when I was working on a conference heal...

Getting Started with MySQL - Concepts

1. What is it? MySQL is the most popular relation...

Vue3 (Part 2) Integrating Ant Design Vue

Table of contents 1. Integrate Ant Design Vue 2. ...

Solution to Ubuntu not being able to connect to the Internet

Problem description: I used a desktop computer an...

How to use crontab to add scheduled tasks in Linux

Preface The Linux system is controlled by the sys...

About the garbled problem caused by HTML encoding

Today a junior student asked a question. The HTML...