To run RabbitMQ message broker server, run the "rabbitmq-server" command. Run the Celery worker and scheduler by running "celery -A frie worker -l info" and "celery -A frie beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler" respectively to process and schedule Celery tasks using the database scheduler.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
8 views1 page
Running RabbitMQ and Celery Setup
To run RabbitMQ message broker server, run the "rabbitmq-server" command. Run the Celery worker and scheduler by running "celery -A frie worker -l info" and "celery -A frie beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler" respectively to process and schedule Celery tasks using the database scheduler.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
Run rabbitmq server:
rabbitmq-server Run celery worker and scheduler: celery -A frie worker -l info celery -A frie beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler