Solution to forgetting mysql password under linux

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command mysql -uroot -p, but I forgot the password.

Step 1: Stop the mysql service

There are methods on the Internet to open /etc/my.cnf and modify it, but I didn't find the file in this directory at all. Maybe it’s due to the version!

Enter the command to stop the mysql service: /etc/init.d/mysql stop

Step 2: Start mysql safely and skip the authorization table: mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

Step 3: Reset MySQL password

Input: mysql -uroot -p. You don’t need to enter a password at this time. Just press Enter to enter.

Enter the statement: use mysql, that is, select a database, enter the statement to reset the password, and I found the following problem, which means that the password column is not included

So the authentication_string column should be modified

Then enter the command: flush privileges to refresh the MySQL system privilege related tables. quit Exit mysql

Step 4: Restart the service and enter the newly set password to log in

Restart the mysql service: /etc/init.d/mysql restart

Enter the password and enter mysql.

For more information, please see the topic: MySQL password operation summary

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:
  • How to solve the problem of forgetting MySQL password
  • How to modify mysql user password and how to solve mysql password forgetting
  • Detailed explanation of the solution to forget the root password of mysql in windows environment
  • Solution to forgetting the root password of mysql under windows
  • Solution to forgetting mysql password
  • Mysql forgotten password solution

<<:  js to achieve simple calendar effect

>>:  Implementation of Nginx domain name forwarding

Recommend

Detailed process of building mongodb and mysql with docker-compose

Let's take a look at the detailed method of b...

Explain the difference between iframe and frame in HTML with examples

I don't know if you have used the frameset at...

Details of Linux file descriptors, file pointers, and inodes

Table of contents Linux--File descriptor, file po...

How to understand JS function anti-shake and function throttling

Table of contents Overview 1. Function debounce 2...

How to periodically clean up images that are None through Jenkins

Preface In the process of continuous code deliver...

Idea deployment tomcat service implementation process diagram

First configure the project artifacts Configuring...

Understand the initial use of redux in react in one article

Redux is a data state management plug-in. When us...

Tips on disabling IE8 and IE9's compatibility view mode using HTML

Starting from IE 8, IE added a compatibility mode,...

How many times will multiple setStates in React be called?

Table of contents 1. Two setState, how many times...

How to start a transaction in MySQL

Preface This article mainly introduces how to sta...

A bug fix for Tomcat's automatic shutdown

Preface Recently, a Java EE web project that has ...

JavaScript to implement simple carousel chart most complete code analysis (ES5)

This article shares the specific code for JavaScr...

MySQL 8.0.21 installation and configuration method graphic tutorial

Record the installation and configuration method ...

WeChat applet implements the snake game

This article shares the specific code of the WeCh...