rabbitmqctl have the subcommand list_exchanges
to list all the exchanges. How can I create an exchange using rabbitmqctl, as I didn't see the add_exchanges subcommands?
Asked
Active
Viewed 8,817 times
6

cantSleepNow
- 9,691
- 5
- 31
- 42

user1744416
- 171
- 1
- 12
1 Answers
6
Exchanges cannot be created with rabbitmqctl. You can use rabbitmqadmin for that, search for Declare an exchange
on that link.
Additionally exachages can be created "manually" using the web browser with rabbitmq management plugin, or with rabbitmq rest api.

cantSleepNow
- 9,691
- 5
- 31
- 42