Solve the problem of forgetting password in MySQL 5.7 under Linux

Solve the problem of forgetting password in MySQL 5.7 under Linux

1. Problem

Forgot password for mysql5.7 under linux

2. Solution

• Step 1: Open the mysql5.7 configuration file my.cnf and add a line to it: skip-grant-tables Save and exit (:wq)

[root@iz09a32x1sghz3z ~]# vi /etc/my.cnf

• Step 2: Restart mysql

[root@iz09a32x1sghz3z ~]# service mysqld restart

•Step 3: Log in to mysql and change the password

Log in with the root account: [root@iz09a32x1sghz3z ~]# mysql -u root

Use the mysql database in mysql: mysql> use mysql;

Change password: update user set authentication_string = password("Szfore_68638") where user="root" ;

Refresh the database: flush privileges;

Exit: quit;

Note: The password field in the user table of MySQL 5.7 has been changed to the authentication_string field.

At this time, the command you need to enter is update user set authentication_string = password("Szfore_68638") where user="root";

• Step 4: Open the mysql5.7 configuration file my.cnf, delete the line you just added: skip-grant-tables, save and exit (:wq)
•Step 5: Restart MySQL and log in with the modified password.

[root@iz09a32x1sghz3z ~]# service mysqld restart

Summarize

The above is what I introduced to you about how to solve the problem of forgetting the password of Mysql5.7 under Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • Linux MySQL root password forgotten solution
  • How to modify the root user password in mysql 8.0.16 winx64 and Linux
  • MySQL 8.0.15 installation and configuration graphic tutorial and password change under Linux
  • Solution to forgetting mysql password under linux
  • Several ways to recover forgotten MySQL password under Linux (recommended)
  • Install MySQL database 5.6 source code under Linux and change the login user password
  • A simple way to change the password of mysql just installed in Linux
  • How to reset MySQL root password in Linux (CentOS)
  • How to reset the root password in Linux mysql-5.6

<<:  Basic implementation method of cross-component binding using v-model in Vue

>>:  mysql database to retrieve the statements of seconds, minutes, hours and days before and after

Recommend

React-native sample code to implement the shopping cart sliding deletion effect

Basically all e-commerce projects have the functi...

MySQL optimization query_cache_limit parameter description

query_cache_limit query_cache_limit specifies the...

Docker Compose practice and summary

Docker Compose can realize the orchestration of D...

Linux server quick uninstall and install node environment (easy to get started)

1. Uninstall npm first sudo npm uninstall npm -g ...

Tips for using the docker inspect command

Description and Introduction Docker inspect is a ...

Three Vue slots to solve parent-child component communication

Table of contents Preface Environment Preparation...

Example code of vue + element ui to realize player function

The display without the effect picture is just em...

Shell script to monitor MySQL master-slave status

Share a Shell script under Linux to monitor the m...

How to execute Linux shell commands in Docker

To execute a shell command in Docker, you need to...

Call and execute host docker operations in docker container

First of all, this post is dedicated to Docker no...

React.js framework Redux basic case detailed explanation

react.js framework Redux https://github.com/react...

How to Install Xrdp Server (Remote Desktop) on Ubuntu 20.04

Xrdp is an open source implementation of Microsof...

JavaScript canvas to achieve colorful clock effect

Use canvas to write a colorful clock! 1. Title (1...