Mysql报错:Your password has expired. To log in

在MySQL 5.7.4到5.7.10版本中,由于默认的密码过期策略,所有密码在360天后将过期。当密码过期时,从不支持过期密码的客户端登录会收到'密码已过期'的提示。为了解决这个问题,可以通过以root用户登录并修改特定客户端或所有用户的密码过期设置来停止自动密码过期。永久禁用此功能,需要在MySQL启动时读取的配置文件中添加相关设置。
摘要由CSDN通过智能技术生成

https://stackoverflow.com/questions/33387879/mysql-password-expired-cant-connect

 

MySQL password expiry

Resetting the password will only solve the problem temporarily. From MySQL 5.7.4 to 5.7.10 (to encourage better security - see MySQL: Password Expiration Policy) the default default_password_lifetime variable value is 360 (1 year-ish). For those versions, if you make no changes to this variable (or to individual user accounts) all passwords expire after 360 days.

So from a script you might get the message: "Your password has expired. To log in you must change it using a client that supports expired passwords."

To stop automatic password expiry, log in as root (mysql -u root -p), then, for clients that automatically connect to the server (e.g. scripts.) change password expiration settings:

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

OR you can disable automatic password expiration for all users:

SET GLOBAL default_password_lifetime = 0;

As pointed out by Mertaydin in the comments, to make this permanent add the following line to a my.cnf file MySQL reads on startup, under the [mysqld] group of settings. The location of my.cnf depends on your setup (e.g. Windows, or Homebrew on OS X, or an installer), and whether you want this per-user on Unix or global:

[mysqld] default_password_lifetime = 0 (There may be other settings here too...)

See the MySQL docs on configuration files.

这个错误意味着你的密码已经过期了,为了登录你必须使用支持过期密码的客户端进行修改[1]。 这个错误通常发生在使用MySQL时,当你的密码已经过期,系统会要求你修改密码才能登录。解决这个问题的方法是执行一些命令来创建日志文件并改变文件的所有者,然后使用支持过期密码的客户端来修改密码。这个问题的原因可能是在安装MySQL过程中,通过mysqld –initialize命令生成临时密码后,没有直接进行MySQL的设置导致的。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [your password has expired.To log in you must change itusing a client that supports expired passwords](https://blog.csdn.net/fenniang16/article/details/81216602)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [MySQL安装手册](https://blog.csdn.net/qq_41244651/article/details/129028912)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [ERROR 1862 (HY000): Your password has expired. To log in you must change it using a …..](https://download.csdn.net/download/weixin_38672731/14838020)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值