Tutorial on how to modify the root password in MySQL 5.7

Tutorial on how to modify the root password in MySQL 5.7

Version update, the password field in the original user has been changed to authentication_string

Due to version updates, many online tutorials are no longer applicable, and even the official website's documents cannot be operated smoothly.

If MySQL is running, kill it first:

killall -TERM mysqld.

run

mysqld_safe --skip-grant-tables &

If you do not want to be connected remotely at this time: mysqld_safe –skip-grant-tables –skip-networking &

Use mysql to connect to server

change password:

update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';

*One thing to note is that there is no Password field in the user table under the new version of MySQL database.

Instead, the encrypted user password is stored in the authentication_string field

mysql> flush privileges;
mysql> quit;

The modification is completed. Restart

killall -TERM mysqld.
mysqld_safe &

Then mysql can connect

But the operation seems to be incomplete at this time, and you need to alter user...

alter user 'root'@'localhost' identified by '123';

The online article says that this is also possible:

set password for 'root'@'localhost'=password('123');
cp mysql.server /etc/init.d/mysql
chmod +x /etc/init.d/mysql
chkconfig --add mysql

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to modify the root user password in mysql 8.0.16 winx64 and Linux
  • How to correctly modify the ROOT password in MySql8.0 and above versions
  • MySQL 5.6 root password modification tutorial
  • Summary of how to modify the root password in MySQL 5.7 and MySQL 8.0
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • Multiple methods to modify MySQL root password (recommended)
  • How to change the root password in MySQL 5.7
  • Mysql forget the root password and change the root password solution (summary)
  • How to change the root user's password in MySQL

<<:  Vue2/vue3 routing permission management method example

>>:  VMware Workstation Installation (Linux Kernel) Kylin Graphic Tutorial

Recommend

Using nginx + fastcgi to implement image recognition server

background A specific device is used to perform i...

WeChat applet implements user login module server construction

I chose node.js to build the server. Friends who ...

js to realize web music player

This article shares simple HTML and music player ...

Tutorial on deploying springboot package in linux environment using docker

Because springboot has a built-in tomcat server, ...

Examples of using the Li tag in HTML

I hope to align the title on the left and the dat...

HTTP header information interpretation and analysis (detailed summary)

HTTP Header Explanation 1. Accept: Tells the web s...

Let's deeply understand the event object in js

We know that the commonly used events in JS are: ...

Optimizing JavaScript and CSS to improve website performance

<br /> In the first and second parts, we int...

Detailed tutorial on building a private Git server on Linux

1. Server setup The remote repository is actually...

Common shell script commands and related knowledge under Linux

Table of contents 1. Some points to remember 1. V...

Solution to IDEA not being able to connect to MySQL port number occupation

I can log in to MYSQL normally under the command ...

How to build a MySQL high-availability and high-performance cluster

Table of contents What is MySQL NDB Cluster Preli...

Solution to uninstalling Python and yum in CentOs system

Background of the accident: A few days ago, due t...