I ma starting celery as

python manage.py celeryd

It is working but in foreground . Then to test commands i need to start another terminal and do stuff there.

is there any way to start that in background. I tried this

python manage.py celeryd &

But then again it comes at foreground

link|improve this question

40% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You're looking for celeryd_detach, available since at least 2.4

python manage.py celeryd_detach
link|improve this answer
It worked but is it same as running celeryd . for what purpose celerybeat is used. from now should i use celeryd or celeryd_detach. i thinking of running that on startup – user840891 Jul 12 '11 at 15:58
celeryd is better for development as you can see its output. I run celeryd in a tab within my terminal app, while my editor is in another tab. As for celerybeat, I'd take a look at the docs. ask.github.com/celery/reference/celery.bin.celerybeat.html – Jack M. Jul 12 '11 at 16:03
How do you cleanly restart celery with this approach once you change your code? – Oliver Nov 15 '11 at 0:05
feedback

You can use this to get celeryd to work in the background

$ nohup celeryd start &

The above command pushes the celery daemon to the background.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.