1

我按照 heroku 的说明仔细部署了 Sinatra 应用程序,但仍然出现问题。如果这有什么不同,我正在使用 sinatra-base 和 sinatra-partial。我在 gemfile 和 myapp.rb 中声明了所有的 gem

我的文件要点

这是我在heroku日志上看到的

2013-06-11T05:09:28.982664+00:00 app[web.1]:    from myapp.rb:49:in `<class:MyApp>'
2013-06-11T05:09:29.148291+00:00 app[web.1]: [2013-06-11 05:09:29] INFO  WEBrick 1.3.1
2013-06-11T05:09:29.148613+00:00 app[web.1]: == Sinatra/1.4.0 has taken the stage on 4567 for production with backup from WEBrick
2013-06-11T05:09:29.148759+00:00 app[web.1]: [2013-06-11 05:09:29] INFO  WEBrick::HTTPServer#start: pid=2 port=4567
2013-06-11T05:09:29.148291+00:00 app[web.1]: [2013-06-11 05:09:29] INFO  ruby 1.9.2 (2011-07-09) [x86_64-linux]
2013-06-11T05:10:26.570140+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2013-06-11T05:10:26.570414+00:00 heroku[web.1]: Stopping process with SIGKILL
2013-06-11T05:10:28.018692+00:00 heroku[web.1]: Process exited with status 137
2013-06-11T05:10:28.033080+00:00 heroku[web.1]: State changed from starting to crashed

在对错误进行了更多研究之后Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch,这可能是因为 gems 需要很长时间才能加载。但是,我只使用这些宝石,所以我不知道它为什么会超时。在本地,启动我的应用程序大约需要 1 秒。

4

1 回答 1

4

Heroku 动态分配端口。当您调用run!myapp.rb 的第 85-97 行中的方法时,您正在端口 4567 上启动应用程序。您应该能够删除这三行并使用 config.ru 启动您的应用程序。

如果您将 heroku gem 添加到您的 Gemfile,您可以删除 Procfile。否则,您应该通过备份启动应用程序:

web: bundle exec rackup config.ru -p $PORT

您还可以将“瘦”添加到您的 Gemfile 并使用这样的 Procfile

web: bundle exec thin start -R config.ru -e $RACK_ENV -p $PORT
于 2013-06-11T18:36:32.570 回答