您的位置:宽带测速网 > mysql教程 > MySQL密码过期该怎么办

MySQL密码过期该怎么办

2025-06-22 17:06来源:互联网 [ ]

1、报错提示
ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords;
2、解决方法
(1)停止MySQL数据库
(2)以忽略密码方式启动mysql数据库,并进入数据库;
在my.cnf文件中的[mysqld]添加skip-grant-tables参数
(3)进入MySQL的中的mysql库(该命令为多实例进入命令)
[root@host1 data4]# mysql -S /tmp/mysql.sock2
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.16-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>
(4)讲password_expired设置为永不过期,
mysql> update user set password_expired="N" where user="root";
Query OK, 1 row affected (5.06 sec)
Rows matched: 1 Changed: 1 Warnings: 0
(5)退出后,关闭MySQL并注销my.cnf中的skip-grant-tables参数
进入mysql数据库后重新配置密码;