ERROR 1862 (HY000): Your password has expired. To log in you must change it using a .....

ERROR 1862 (HY000): Your password has expired. To log in you must change it using a .....

error message:

ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords

Cause of the problem:

It may be that during the installation of MySQL, after initializing MySQL through mysqld --initialize and generating a temporary password, you did not directly connect to MySQL, restarted the service or restarted the machine, etc., causing the password to become invalid.

Solution:

1. Modify the my.cnf configuration file

vi /etc/my.cnf

2. Restart the mysql service

You can also restart it using service mysqld restart. Since I installed MySQL via the binary source package, this method of starting it currently reports an error. So I restarted using the command in the support-files directory under the installation directory, as shown below

3. Password-less login

4. Same as step 1, delete the newly added skip-grant-tables = 1

5. Same as step 1, restart the mysql service

6. Use the new password root to log in to mysql

Well, this article ends, I hope it will be helpful to you!

You may also be interested in:
  • Oracle prompts that the login password has expired. Perfect solution
  • Solutions to Oracle user password expiration and user lockout
  • Complete solution to oracle password expiration
  • How to deal with the problem of MySQL users forgetting their passwords or password expiration
  • How to change the password expiration time of Oracle database users to never expire
  • Detailed explanation of MySQL user password expiration function
  • Detailed explanation of password expiration in Oracle 11g
  • How to modify Oracle 11G password after 180 days expiration
  • MySQL password expired, resulting in failure to connect to MySQL
  • ORA-28002 Oracle 11g password expiration problem solution

<<:  Graphical tutorial on installing JDK1.8 under CentOS7.4

>>:  Detailed explanation of the use of HTML canvas and page storage technology in JavaScript

Recommend

Mysql sorting to get ranking example code

The code looks like this: SELECT @i:=@i+1 rowNum,...

Implementation of mysql configuration SSL certificate login

Table of contents Preface 1. MySQL enables SSL co...

VMware Workstation virtual machine installation operation method

Virtual machines are very convenient testing soft...

Understanding innerHTML

<br />Related articles: innerHTML HTML DOM i...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

Explanation of Dockerfile instructions and basic structure

Using Dockerfile allows users to create custom im...

Complete steps to configure basic user authentication at the Nginx level

Preface Application scenario: probably the intern...

Web Design TabIndex Element

TabIndex is to press the Tab key to sequentially o...

Understanding and example code of Vue default slot

Table of contents What is a slot Understanding of...

Select does not support double click dbclick event

XML/HTML CodeCopy content to clipboard < div c...

Vue+Websocket simply implements the chat function

This article shares the specific code of Vue+Webs...

MySQL transaction isolation level details

serializable serialization (no problem) Transacti...

Summary of Docker Data Storage

Before reading this article, I hope you have a ba...

How does Vue download non-same-origin files based on URL

Generally speaking, we can have the following two...