1

当我尝试直接运行 gunicorn 时,它起作用了:

gunicorn -b 127.0.0.1:8081 ecerp.wsgi --chdir /var/www/django/ecerp_set/demo/ecerp/

但是我在使用马戏团时一直在尝试失败。

[circus]
check_delay = 5
endpoint = tcp://127.0.0.1:5555
pubsub_endpoint = tcp://127.0.0.1:5556
statsd = true

[watcher:ecerp]
cmd = gunicorn
args = -b 127.0.0.1:8081 ecerp.wsgi
working_dir = /var/www/django/ecerp_set/demo/ecerp
send_hup = true

当我运行时circusctl,它表明该应用程序ecerp没有运行:

root@vps3:~# circusctl
circusctl 0.11.1
ecerp: stopped
(circusctl)

请帮我指出哪里错了?搞了半天,非常感谢!

4

1 回答 1

0

我尝试使用马戏团,然后使用 runit,不知何故它只是想不通。那是我转向使用 Systemd 选项的时候

我尝试使用 systemd 选项并且它有效,我已经在这里发布了答案..

https://askubuntu.com/questions/930589/running-upstart-script-on-17-04/1010398#1010398

于 2018-02-28T12:03:17.350 回答