关于Django / Mezzanine应用程序中Heroku的“内部服务器错误”

时间:2014-09-03 07:13:32

标签: django heroku mezzanine

我正在heroku上部署我的Mezzanine应用程序,我认为我最终设置了大部分内容。

现在,我的应用程序的每个页面都会出现内部服务器错误,并且没有日志提到任何类似错误的内容。本地也有同样的错误。

命令'heroku logs'中的日志如下所示:

2014-09-03T07:07:52.555930+00:00 heroku[web.1]: Starting process with command `g
unicorn wsgi -b 0.0.0.0:30978 -w 1`
2014-09-03T07:07:53.900072+00:00 heroku[web.1]: State changed from starting to u
p
2014-09-03T07:08:27.706884+00:00 heroku[router]: at=info method=GET path="/" hos
t=sheplusplus.herokuapp.com request_id=70b72520-1094-4ed7-83d7-ff44277c603b fwd=
"98.234.178.149" dyno=web.1 connect=2ms service=5ms status=500 bytes=713
2014-09-03T07:08:29.832027+00:00 heroku[router]: at=info method=GET path="/" hos
t=sheplusplus.herokuapp.com request_id=5a32f20e-5244-4f15-9e4b-dadd6b0fcfbb fwd=
"98.234.178.149" dyno=web.1 connect=2ms service=3ms status=500 bytes=713
2014-09-03T07:08:31.720436+00:00 heroku[router]: at=info method=GET path="/" hos
t=sheplusplus.herokuapp.com request_id=9ed6536a-3bb3-4dd9-904c-b2b3f1db2827 fwd=
"98.234.178.149" dyno=web.1 connect=2ms service=3ms status=500 bytes=713

来自Papertrail的日志如下所示:

Sep 03 00:07:48 sheplusplus heroku/web.1:  State changed from up to starting 
Sep 03 00:07:51 sheplusplus heroku/web.1:  Stopping all processes with SIGTERM 
Sep 03 00:07:52 sheplusplus heroku/web.1:  Process exited with status 0 
Sep 03 00:07:52 sheplusplus heroku/web.1:  Starting process with command `gunicorn wsgi -b 0.0.0.0:30978 -w 1` 
Sep 03 00:07:54 sheplusplus heroku/web.1:  State changed from starting to up 
Sep 03 00:08:28 sheplusplus heroku/router:  at=info method=GET path="/" host=sheplusplus.herokuapp.com request_id=70b72520-1094-4ed7-83d7-ff44277c603b fwd="98.234.178.149" dyno=web.1 connect=2ms service=5ms status=500 bytes=713 
Sep 03 00:08:30 sheplusplus heroku/router:  at=info method=GET path="/" host=sheplusplus.herokuapp.com request_id=5a32f20e-5244-4f15-9e4b-dadd6b0fcfbb fwd="98.234.178.149" dyno=web.1 connect=2ms service=3ms status=500 bytes=713 
Sep 03 00:08:31 sheplusplus heroku/router:  at=info method=GET path="/" host=sheplusplus.herokuapp.com request_id=9ed6536a-3bb3-4dd9-904c-b2b3f1db2827 fwd="98.234.178.149" dyno=web.1 connect=2ms service=3ms status=500 bytes=713 

我的procfile看起来像这样:

web: gunicorn wsgi -b 0.0.0.0:$PORT -w 1

我不知道如何开始解决这个问题因为我认为没有错。

1 个答案:

答案 0 :(得分:0)

在当地做:

python manage.py runserver

加载页面时观察输出。它应该在更清晰的消息中公开错误。