How to reset the root password in Linux mysql-5.6

How to reset the root password in Linux mysql-5.6

1. Check whether the MySQL service is started. If it is started, shut down the MySQL service.

Run the command: ps -ef | grep -i mysql

If it is open, run the shutdown command: service mysqld stop

2. Modify the mysql configuration file my.conf

Generally, in the /etc directory, run the command: vi /etc/my.cnf to edit the file

Add a sentence under the [mysqld] tag in the file: skip-grant-tables

Then press wq! to save and exit.

3. Restart the database

Run the command: service mysqld start

4. Restart the database

Run the command: service mysqld start

5. Enter the mysql database

Run the command: mysql -u root

6. Enter the mysql database

Run the command: mysql -u root

7. Change password

Here is how 5.6 does it

Run statement: use mysql;
Continue to run the statement: update mysql.user set password=password('root_password') where user='root';
Replace root_password with your desired password

Here is how 5.7 does it

Run statement: use mysql;
Continue to run the statement: update mysql.user set authentication_string=password('root_password') where user='root';
Replace root_password with your desired password

8. Delete what was added in step 2, restart the server, and then you can log in to the server using the password you just changed.

mysql -u root -p

At this point, everything is finished.

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:
  • MySQL multi-instance deployment and installation guide under Linux
  • MySQL 8.0.25 installation and configuration tutorial under Linux
  • How to start multiple MySQL databases on a Linux host
  • Steps and pitfalls of upgrading linux mysql5.5 to mysql5.7
  • Solve the problem of no my.cnf file in /etc when installing mysql on Linux
  • Steps to install MySQL using Docker under Linux
  • Detailed explanation of how to manually deploy a remote MySQL database in Linux
  • Detailed explanation of the idea of ​​using mysqldump+expect+crontab to implement mysql periodic cold backup in linux
  • Aliyun Linux compile and install php7.3 tengine2.3.2 mysql8.0 redis5 process detailed explanation
  • How to implement scheduled backup of MySQL in Linux
  • Use MySQL to open/modify port 3306 and open access permissions in Ubuntu/Linux environment
  • MySQL scheduled backup solution (using Linux crontab)
  • Detailed tutorial on installing MySQL database in Linux environment
  • How to automatically backup mysql remotely under Linux
  • Linux MySQL root password forgotten solution
  • Detailed tutorial on installing mysql-8.0.20 under Linux
  • How to use MyCat to implement MySQL master-slave read-write separation in Linux

<<:  Details on how to write react in a vue project

>>:  How to use mysqldump for full and point-in-time backups

Recommend

Vue implements setting multiple countdowns at the same time

This article example shares the specific code of ...

Detailed explanation of JavaScript progress management

Table of contents Preface question principle test...

Analysis of the problem of deploying vue project and configuring proxy in Nginx

1. Install and start nginx # Install nginx sudo a...

Nginx content cache and common parameter configuration details

Use scenarios: The project's pages need to lo...

A quick guide to MySQL indexes

The establishment of MySQL index is very importan...

Web page experience: planning and design

1. Clarify the design direction <br />First,...

A brief discussion on whether too many MySQL data queries will cause OOM

Table of contents Impact of full table scan on th...

Example of implementing load balancing with Nginx+SpringBoot

Introduction to Load Balancing Before introducing...

Vue3.0 implements encapsulation of checkbox components

This article example shares the specific code of ...

Installing MySQL 8.0.12 based on Windows

This tutorial is only applicable to Windows syste...

How to view the status of remote server files in Linux

As shown below: The test command determines wheth...

Steps for importing tens of millions of data into MySQL using .Net Core

Table of contents Preliminary preparation Impleme...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...