I would like to set up a simple python app as a periodic celery task on an Ubuntu instance. I have followed the Celery documentation to set up the structure as recommended:
proj/__init__.py
/celery.py
/tasks.py
This works fine and I can run the periodic task from ../proj using:
celery worker -B --app=proj
I then copied in the celeryd and celerybeat files and edited the default files.
When I start the daemon, however, celeryd runs but does not seem to find the celery.py config and logs a connection refused error.
I think it must be related to the paths in:
#/etc/default/celeryd:
# Where to chdir at start.
CELERYD_CHDIR="/home/user/"
CELERY_CONFIG_MODULE="/home/user/proj"
I have left the other settings as specified in the docs, apart from changing the CELERYD_USER.
I feel I should be using --app in the config as well and perhaps specifying my python environment but I'm not sure where or how (I'm not running a virtual env).