【问题标题】:gunicorn on linode not launchinglinode 上的 gunicorn 未启动
【发布时间】:2012-10-04 20:48:37
【问题描述】:

我正在使用 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 可以完美运行。 有人可以告诉我发生了什么吗?

感谢您的宝贵时间和关心。

杰尼亚·伊夫列夫

【问题讨论】:

    标签: python django nginx gunicorn linode


    【解决方案1】:

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

    【讨论】:

      【解决方案2】:

      尝试使用 --preload 作为 gunicorn_django 的参数运行 - 它应该向您显示工作人员在启动时遇到的错误。见this bug

      【讨论】:

        猜你喜欢
        • 2016-03-20
        • 1970-01-01
        • 2017-10-07
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2021-08-26
        • 2022-08-17
        • 2016-11-08
        相关资源
        最近更新 更多