RabbitMQ: List Queues – Rabbitmqctl

RabbitMQ is a message-queueing software also known as a message broker or queue manager.

Queue in RabbitMQ is the buffer that stores messages, while message is the information that is sent from the producer to a consumer through RabbitMQ.

In this note i will show how to list queues in RabbitMQ from the command-line using the rabbitmqctl command.

Cool Tip: How to list & create users in RabbitMQ! Read more →

List Queues in RabbitMQ

List queues for the default virtual host:

$ rabbitmqctl list_queues

List queues for the particular vHost:

$ rabbitmqctl list_queues -p <vhostName>
Was it useful? Share this post with the world!

2 Replies to “RabbitMQ: List Queues – Rabbitmqctl”

  1. This ultra basic info is in the help. What it was supposed to solve?

  2. thanks helpful for me

Leave a Reply