Heroku Django Gunicorn'Foreman Start'错误

时间:2012-09-27 18:30:17

标签: django heroku gunicorn

我正在完成Heroku's Django tutorial,我一直到'Using a different WSIG server'。

当我尝试使用gunicorn时,我收到以下错误:

requirements.txt
Django==1.4.1
distribute==0.6.28
dj-database-url==0.2.1
psycopg2==2.4.5
gunicorn==0.14.6

Procfile
web: gunicorn djtut.wsgi -b 0.0.0.0:$PORT

(venv) C:\Users\xxxx\Documents\Python\djtut>foreman check
valid procfile detected (web)

(venv) C:\Users\xxxx\Documents\Python\djtut>foreman start
10:53:05 web.1  | started with pid 5652
10:53:06 web.1  | exited with code 1
10:53:06 web.1  | Traceback (most recent call last):
10:53:06 system | sending SIGKILL to all processes
10:53:06        |   File "C:\Users\xxxx\Documents\Python\djtut\venv\Scripts\
gunicorn-script.py", line 9, in <module>
(venv) C:\Users\xxxxx\Documents\Python\djtut>    

使用Heroku上的dev服务器正常工作。我在Windows 7上。有什么想法吗?我怀疑这是操作系统问题?

感谢,

AP

1 个答案:

答案 0 :(得分:4)

不幸的是,Gunicorn无法在Windows上运行。