Reading the daemonization Celery documentation, if you're running Celery on Linux with systemd, you set it up with two files:
- /etc/systemd/system/celery.service
- /etc/conf.d/celery
I'm using Celery in a Django site with django-celery-beat
, and the documentation is a little confusing on this point:
Django users now uses [sic] the exact same template as above, but make sure that the module that defines your Celery app instance also sets a default value for DJANGO_SETTINGS_MODULE as shown in the example Django project in First steps with Django.
The docs don't just come out and say, put your daemonization settings in settings.py
and it will all work out, bla, bla. From another SO posts this user seems to have run into the same confusion where Django instructions imply you use init.d method.
Bonus point if you can answer if it's possible to run Celery and RabbitMQ both configured and with the Django instance (if that makes sense).
I'm thinking not Celery if only because daemon variables include CELERYD_
and first steps with django say: "...all Celery configuration options must be specified in uppercase instead of lowercase, and start with CELERY_
"