Reputation: 895
I am working on RabbitMQ in windows environment.Do we have rabbitmqadmin for windows as well?
i am not able to find rabbitmqadmin in sbin folder of rabbitmq.
please let me know .
Upvotes: 2
Views: 4624
Reputation: 616
You will not find rabbitmqadmin in sbin. You need to do following to get it working on windows
You need python installed on your windows machine. Follow this link to download and install python : https://www.python.org/downloads/
Once installed, update system env variable path by adding python installation path to existing value.
Check the installation and path setting has correctly by using this command python
. It should open command line editor
Browse to http://{host}:15672/cli/ to download rabbitmqadmin, save it without extension
Now open the command prompt, change your directory to rabbitmqadmin downloaded directory and execute below command:
python.exe rabbitmqadmin --help
If you see the helps are shown in response of above command then you are all set to perform various rabbitmqadmin operations!
Upvotes: 11