Laravel 迁移 Postgres 错误

Adn*_*taz 5 php database postgresql pgadmin laravel-5.3

嗨,我想将 Laravel 与 postgres 数据库连接。

当我跑步时

php artisan migrate
Run Code Online (Sandbox Code Playgroud)

它给了我这个错误。

[Illuminate\Database\QueryException]                                                                                                                                                    
SQLSTATE[08006] [7] expected authentication request from server, but received J (SQL: select * from information_schema.tables where table_schema = public and table_name = migrations)  



[Doctrine\DBAL\Driver\PDOException]                                              
SQLSTATE[08006] [7] expected authentication request from server, but received J  
Run Code Online (Sandbox Code Playgroud)

小智 5

对我来说,问题是我忘记将端口从 3306 更改为 5432


小智 1

请检查您是否输入了正确的 pgsql 数据库凭据。

谢谢!