uWSGI não será iniciado via Upstart, mas inicia ok a partir do console

3

Estou tentando tornar o uWSGI executado na inicialização usando Upstart em uma caixa Vagrant. Então eu criei /etc/init/uwsgi.conf com o seguinte conteúdo:

# simple uWSGI script

description "uwsgi tiny instance"
start on runlevel [2345]
stop on runlevel [06]            
respawn            
exec /usr/local/bin/uwsgi --ini /vagrant/share/uwsgi.ini

Ele começa ok se eu executar start uwsgi do console, mas não no tempo de inicialização. /var/log/syslog contém o seguinte:

kernel: [    6.234112] init: uwsgi main process (1017) terminated with status 1
kernel: [    6.234122] init: uwsgi main process ended, respawning
...
kernel: [    6.586285] init: uwsgi respawning too fast, stopped

Qual pode ser o problema?

    
por Eugene Yarmash 13.11.2015 / 13:52

0 respostas