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