How to change the password of mysql5.7.20 under linux CentOS 7.4

How to change the password of mysql5.7.20 under linux CentOS 7.4

After MySQL was upgraded to version 5.7, its security was greatly improved.

But. . . Can't remember complicated ones. Uh huh. . My brain isn't working well to begin with, so why bother remembering so many complicated things? Especially if it's done locally, it's more convenient to just root.

Enter mysql

mysql> SHOW VARIABLES LIKE 'vali%';
+--------------------------------------+--------+
| Variable_name       
     | Value |
+--------------------------------------+--------+
| validate_password_dictionary_file |
    |
| validate_password_length | 8 
   |
| validate_password_mixed_case_count | 1 
   |
| validate_password_number_count 
   | 1 
   |
| validate_password_policy | MEDIUM |
| validate_password_special_char_count | 1 |
+--------------------------------------+--------+
6 rows in set (0.00
 sec)

According to the official documentation, the strategy is 1, which is MEDIUM

This plugin is installed by default in 5.7. If it is not installed, SHOW VARIABLES LIKE 'vali%' will return empty. The corresponding parameter values ​​are also the default values. The following is an explanation of these values

validate_password_length 8 #
 The minimum password length is 8.
 validate_password_mixed_case_count 1 #
 It must contain at least the number of lowercase or uppercase letters, which is 1 here.
 validate_password_number_count 1 #
 The minimum number of digits to be included, here is 1.
 validate_password_policy MEDIUM #
 Strength level, where its value can be set to 0, 1, 2. Corresponding to:
              【0/LOW】: Only check the length.
              [1/MEDIUM]: Checks numbers, uppercase and lowercase letters, and special characters based on level 0.
              [2/STRONG]: Check the special character dictionary file based on level 1. Here, it is 1.
 validate_password_special_char_count

1 # The minimum number of characters to be included, here is 1.

So the password you change must contain numbers, lowercase letters, uppercase letters, special characters, and be at least 8 characters long

How to change it? ?

To disable this plugin, add

validate_password=off and restart mysqld:

Add in vim /etc/my.cnf configuration file

[mysqld]
validate_password=off

Then restart mysql and it will be ok.

Restart mysqld

#/etc/init.d/mysqld restart ( service mysqld restart )

If you want to change the password back to enter mysql

The database running 5.7 no longer has a password field and uses the authentication_string field instead.

mysql> update mysql.user set authentication_string=password('root') where user='root';

Finally, you also need to set an expiration time to prevent the password from becoming invalid.

Add in the /etc/my.cnf configuration file

[mysqld]
default_password_lifetime=0

Or directly set it through the command

ALTER USER 'script'@'localhost' PASSWORD EXPIRE NEVER

Summarize

The above is the method for changing the password of mysql5.7.20 under Linux CentOS 7.4 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to quickly modify the root password under CentOS8
  • CentOS 7 set grub password and single user login example code
  • How to reset the root password in CentOS7
  • How to modify the root password of MySQL in CentOS environment
  • Solution to the problem of still having to enter a password after configuring ssh password-free login in centos
  • How to install and modify the initial password of mysql5.7.18 under Centos7.3
  • How to change mysql password under Centos
  • CentOS 7 Forgot Password Solution Process Diagram

<<:  Sample code for deploying ELK using Docker-compose

>>:  js realizes packaging multiple pictures into zip

Recommend

How to use nginx to configure access to wgcloud

The nginx configuration is as follows: Such as ht...

CSS3 Bezier Curve Example: Creating Link Hover Animation Effects

We will use CSS3 animated transitions to create a...

MySql Sql optimization tips sharing

One day I found that the execution speed of a SQL...

Three common uses of openlayers6 map overlay (popup window marker text)

Table of contents 1. Write in front 2. Overlay to...

Detailed steps for installing rockerChat in docker and setting up a chat room

Comprehensive Documentation github address https:...

Jenkins Docker static agent node build process

A static node is fixed on a machine and is starte...

Basic ideas for finding errors in Web front-end development

WEB development mainly consists of two interactio...

Steps to build the vite+vue3+element-plus project

Use vite to build a vue3 project You can quickly ...

CSS code to achieve background gradient and automatic full screen

CSS issues about background gradient and automati...

VSCode configuration Git method steps

Git is integrated in vscode, and many operations ...

Reasons and solutions for failure to insert emoji expressions in MySQL

Failure Scenario When calling JDBC to insert emoj...

mysql installer community 8.0.12.0 installation graphic tutorial

This tutorial shares the installation of mysql in...

Differences between this keyword in NodeJS and browsers

Preface Anyone who has learned JavaScript must be...

Avoid abusing this to read data in data in Vue

Table of contents Preface 1. The process of using...