vinod hy
vinod hy

Reputation: 895

Rabbitmqctl usage to delete Queues

How to

create/delete exchange, create/delete Queues bind/unbind queues

using rabbitmqctl.

Please suggest me.

I am using rabbitmq on windows.

Upvotes: 1

Views: 5453

Answers (1)

Gabriele Santomaggio
Gabriele Santomaggio

Reputation: 22682

With rabbitmqctlyou can't.

You can so that using Management Command Line Tool

The management plugin ships with a command line tool rabbitmqadmin which can perform the same actions as the web-based UI, and which may be more convenient for use when scripting. Note that rabbitmqadmin is just a specialised HTTP client; if you are contemplating invoking rabbitmqadmin from your own program you may want to consider using the HTTP API directly.

Upvotes: 1

Related Questions