How To Daemonize Django Celery Periodic Task On Ubuntu Server?
On localhost, i used these statements to execute tasks and workers. Run tasks: python manage.py celery beat Run workers: python manage.py celery worker --loglevel=info I used otp,
Solution 1:
You can run celery within supervisor: https://pypi.python.org/pypi/supervisor http://thomassileo.com/blog/2012/08/20/how-to-keep-celery-running-with-supervisor/
hth.
Post a Comment for "How To Daemonize Django Celery Periodic Task On Ubuntu Server?"