0

I download rabbitmqadmin from http://localhost:15672/cli/index.html And I installed python and set its path. But when I typed commands of rabbitmqadmin, not working.

python.exe rabbitmqadmin --helps The output is: no such option present

python.exe rabbitmqadmin The output is: action not specified.

python.exe rabbitmqadmin list queue name The output is: Don't know how to list queue.

I don't know why its happening and I also read rabbitmq document, but not able to find its solution.

Biplab Malakar
  • 750
  • 6
  • 11

1 Answers1

1

python.exe rabbitmqadmin --help is the correct command to get help.

python.exe rabbitmqadmin returns action not specified because you have not provided an action like list queues for it to perform. See the --help output as well as the output of python.exe rabbitmqadmin help subcommands.

Please see this gist with several example commands and their output.


NOTE: the RabbitMQ team monitors the rabbitmq-users mailing list and only sometimes answers questions on StackOverflow.

Luke Bakken
  • 8,993
  • 2
  • 20
  • 33