Rabbitmqctl: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Overview == Rabbitmqctl 내용 정리 == list_exchanges == 등록되어 있는 모든 exchange 내용을 보여준다. <pre> list_exchanges [-p <vhost>] [<exchangeinfoitem...") |
|||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
Rabbitmqctl 내용 정리 | Rabbitmqctl 내용 정리 | ||
== list_bindings == | |||
현재 등록되어 있는 모든 binding 을 보여준다. | |||
<pre> | |||
list_bindings [-p <vhost>] [<bindinginfoitem> ...] | |||
</pre> | |||
=== Example === | |||
<pre> | |||
$ sudo rabbitmqctl list_bindings | |||
Listing bindings ... | |||
exchange hello queue hello [] | |||
exchange task_queue queue task_queue [] | |||
</pre> | |||
== list_exchanges == | == list_exchanges == | ||
Line 8: | Line 22: | ||
</pre> | </pre> | ||
=== | === Example === | ||
<pre> | <pre> | ||
$ sudo rabbitmqctl list_exchanges | $ sudo rabbitmqctl list_exchanges |
Revision as of 20:41, 8 December 2018
Overview
Rabbitmqctl 내용 정리
list_bindings
현재 등록되어 있는 모든 binding 을 보여준다.
list_bindings [-p <vhost>] [<bindinginfoitem> ...]
Example
$ sudo rabbitmqctl list_bindings Listing bindings ... exchange hello queue hello [] exchange task_queue queue task_queue []
list_exchanges
등록되어 있는 모든 exchange 내용을 보여준다.
list_exchanges [-p <vhost>] [<exchangeinfoitem> ...]
Example
$ sudo rabbitmqctl list_exchanges Listing exchanges ... amq.headers headers direct amq.match headers amq.direct direct amq.rabbitmq.trace topic amq.rabbitmq.log topic amq.fanout fanout amq.topic topic