multi process Daphne with supervisor, getting [Errno 88] Socket operation on non-socket

2021-01-30 Thread Eslam Elhadedy
any Solution for this problem? https://stackoverflow.com/questions/60275656/multi-process-daphne-with-supervisor-getting-errno-88-socket-operation-on-non#_=_ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

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
Christofides http://djangodeployment.com On 2017-09-09 19:27, Jonathan Cheng wrote: > I wrote a Django project and I use supervisor with gunicorn > > > | > /etc/supervisor/conf.d/weather.conf > | > > > > | >     [group:weather_station] >     programs=site >  

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 <jonathan950...@gmail.com> wrote: > I wrote

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

2017-09-09 Thread Jonathan Cheng
I wrote a Django project and I use supervisor with gunicorn /etc/supervisor/conf.d/weather.conf [group:weather_station] programs=site [program:site] directory=$PROJECT command=/home/nhcc/.local/bin/gunicorn -c /$PROJECT/weather_station/ gunicorn.conf.py -p

Re: Configurar Supervisor + Gunicorn + Nginx

2017-05-02 Thread Simon McConnell
https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-16-04 On Tuesday, 2 May 2017 20:34:31 UTC+10, Ariel Gavegno wrote: > > Buenas, necesito saber como configurar Supervisor en un servidor Ubuntu, > de un proyecto Django 1

Configurar Supervisor + Gunicorn + Nginx

2017-05-02 Thread Ariel Gavegno
Buenas, necesito saber como configurar Supervisor en un servidor Ubuntu, de un proyecto Django 1.11. Un ejemplo sería de mucha ayuda. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

Post - Deploy project Django-Nginx,gunicorn,virtualenv and supervisor

2015-07-04 Thread Roberth Solis Martínez
Hi guys in this post i can learn, how to deploy app in server with django :), and i share it with us ! http://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/ -- You received this message because you are subscribed to the Google Groups "Django users&q

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" <kwest...@gmail.com > > wrote: > >> Anyone know an alternative for

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" <kwestamb...@gmail.com> 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 s

Supervisor alternative on Python 3.3.2?

2014-06-05 Thread Kwest Ambani
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 you are subscribed to the Google Groups "Django users" group. To u

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

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

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

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

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

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

supervisor

2013-10-21 Thread Diogene Laerce
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 -- “One original thought is worth a thousand mindless

Re: ANN: django-supervisor: easy integration between django and supervisord

2011-06-08 Thread Ethan Jucovy
of Django's > management scripts. It's called, funnily enough, django-supervisor: > > http://pypi.python.org/pypi/django-supervisor/ > > > The concept is simple: instead of having supervisord in charge of > Django, why not put Django in charge of supervisord? > > &

ANN: django-supervisor: easy integration between django and supervisord

2011-06-07 Thread Ryan Kelly
Hi All, I've just released a little experiment in combining the process management awesomeness of supervisord with the convenience of Django's management scripts. It's called, funnily enough, django-supervisor: http://pypi.python.org/pypi/django-supervisor/ The concept