Questions tagged [django-supervisor]
17 questions
12
votes
4 answers
supervisorctl always reports error: ERROR (no such file)
I deploy my django project with uwsgi、supervisor and nginx.
but I have added my program like above in the /etc/supervisord.conf.
[program:JZAssist]
command=-E uwsgi --ini…

xyxc
- 133
- 1
- 1
- 7
4
votes
1 answer
Make supervisor stop Celery workers correctly
I meet a lot weird thing when using celery. Such as, I update tasks.py, supervisorctl reload(restart), but tasks is wrong. Some tasks seems disappear and so on.
Today I found that because supervisorctl stop all can not stop all celery workers. And…

Mithril
- 12,947
- 18
- 102
- 153
2
votes
0 answers
djanago channels CRITICAL Listen failure: Couldn't listen on 0.0.0.0:x: [Errno 98] Address already in use
I am trying to deploy my ASGI application.
I have followed the exact docs of https://channels.readthedocs.io/en/latest/deploying.html
But when I am checking my logs i am ending up with:
CRITICAL Listen failure: Couldn't listen on 0.0.0.0:x: [Errno…

saibhaskar
- 435
- 6
- 21
2
votes
0 answers
while running supervisorctl reread givin an error
Facing problem on supervisorctl reread
getting this error please help me.
error
raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'supervisor==3.2.0' distribution was not found and is required by the application

gokul krishna
- 21
- 3
2
votes
0 answers
Celery worker dies after random time with IronMQ
Running Django 1.4.10, Celery 3.1.7, Python 2.7, Kombu 3.0.12, and using django supervisor to run both celery worker and celery beat as a daemon. Using IronMQ as the broker.
Everything works fine processing periodic tasks for a number of days, then…

professorDante
- 2,290
- 16
- 26
2
votes
1 answer
How to configure django-supervisord?
I'm trying to write a supervisord.conf for django fastcgi process in webfaction. When I run the command the supervisor immediately exited.
supervisord.conf
[program:celeryd]
command={{ PYTHON }} {{ PROJECT_DIR }}/manage.py celeryd -l info…
user2015673
1
vote
1 answer
"module not found" when running Celery with supervisor
I'm trying to run celery with django using supervisor.
supervisor_celery.conf
[program:supervisor-celery]
command=/home/user/project/virtualenvironment/bin/celery worker -A project…

Gagan Singh
- 200
- 1
- 13
1
vote
2 answers
Ubuntu supervisor import python modules error
Im using supervisor to run the django websocket in system startup .
When I start the supervisor it will raise
ModuleNotFoundError: No module named 'django'
in the log file .
Here is supervisor…

Mehdi bahmanpour
- 574
- 7
- 21
1
vote
1 answer
Is Gosu capable of handling SpriteSheets, either via a plugin/library or natively?
If SpriteSheets can be handled which library would be best to use and can it be done natively?

Skyfall
- 35
- 7
1
vote
1 answer
Start Django-Supervisor From Upstart in Uwsgi script?
using Django-supervisor(https://github.com/rfk/django-supervisor), I am trying to figure out a way to have python myproject/manage.py supervisor --daemonize start when my uwsgi upstart script starts Django.
Here is my uwsgi…

dman
- 10,406
- 18
- 102
- 201
0
votes
0 answers
Getting trouble while deploying Django ASGI application on ubuntu server. NGINX has been used as webserver
I am facing a lot of trouble while deploying my Django ASGI application. I have tried all the solutions out there.
In my ngix/error.log file, the error is:
2020/11/05 21:37:48 [error] 6716#6716: *31 connect() failed (111: Connection refused) while…

Farid Chowdhury
- 2,766
- 1
- 26
- 21
0
votes
1 answer
Supervisor/Gunicorn/Django: supervisor unable to RUN gunicorn ('fixed' on STARTING)
I try to deploy my Django project using Nginx/Gunicorn and supervisor.
When I run gunicorn directly it works:
(envCov) zebra@zebra:~/intensecov_app/intensecov$ gunicorn coverage.wsgi:application
[2020-05-27 09:41:59 +0000] [45637] [INFO] Starting…

SLATER
- 613
- 9
- 31
0
votes
2 answers
nginx ??? not able to access Django's static files
hi i need help with the below:
my static image file does not load when I use nginx/supervisord to start my django app, however when I start using django manage.py the image loads no problem.
I have search many django/nginx static docs to no avail.…

New2Python
- 325
- 1
- 4
- 17
0
votes
1 answer
Django application not running with Gunicorn and Supervisor
I am trying to run a Django application from gunicorn and supervisord. I have configured bash script to run application from gunicorn which is working fine and I am able to see the GUI but when I was trying to start this application from…

mohit
- 2,325
- 23
- 48
0
votes
0 answers
Supervisor problems with django on OSX
I am using django-supervisor and my supervisor configuration is here.
Running python manage.py supervisor works great on my 3 Ubuntu machines, but when I try to run it on my mac (10.10), I have 2 problems with django:
If I add print statements in…

alexarsh
- 5,123
- 12
- 42
- 51