ruby-on-rails – 由于服务器拒绝连接,无法部署到Heroku

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 由于服务器拒绝连接,无法部署到Heroku前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将我的本地Rails应用程序(完美地运行)部署到Heroku,但是收到以下错误消息:
rake aborted!
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?
/tmp/build_21pkcz898c28o/vendor/bundle/ruby/2.0.0/gems/activerecord-3.2.13/lib/active_record/connection_adapters/postgresql_adapter.rb:1216:in `initialize'

其次是关于postgres_adapter的很多行.

我有点失望,因为我认为Heroku覆盖了config / database.yml,所以为什么它谈论在127.0.0.1上运行服务器(我不是在寻找远程数据库)?

谢谢,

更新

如果这有帮助,运行heroku配置将提供以下内容

DATABASE_URL:               xxx
HEROKU_POSTGREsql_GRAY_URL: xxx (the same xxx as above)

解决方法

在您的application.rb中包含以下内容,位于Module Appname上方
config.assets.initialize_on_precompile = false

并阅读Heroku Labs: user-env-compile文章

原文链接:https://www.f2er.com/ruby/270669.html

猜你在找的Ruby相关文章