Access control in RabbitMQ

AMQP 0-9-1 Operation configure write read
exchange.declare (passive=false) exchange
exchange.declare (passive=true)
exchange.declare (with [AE](ae.html)) exchange exchange (AE) exchange
exchange.delete exchange
queue.declare (passive=false) queue
queue.declare (passive=true)
queue.declare (with [DLX](dlx.html)) queue exchange (DLX) queue
queue.delete queue
exchange.bind exchange (destination) exchange (source)
exchange.unbind exchange (destination) exchange (source)
queue.bind queue exchange
queue.unbind queue exchange
basic.publish exchange
basic.get queue
basic.consume queue
queue.purge queue

 

Refer:

https://www.rabbitmq.com/access-control.html

https://www.rabbitmq.com/dlx.html

https://www.rabbitmq.com/ae.html

Leave a Comment