Re: Supervisor FATAl Exited too quickly (process log may have details(About inet_http_server and unix_http_server)

2017-09-10 Thread Antonis Christofides
Hi, add something like --log-file=/var/log/weather_project/gunicorn.log to the gunicorn command line (and make sure Gunicorn has permission to write to that directory), and restart the program. The information you need to locate the problem is usually in that log file. Regards, Antonis Antonis

Re: Supervisor FATAl Exited too quickly (process log may have details(About inet_http_server and unix_http_server)

2017-09-09 Thread Mario Gudelj
Does that Guniorn command run directly from the command line? What's gunicorn.pod? Make sure you can start gunicorn outside of supervisor and then stick that command into conf file. Cheers, M On Sun, 10 Sep 2017 at 2:28 am, Jonathan Cheng wrote: > I wrote a Django project and I use supervisor

Re: Supervisor alternative on Python 3.3.2?

2014-06-06 Thread Kwest Ambani
I'm not sure why I didn't think of that. Thanks! On Thursday, June 5, 2014 11:25:54 PM UTC-5, somecallitblues wrote: > > You can use init instead. > On 06/06/2014 5:09 am, "Kwest Ambani" > > wrote: > >> Anyone know an alternative for Supervisor? I need something to keep >> Gunicorn running in th

Re: Supervisor alternative on Python 3.3.2?

2014-06-05 Thread Mario Gudelj
You can use init instead. On 06/06/2014 5:09 am, "Kwest Ambani" wrote: > Anyone know an alternative for Supervisor? I need something to keep > Gunicorn running in the background. My server is running Python 3.3.2. with > Nginx serving only static files. > > -- > You received this message because

Re: supervisor

2013-10-22 Thread Lukáš Němec
Dne 22. 10. 2013 18:24, Diogene Laerce napsal(a): the trick is to add supervisor command that specifically tells the program to NOT daemonize [program:my_uwsgi] command = /usr/local/bin/uwsgi -i /path/to/config.ini autorestart = True user = your_user config.ini: your standard uwsgi config, bu

Re: supervisor

2013-10-22 Thread Diogene Laerce
the trick is to add supervisor command that specifically tells the program to NOT daemonize [program:my_uwsgi] command = /usr/local/bin/uwsgi -i /path/to/config.ini autorestart = True user = your_user config.ini: your standard uwsgi config, but NO daemonize=logfile path that works perfectly

Re: supervisor

2013-10-22 Thread Diogene Laerce
Are you sure you need one ? Well I need to monitor at least uwsgi to keep the site up. I rely now on monit, it seems ok. Like I asked to Lukas, what do you think of it ? uWSGI Emperor is way more capable (in terms of monitoring and management of bad-behaving apps) and easy to manage (j

Re: supervisor

2013-10-21 Thread Roberto De Ioris
> Hi, > > Anyone could share a good process control system software name to use > with uwsgi ? Apart from supervisor, I couldn't make it work : > - can't stop it only kill it > - bug on supervisorctl reload.. Even when using the last version. > > Thank you > Are you sure you need one ? uWSGI Em

Re: supervisor

2013-10-21 Thread Lukas Nemec
On 10/21/2013 02:51 PM, Diogene Laerce wrote: Thanks for reply. the trick is to add supervisor command that specifically tells the program to NOT daemonize [program:my_uwsgi] command = /usr/local/bin/uwsgi -i /path/to/config.ini autorestart = True user = your_user config.ini: your standard u

Re: supervisor

2013-10-21 Thread Diogene Laerce
Thanks for reply. the trick is to add supervisor command that specifically tells the program to NOT daemonize [program:my_uwsgi] command = /usr/local/bin/uwsgi -i /path/to/config.ini autorestart = True user = your_user config.ini: your standard uwsgi config, but NO daemonize=logfile path tha

Re: supervisor

2013-10-21 Thread Lukas Nemec
On 10/21/2013 02:35 PM, Diogene Laerce wrote: Hi, Anyone could share a good process control system software name to use with uwsgi ? Apart from supervisor, I couldn't make it work : - can't stop it only kill it - bug on supervisorctl reload.. Even when using the last version. Thank you Hi, I