【发布时间】:2018-10-13 08:40:03
【问题描述】:
我已将我的 Laravel 5.5 项目上传到 centOS7 服务器。现在我第一次运行“php artisan migrate”加载数据库表时遇到以下错误。
这是我的 .env db 部分
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=event
DB_USERNAME=root
DB_PASSWORD=testpass
我已经在 MySQL 中创建了数据库。
[root@li129-226 event_management]# php artisan migrate
In Connection.php line 664:
SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client (SQL: select * from information_schema.tables where table_schema = event and table_name = migrations)
In Connector.php line 67:
SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client
In Connector.php line 67:
PDO::__construct(): The server requested authentication method unknown to the client [caching_sha2_password]
【问题讨论】:
标签: php mysql laravel laravel-artisan