简体   繁体   English

windows RabbitMQ在sbin文件夹中没有rabbitmqadmin

[英]windows RabbitMQ doesnt have rabbitmqadmin in sbin folder

I am working on RabbitMQ in windows environment.Do we have rabbitmqadmin for windows as well?我正在 windows 环境中使用 RabbitMQ。我们也有适用于 windows 的 rabbitmqadmin 吗?

i am not able to find rabbitmqadmin in sbin folder of rabbitmq.我无法在rabbitmq 的sbin 文件夹中找到rabbitmqadmin。

please let me know .请让我知道 。

You will not find rabbitmqadmin in sbin.您不会在 sbin 中找到 rabbitmqadmin。 You need to do following to get it working on windows您需要执行以下操作才能使其在 Windows 上运行

  1. You need python installed on your windows machine.您需要在 Windows 机器上安装 python。 Follow this link to download and install python : https://www.python.org/downloads/按照此链接下载并安装 python: https : //www.python.org/downloads/

  2. Once installed, update system env variable path by adding python installation path to existing value.安装后,通过将 python 安装路径添加到现有值来更新系统 env 变量路径。

  3. Check the installation and path setting has correctly by using this command python .使用此命令python检查安装和路径设置是否正确。 It should open command line editor它应该打开命令行编辑器

  4. Browse to http://{host}:15672/cli/ to download rabbitmqadmin, save it without extension浏览http://{host}:15672/cli/下载rabbitmqadmin,不加扩展保存

  5. Now open the command prompt, change your directory to rabbitmqadmin downloaded directory and execute below command:现在打开命令提示符,将目录更改为 rabbitmqadmin 下载目录并执行以下命令:

    python.exe rabbitmqadmin --help 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!如果您看到帮助显示为响应上述命令,那么您就可以执行各种 rabbitmqadmin 操作了!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM