Skip to main content

Posts

Showing posts with the label rabbit-mq

Installing Rabbit MQ

Install Rabbit MQ There are many ways to install rabbit-mq as given below. Using Homebrew Homebrew has made the life easy to install the Rabbit-MQ in mac. Please refer below link to install the rabbit MQ. https://www.rabbitmq.com/install-homebrew.html Once it is installed, below command can be executed to start & stop rabbit MQ. Start Rabbit MQ: /usr/local/opt/rabbitmq/sbin/rabbitmq-server Stop Rabbit MQ: /usr/local/opt/rabbitmq/sbin/rabbitmqctl stop Using Docker With docker it's very easy to install, we just need to pull the image and run it by executing simple command. Assuming you already have dcoker installed in your machine, you can install and run rabbit-mq using below steps. Pull rabbit-mq image without management console. docker pull rabbitmq:latest Pull rabbit-mq image with management console. It is required to enable the UI for management console. docker pull rabbitmq:3-management Execute below command to run the image in container named ...