Re: Running a celery worker as a windows service

2018-06-21 Thread Mohammed Noor
Thanks. I solved it by writing a batch file to run the celery worker and creating a windows task to run the batch file. On Thu, Jun 21, 2018 at 4:03 PM, Jason wrote: > there's documentation on this http://docs.celeryproject.org/en/latest/ > userguide/daemonizing.html > > but not sure if they're

Re: Running a celery worker as a windows service

2018-06-21 Thread Jason
there's documentation on this http://docs.celeryproject.org/en/latest/userguide/daemonizing.html but not sure if they're compatible with windows. On Thursday, June 21, 2018 at 3:50:03 AM UTC-4, Mohammed Noor wrote: > > Hello guys, > > I have a celery worker that I need to be running on a server

Running a celery worker as a windows service

2018-06-21 Thread Mohammed Noor
Hello guys, I have a celery worker that I need to be running on a server 24/7. Currently, I am running it in a cmd window. But I need to convert this to a background windows service so that it can run always without the danger of being closed by anyone. Any ideas how this can be done? Regards,