[Django]-Allowing RabbitMQ-Server Connections

59đź‘Ť

âś…

It looks like you need to grant access to the “/myapp” vhost for the “guest” user.

From the docs:

set_permissions [-p vhostpath] {user} {conf} {write} {read}

So something similar to this will give your guest user unlimited access:

rabbitmqctl set_permissions -p /myvhost guest ".*" ".*" ".*"
👤Scott Woodall

Leave a comment