Run CELERY as Daemon in Ubuntu
问题 How to run celery as Daemon service in ubuntu instead of running " celery -A projname worker -l info " command each time. I am using celery 3.1.8 version.... 回答1: You can make celery into a daemon with the init.d script from celery's repo (Save it to /etc/init.d/ ). You will also need to create a configuration file for the script to load in /etc/default/celeryd . Here's the full celery doc. 回答2: You can make celery worker as a daemon using a tool called supervisord. It's a simple process