0

i use Celery with Django on a Debian server. I connect to the server with putty via ssh and start the celery worker with the following command

celery -A django-project worker

Now i would like to close putty but than the celery worker exit apparently. Why and what can i do to always run the celery worker?

Basti G.
  • 411
  • 1
  • 5
  • 26

1 Answers1

2

Start celery daemonized:

celery multi start worker1 -A django-project
2ps
  • 15,099
  • 2
  • 27
  • 47