错误信息提示:
LARAVEL HOMESTEAD SQLSTATE[HY000] [1862] 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,密码是空)
mysql -uroot -p
然后更改密码:
SET PASSWORD = PASSWORD(”);
然后重新访问数据库即可。
转载请注明:苏demo的别样人生 » LARAVEL HOMESTEAD SQLSTATE[HY000] [1862] Your password has expired. To log in you must change it using a client that supports expired passwords