我已经安装了laravel homestead并运行它。
但是我不能在本地和无业游民中进行迁移。
如果我尝试在无业游民中运行迁移
cd ~/code/project/
php artisan migrate
我遇到错误
could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting TCP/IP connections on port 54320?"
如果我尝试在本地运行迁移,则会出现另一个错误
PDOException::("could not find driver")
我的.env文件包含与doc中编写的代码相同的代码
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=54320
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
也许有些我不理解的东西,但是我在本地和流浪汉中是否需要posgresql?我必须在本地或无业游民的数据库中工作的地方?