I have a django app for which i am using celery tasks to perform some csv processing in background, and so i installed rabbitmq-server
like sudo apt-get install rabbitmq-server
, by this command the rabbitmq-server was installed and running successfully.
And i have some celery tasks code in tasks.py
module inside an app and running the celery like below
celery -A app.tasks worker --loglevel=info
which was working fine and executing the csv files in background successfully, but now i just want to daemonize the above command, and i searched about any option to daemonize it but i din't found any arguments to pass like -D
to daemonize the above command. So is there anyway that i can daemonize the above command and make celery run ?