How to install RabbitMQ on macbook easily?
I spent some time to install RabbiMQ on my macbook and here is how i did it easily. The post will guide you How to install RabbitMQ on macbook easily?
⚠️ the hard way
RabbitMQ is available through Homebrew package manager.
Installation
Before installing make sure the taps are up-to-date:
brew update
Then, install RabbitMQ server with:
brew install rabbitmq
Then you need to add the following to your shell profile (such as ~/.bashrc for bash or ~/.zshrc for zsh)
export PATH=$PATH:/usr/local/sbin
how did you find it does it work for you? 😉
👍 the easy way
Download app from here (huge thanks to jpadilla 👏)
Adding RabbitMQ binaries to your path
Then you need to add the following to your shell profile (such as ~/.bashrc for bash or ~/.zshrc for zsh)
# Add RabbitMQ.app binaries to path
PATH="/Applications/RabbitMQ.app/Contents/Resources/Vendor/rabbitmq/sbin:$PATH"
Now open your browser and visit http://localhost:15672/
Default user
username: guest
password: guest
That’s it for now.
If you liked this article, then please subscribe to my YouTube Channel for video tutorials.