php – 如何在Laravel Homestead中使用postgreSQL

前端之家收集整理的这篇文章主要介绍了php – 如何在Laravel Homestead中使用postgreSQL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以迁移到我的家园.
这是我的.env
DB_CONNECTION=pgsql
DB_HOST=localhost
DB_PORT=54320
DB_DATABASE=intern
DB_USERNAME=homestead
DB_PASSWORD=secret

我在postgresql中创建了一个新的服务器@H_403_5@

server name = Homestead,username = homestead,password = secret.

然后,我做了迁移,并将所有表创建到我的数据库中(server = homestead)
问题是,当我想在我的网站上登录时.它发生错误:@H_403_5@

sqlSTATE[08006] [7] could not connect to server: Connection refused↵  
Is the server running on host "localhost" (::1) and accepting↵  
TCP/IP connections on port 54320?↵could not connect to server: Connection refused↵  
Is the server running on host "localhost" (127.0.0.1) and accepting↵  
TCP/IP connections on port 54320? (sql: select * from "users" where "email" = user@gmail.com limit
您的端口末尾有一个额外的0.将DB_PORT = 54320更改为DB_PORT = 5432
原文链接:https://www.f2er.com/laravel/133894.html

猜你在找的Laravel相关文章