您的位置:首页 > 数据库 > MySQL

MYSQL ERROR 1862 (HY000): Your password has expired.

2017-02-22 14:07 531 查看
在IDEA里面遇到错误:

The specified user/password combination is rejected:

[HY000][1862] Your password has expired.

To log in you must change it using a client that supports expired passwords.

原因是:

MySQL 5.7.16 introduces password-expiration capability, to enable database
administrators to expire account passwords and require users to reset their password. 

所以只需重新修改下密码即可,修改方式如下:

以root权限登录mysql:(这里我的账户是root,密码也是root)

mysql -u root -p

然后输入自己的密码,之后:

SET PASSWORD = PASSWORD('root');



OK,可以正常使用了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐