문제

RABBITMQ에서 대기열을 열거 할 수 있음을 알고 있습니다.

rabbitmqctl list_queues
.

그러나 Pika를 통해 어떻게 할 수 있습니까?

도움이 되었습니까?

해결책

No.

Pika is an AMQP library.

If you want to manage an MQ Broker, then you need an MQ Broker management tool. Fortunately, RabbitMQ comes with such a tool if you install a recent version of RabbitMQ such as 2.7.1 and you install the RabbitMQ management plugins. That gives you a web GUI as well as a RESTful API that you can use in your scripts.

But it's all outside of the scope of AMQP itself.

http://www.rabbitmq.com/management.html for the management plugin with a web GUI and http://www.rabbitmq.com/management-cli.html for a CLI type of interface.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top