我刚刚安装了我的开发环境。
当我尝试通过 SequelPro 连接 mysql db 时,我得到:
Authentication plugin 'caching_sha2_password' cannot be loaded
如中所述:无法加载身份验证插件'caching_sha2_password',我运行:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '';
然后我可以通过 SequelPro 连接我的数据库
但是当我执行 Laravel 命令时:
php artisan migrate
我得到:
PDOException::("PDO::__construct(): Unexpected server respose while doing caching_sha2 auth: 109")
我现在该怎么办 ?
PD:我在 Mac 上使用 Laravel Valet 和 Laravel 5.6。