rabbitmq命令执行报错command not found
程序员文章站
2022-03-05 20:24:46
...
在mac上安装好rabbitmq之后,要使用rabbitmq的功能常常需要使用一些rabbitmq的命令。
例如启动rabbitmq我们可以执行命令:
rabbitmq-server
要使用rabbitmq的UI我们需要执行命令:
rabbitmq-plugins enable rabbitmq_management
要给rabbit添加用户我们需要用到命令:
rabbitmqctl add_user test test
但是上述命令有时候常常会遇到下面的错误:
rabbitmqctl:command not found
从rabbitmq的文档当中我们得到了下面一段话:
The RabbitMQ server scripts are installed into /usr/local/sbin. This is not automatically added to your path, so you may wish to add PATH=$PATH:/usr/local/sbin to your .bash_profile or .profile. The server can then be started with rabbitmq-server.
其意思就是说,rabbitmq的server的脚本都是安装在我们的sbin目录下的,而这个目录不会自动的添加到我们的系统路径path当中去,因此我们无法执行它相关的命令,而是需要先将rabbitmq的path添加到.bash_profile当中。
在命令行里执行命令:
vi .bash_profile
按i进入编辑模式,加入类似如下的sbin的路径
export PATH=/Users/dr/Documents/tools/rabbitmq_server-3.7.17/sbin/:$PATH
esc退出编辑模式,:wq保存,然后重新启动command工具。
现在就可以在任何地方执行rabbit的命令了。
推荐阅读
-
linux 执行 javac 报错 javac: command not found
-
sudo service: command not found 报错的解决方法
-
覆盖原先的PATH导致命令失效提示command not found的解决方法
-
执行python manage.py makemigrations命令时报错问题及解决办法
-
安装redis 执行make命令时报错解决方法
-
Linux执行find命令报错paths must precede的解决方法
-
svn 没有killall命令的解决方法 -bash: killall: command not found
-
执行命令行LDAP后报错:0:NO"authenticationfailed"问题解决办法
-
Linux—使用man命令:man:command not found
-
mac安装appium时执行appium-doctor命令提示command not found: appium-doctor