[Django]-How to run celery beat as daemon?

2👍

Just place this script under /etc/init.d/ and then you will be able to do the service celerybeat {start|stop|restart stuff}.

More doc: https://docs.celeryproject.org/en/stable/userguide/daemonizing.html

👤argaen

0👍

celery -A your-project beat –detach -l info -f beat.log

Leave a comment