Where is rabbitmqctl on macos?

I have installed rabbitmq on my mac.

Unfortunately rabbitmqctl is not available on the command line.

$ rabbitmqctl list_queues
-bash: rabbitmqctl: command not found
2

1 Answer

If you installed from Homebrew you can find the the RabbitMQ server scripts and CLI tools installed in sbin directory under /usr/local/Cellar/rabbitmq, which is accessible via /usr/local/opt/rabbitmq/sbin. In case that directory is not in PATH it's recommend to append it:

export PATH=$PATH:/usr/local/opt/rabbitmq/sbin
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like