0

我的应用程序已经运行了超过 24 小时,没有任何问题。

我决定尝试将自定义域添加到我的网站。我按照说明进行操作,然后转到我的 Godaddy 面板,将 www 从 @ 更改为 mysite.heroku.com

我去睡觉了,当我今天早上醒来时,我得到了这个错误

An error occurred in the application and your page could not be served. Please try again in a few moments.

如果您是应用程序所有者,请查看您的日志以获取详细信息。”

检查日志后,这是我看到的

2013-03-02T10:22:24+00:00 heroku[web.1]: Process exited with status 1
2013-03-02T10:22:24+00:00 heroku[web.1]: State changed from starting to crashed
2013-03-02T10:22:25+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=vauxden.herokuapp.com fwd="176.251.155.165" dyno= queue= wait= connect= service= status=503 bytes=
2013-03-02T10:22:26+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=vauxden.herokuapp.com fwd="176.251.155.165" dyno= queue= wait= connect= service= status=503 bytes=
2013-03-02T10:22:39+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=vauxden.herokuapp.com fwd="176.251.155.165" dyno= queue= wait= connect= service= status=503 bytes=
2013-03-02T10:22:39+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=vauxden.herokuapp.com fwd="176.251.155.165" dyno= queue= wait= connect= service= status=503 bytes=

我对 ruby​​ on rails 和 heroku 还很陌生,所以我不知道如何解决这个错误。

我还删除了自定义域并在我的 Godaddy 面板中将所有内容更改为正常,但我仍然收到此错误。

我试图推送我的代码的最新版本,但没有任何区别。

4

2 回答 2

0

GoDaddy 可能会让人头疼,我赞同以上开发人员所说的话^。正确加载可能需要一两天的时间,因此在该端寻找问题的根源可能是不可靠的。

检查以确保在 Heroku 方面为您的应用程序正确运行一切。Heroku 的状态看起来不错,https://status.heroku.com/

你的应用在本地测试时没有崩溃?http://localhost:3000/随便

检查您的宝石,其他人似乎也有类似的问题。关联

于 2013-03-02T18:27:41.123 回答
0

heroku run rake db:migrate在部署你的应用程序后执行了吗?

于 2013-03-02T15:49:18.063 回答