如何在Heroku中启动postgresql服务器?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Heroku中启动postgresql服务器?相关的知识,希望对你有一定的参考价值。
我正在尝试在Heroku上部署我的应用程序,但是在尝试启动数据库之前启动服务器时,我一直得到同样的错误:
psycopg2.OperationalError: could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
通常情况下,我只需键入sudo service postgresql start
即可解决它,但它似乎不适用于Heroku bash。
有什么建议?
答案
您需要检查PostgreSQL插件是否已添加到您的项目中,否则您需要通过运行heroku addons:create heroku-postgresql:hobby-dev
来添加它
有关更多选项,请访问以下链接:https://www.heroku.com/postgres
以上是关于如何在Heroku中启动postgresql服务器?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Flutter+Spring Boot+PostgreSQL+Heroku 结构中发送和存储图像?