I run django + celery with celerybeat and I get this error
.../local/lib/python2.7/site-packages/celery/beat.py", line 367, in setup_schedule writeback=True) File "/usr/lib/python2.7/shelve.py", line 239, in open return DbfilenameShelf(filename, flag, protocol, writeback) File "/usr/lib/python2.7/shelve.py", line 223, in __init__ Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback) File "/usr/lib/python2.7/anydbm.py", line 85, in open return mod.open(file, flag, mode) File "/usr/lib/python2.7/dbhash.py", line 18, in open return bsddb.hashopen(file, flag, mode) File "/usr/lib/python2.7/bsddb/__init__.py", line 364, in hashopen d.open(file, db.DB_HASH, flags, mode) DBAccessError: (13, 'Permission denied') [2014-11-05 06:39:20,901: INFO/MainProcess] mingle: all alone
I used python manage.py celeryd -B to execute the celery bit. It seems that working celery is not a problem, but working celerybeat does not initialize. any suggestions as to where I can find the database that celery is trying to access?
I run django = 1.5 and django-celery == 3.1.10
python celery django-celery
srj
source share