2

我正在使用 gunicorn 来部署我的 python web 应用程序。

当我使用此命令 gunicorn_django -c gunicorn.conf.py 启动它时,我收到此错误:

root@localhost:/var/www/map01# gunicorn_django -c gunicorn.conf.py
2012-10-14 20:11:32 [4594] [INFO] Starting gunicorn 0.14.6
2012-10-14 20:11:32 [4594] [INFO] Listening at: http://127.0.0.1:8888 (4594)
2012-10-14 20:11:32 [4594] [INFO] Using worker: sync
2012-10-14 20:11:32 [4597] [INFO] Booting worker with pid: 4597
2012-10-14 20:11:32 [4598] [INFO] Booting worker with pid: 4598
2012-10-14 20:11:32 [4599] [INFO] Booting worker with pid: 4599
2012-10-14 15:11:32 [4597] [INFO] Worker exiting (pid: 4597)
2012-10-14 15:11:32 [4598] [INFO] Worker exiting (pid: 4598)
2012-10-14 15:11:32 [4599] [INFO] Worker exiting (pid: 4599)
Traceback (most recent call last):
  File "/usr/local/bin/gunicorn_django", line 9, in <module>
    load_entry_point('gunicorn==0.14.6', 'console_scripts', 'gunicorn_django')()
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/app/djangoapp.py", line 132, in run
    DjangoApplication("%prog [OPTIONS] [SETTINGS_PATH]").run()
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 124, in run
    Arbiter(self).run()
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 185, in run
    self.halt(reason=inst.reason, exit_status=inst.exit_status)
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 280, in halt
    self.stop()
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 328, in stop
    self.reap_workers()
  File "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 419, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>

这是 gunicorn.conf.py 文件:

bind = u"127.0.0.1:8888"
logfile = u"/var/www/map00/gunicorn.log"
workers = 3

在我的个人电脑上,gunicorn 可以完美运行。有人可以告诉我发生了什么吗?

感谢您的时间和亲切的关心。

耶尼亚·伊夫列夫

4

2 回答 2

0

尝试将 with--preload作为参数运行gunicorn_django- 它应该向您显示工作人员在启动时遇到的错误。看到这个错误

于 2014-04-10T07:15:38.310 回答
0

检查运行 gunicorn_django 的用户是否对您的日志文件具有写入权限

于 2012-12-21T15:47:06.050 回答