0

When setting-up Celery and I want to use scheduling do I add both init scripts below or just the celerybeat one?

https://github.com/ask/celery/blob/master/contrib/generic-init.d/celeryd

https://raw.github.com/ask/celery/master/contrib/generic-init.d/celerybeat

The issue is I have both scripts and Celery does not run in beat mode and scheduling does not work (normal task do?)

GrantU
  • 6,325
  • 16
  • 59
  • 89

1 Answers1

1

Run:

sh -x /etc/init.d/celeryd start

This should print to screen any errors on startup, from this you should see whats going wrong.

Glyn Jackson
  • 8,228
  • 4
  • 29
  • 52