在Heroku上部署应用错误

问题描述 投票:1回答:2

我在Heroku上部署了一个基本的应用程序shell,但它给了我这个错误。

应用程序错误在应用程序中发生错误,您的页面无法被服务。请稍后再试。

如果你是应用程序的所有者,请检查你的日志以了解详情。

我运行 "heroku日志",它给了我这个。

2013-06-13T21:02:08.867684+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path=/ host=stark-earth-3664.herokuapp.com fwd="76.222.223.146" dyno= connect= service= status=503 bytes=
2013-06-13T21:02:08.961289+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path=/favicon.ico host=stark-earth-3664.herokuapp.com fwd="76.222.223.146" dyno= connect= service= status=503 bytes=

我对基本的RoR应用所做的唯一改动 就是修改了SQLite gem文件 并添加了DB gem文件。

先谢谢你的帮助。我无法解读Heroku日志......。

J. Olivero

logging heroku
2个回答
0
投票

您的应用程序已经停止 表示您的应用程序可能需要重新启动。尝试运行 heroku restart.


-1
投票

检查您的应用程序的规模 , 也许你得到了网络dynos到0尝试 : $ heroku ps:scale web=1然后 $ heroku打开

© www.soinside.com 2019 - 2024. All rights reserved.