Gunicorn用pid卡在Booting工作人员:9293

时间:2016-05-19 19:32:38

标签: django nginx gunicorn

我正在尝试为我的项目部署实现nginx + django + gunicorn。我正在接受以下文章的帮助: http://tutos.readthedocs.io/en/latest/source/ndg.html。我按照描述的步骤进行操作。现在,我正在尝试开枪。我在屏幕上得到的是:

$ gunicorn ourcase.wsgi:application
[2016-05-19 19:24:25 +0000] [9290] [INFO] Starting gunicorn 19.5.0
[2016-05-19 19:24:25 +0000] [9290] [INFO] Listening at: http://127.0.0.1:8000 (9290)
[2016-05-19 19:24:25 +0000] [9290] [INFO] Using worker: sync
[2016-05-19 19:24:25 +0000] [9293] [INFO] Booting worker with pid: 9293

因为,我是nginx&的新手。 gunicorn,我不确定上述内容是否有误。我在错误日志中没有得到任何结果

cat /var/log/nginx/error.log 

它在屏幕上不打印任何内容。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:2)

该输出表示进程正在运行。这是你想要的。您应该在运行命令后直接从浏览器访问URL而不按ctrl+c

作为旁注,您可以编写一个bash脚本来执行此操作,这样可以更轻松地向gunicorn命令添加参数。

我有一个能够做到这一点的要点。 https://gist.github.com/marcusshepp/129c822e2065e20122d8

让我知道您可能有哪些其他问题,我会添加评论。