2013-06-24 1 views
4

Я пытаюсь использовать супервизор с nginx, но я еще не смог добраться до части nginx, потому что я что-то прикрутил с помощью супервизора.Ошибка анонимного завершения работы с запуском супервизора

Я могу запустить

sudo supervisorctl reread 

и он будет говорить "site_demo: доступен". Затем я запускаю

sudo supervisorctl update 

и в нем говорится: «site_demo: обновленная группа процессов». Так что кажется прекрасным. Но тогда я пытаюсь запустить

sudo supervisorctl start site_demo 

и я получаю ошибку

site_demo: ERROR (abnormal termination) 

Вот мой supervisor.conf файл:

; supervisor config file 

[unix_http_server] 
file=/var/run//supervisor.sock ; (the path to the socket file) 
chmod=0700      ; sockef file mode (default 0700) 

[supervisord] 
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log) 
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) 
childlogdir=/var/log/supervisor   ; ('AUTO' child log dir, default $TEMP) 

; the below section must remain in the config file for RPC 
; (supervisorctl/web interface) to work, additional interfaces may be 
; added by defining them in separate rpcinterface: sections 
[rpcinterface:supervisor] 
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface 

[supervisorctl] 
serverurl=unix:///var/run//supervisor.sock ; use a unix:// URL for a unix socket 

; The [include] section can just contain the "files" setting. This 
; setting can list multiple files (separated by whitespace or 
; newlines). It can also contain wildcards. The filenames are 
; interpreted as relative to this file. Included files *cannot* 
; include files themselves. 

[include] 
files = /etc/supervisor/conf.d/*.conf 

А вот demo.conf, в один файл включены в [включить]:

[program:site_demo] 

directory=/home/snorthway/demo/website 

environment=PYTHONPATH=/home/snorthway/python-envs/demo 

command=/home/snorthway/python-envs/demo/bin/python /home/snorthway/demo/website/manage.py runfcgi method=prefork socket=/home/snorthway/eft/demo/fcgi/socket pidfile=/home/snorthway/eft/demo/fcgi/demo.pid minspare=4 maxspare=10 daemonize=false 

redirect_stderr=true 

stdout_logfile=/home/snorthway/eft/demo/logs/demo.fcgi.log 

autostart=true 

user=www-data 

Я проверил, что все пути там существуют и что-то еще, поэтому я не думаю, что это проблема.

Мой лог-файл выглядит следующим образом:

2013-06-24 15:40:23,548 CRIT Supervisor running as root (no user in config file) 
2013-06-24 15:40:23,566 INFO RPC interface 'supervisor' initialized 
2013-06-24 15:40:23,566 WARN cElementTree not installed, using slower XML parser for XML-RPC 
2013-06-24 15:40:23,566 CRIT Server 'unix_http_server' running without any HTTP authentication checking 
2013-06-24 15:40:23,566 INFO daemonizing the supervisord process 
2013-06-24 15:40:23,566 INFO supervisord started with pid 8896 
2013-06-24 16:08:27,262 INFO spawned: 'site_demo' with pid 9221 
2013-06-24 16:08:27,464 INFO exited: site_demo (exit status 0; not expected) 
2013-06-24 16:08:28,469 INFO spawned: 'site_demo' with pid 9226 
2013-06-24 16:08:28,667 INFO exited: site_demo (exit status 0; not expected) 
2013-06-24 16:08:30,672 INFO spawned: 'site_demo' with pid 9231 
2013-06-24 16:08:30,863 INFO exited: site_demo (exit status 0; not expected) 
2013-06-24 16:08:33,870 INFO spawned: 'site_demo' with pid 9240 
2013-06-24 16:08:34,077 INFO exited: site_demo (exit status 0; not expected) 
2013-06-24 16:08:35,079 INFO gave up: site_demo entered FATAL state, too many start retries too quickly 

ответ

4

Ну, если бы я смотрел на demo.fcgi.log я бы понял это давным-давно. Она состояла целиком из этой ошибки:

ERROR: No module named flup 
    Unable to load the flup package. In order to run django 
    as a FastCGI application, you will need to get flup from 
    http://www.saddi.com/software/flup/ If you've already 
    installed flup, then make sure you have it in your PYTHONPATH. 

Так что я сделал

pip install flup 
sudo supervisorctl reread # This may not have been necessary 
sudo supervisorctl update 
sudo supervisorctl start site_demo 

и это сработало!

+0

Привет, где находится этот demo.fcgi.log? Я пытаюсь изучить что-то подобное, но не могу найти этот журнал – vabada

+1

Привет @dabad, это то, что вы установили 'stdout_logfile' в ваш конфигурационный файл (ы) вашего супервизора. Я задал свой вопрос в 'demo.conf', если вы посмотрите в вопросе. Если вы не установили 'stdout_logfile', по умолчанию используется' $ CWD/supervisord.log' (см. Http://supervisord.org/logging.html). Удачи! – snorthway