[Fixed]-Django Celery RabbitMQ Connection reset by peer

1👍

Based on your debugging feedback, I think you have an authentication issue with the user you setup for yourself. You may want to read-up more on access control here (https://www.rabbitmq.com/access-control.html).

Sounds like it could be a permissions issue.

Here’s the spoiler for you in case the documentation is too confusing at first 🙂

sudo rabbitmqctl set_permissions -p alejoss /  ".*" ".*" ".*"

The RabbitMQ gotcha here for newcomers is that newly created users by default have NO permissions.

Leave a comment