Rabbitmqadmin can't open with no error

705 views Asked by At

I installed correctly RabbitMQ. It is working. I also enabled RabbitMQ management plugin with:

rabbitmq-plugins enable rabbitmq_management

after that any rabbitmqadmin commands do not seem to work and no error is displayed :

root@jessie:/usr# rabbitmqadmin --help
root@jessie:/usr# 

what can I do ?

1

There are 1 answers

0
Isuru Dewasurendra On

First you have to make sure you have installed python, check your python version using below commands,

python -V or python3 -V

if it's python 3 you have to change the header of the rabbitmqadmin script as below,

#!/usr/bin/env python3

otherwise it won't work.

Now make sure you give the permission by chmod 777 and run scripts as below,

To list down ques,

./rabbitmqadmin -f tsv -q list queues