I'm trying to install and be able to run rabbitmqadmin on a linux machine. Following the instructions described here do not help.
After downloading the file linked, it prompts to copy the file (which looks like a python script) into /usr/local/bin
.
Trying to run it by simply invoking rabbitmqadmin
results in rabbitmqadmin: command not found
. There seems to be no information anywhere about how to get this to work and assumes that all the steps listed on the site should work for all. It seems odd that simply copying a python script to the bin
folder should allow it to become a recognised command without having to invoke the python interpreter every time.
Any help is appreciated.
RabbitMQ decided to omit one vital piece of information.
Make the script executable with chmod +x
otherwise it will fail to work.