[Django]-How to solve celerybeat is down: no pid file found?

8👍

You also need to change permissions of the log directories that celery writes to:

sudo chmod 755 /var/log/celery/ /var/run/celery/
sudo chown root:root /var/log/celery/ /var/run/celery/

Leave a comment