RabbitMQ Installation on Windows

Before installing RabbitMQ , We have to install Erlang.

What is Erlang ?

Erlang is a general-purpose programming language and runtime environment. Erlang has built-in support for concurrency, distribution and fault toleranceErlang is used in several large telecommunication systems from Ericsson.

The RabbitMQ is built on Erlang runtime environment so before we install RabbitMQ, first we need to download and install Erlang in our machines.

Erlang Installation

Following is the link to download and install Erlang on your windows machine.

http://www.erlang.org/downloads



RabbitMQ Installation

After completion of Erlang installation, now we will install RabbitMQ on windows for that download a RabbitMQ setup file from following link for windows.


After opening the above URL, we will get a RabbitMQ setup files information like as shown below. Here we are going to install a RabbitMQ server on windows machine so we will download the windows version like as shown below.

Starting RabbitMQ Server

After completion of installing the RabbitMQ server, we will check the status of RabbitMQ server for that search for RabbitMQ Command Prompt and open it with admin privilege like as shown below.


RabbitMQ Enable Web Management Plugin
To enable a rabbitmq web management plugin on windows, we need to start RabbitMQ Command Prompt with administrator privilege, enter the command “rabbitmq-plugins enable rabbitmq_management” and execute it.

After executing the above web management command, the web management plugins will be enabled and it will show the plugins list which are enabled.

Now you can open open the below url in your  browser for that enter the following URL in browser and click enter.


After opening the localhost URL in browser, it will ask you for credentials to access web management plugin.

To access rabbitmq web management dashboard, the default Username and password of  is “guest” (Username: “guest” | Password: “guest”).






Comments

Popular posts from this blog

Sealed Classes and Interfaces in Java

Introduction of RabbitMQ