qq_39615275的博客通过本文主要向大家介绍了password has expired,password expired,password is expired,error ticket expired,mysql expired等相关知识,希望本文的分享对您有所帮助
遇到错误:
ERROR 1862 (HY000): Your password has expired. To log in you must
change it using a client that supports expired passwords.
原因是:
MySQL 5.6 introduces password-expiration capability, to enable database administrators to expire account passwords and require users to reset their password.
所以只需重新修改下密码即可,修改方式如下:
以root权限登录mysql:(这里我的账户是root,密码也是root)
mysql -uroot -proot
然后更改密码:
SET PASSWORD = PASSWORD('root');
OK,可以正常使用了。