Skip to main content

RabbitMQ Setup on Windows

This tutorial will help you to Setup RabbitMQ on Windows machine. You must have administrative privileges to install the application on your Windows machine.
Before proceeding, please read two main prerequisite from the official site of the RabbitMQ -
Important:
  1. The Erlang installer must be run using an administrative account otherwise a registry key expected by the RabbitMQ installer will not be present.
  2. Your system should only have one version of Erlang installed. Please consult the Windows-specific Issues page.
RabbitMQ runs on the ErLang platform, so first we need to download and install ErLang(Also known as OTP) on the system. Please download the required version of the ErLang/OTP from the official site and simply install it as Admin. I have downloaded OTP version 22.3 of 64 bit windows installer file.

Once ErLang install, please download the RabbitMQ from the official site and then install it with admin privileges. I have downloaded RabbitMQ version 3.8.3 of 64-bit windows installer file.
Now open RabbitMQ Command Prompt from start menu as Admin and run rabbitmqctl status command. If you see command result like below means your RabbitMQ is installed well and running. But you would not be able to access the RabbitMQ dashboard yet.
Enabling RabbitMQ Web Management
To enable the web management dashboard, run below command from RabbitMQ Command Prompt -
rabbitmq-plugins enable rabbitmq_management

Now open url http://localhost:15672 on your browser. You would see a login screen. Please enter guest as username and password. This is the default credential of RabbitMQ(Recommended to change the credential after login). You will see the RabbitMQ dashboard.
This is how you can setup RabbitMQ on your Windows machine.
Hope this will help you. Suggestions are most welcome. Keep visiting my blog :)

Comments

Popular posts from this blog

app-policy

PRIVACY POLICY Last updated April 19, 2023 This privacy notice for Team CoderzDuniya ( " Company ," " we ," " us ," or " our " ), describes how and why we might collect, store, use, and/or share ( " process " ) your information when you use our services ( " Services " ), such as when you: Download and use our mobile application ( Revenue Calculator) , or any other application of ours that links to this privacy notice Engage with us in other related ways, including any sales, marketing, or events Questions or concerns?  Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services. If you still have any questions or concerns, please contact us at droidamar007@gmail.com . SUMMARY OF KEY POINTS This summary provides key points from our privacy notice, but you can find out more details about any of these t...

Java Socket Basics(Socket Programming in Java) Part-2(UDP)

Hi friends, We are going to discuss about UDP Socket Programming . In previous post  we discussed about the differences between TCP & UDP and the sample example of TCP Socket Programming. Below is the sample example of chat application using UDP  Socket Programming . UDP Sample :-  We are going to create an small example which contains two classes. UdpServer.java:-  This is a server class. Means this class will serve the purpose of socket connection. DatagramSocket is the java class and serve the purpose of Server and Client both. The overloaded constructor of DatagramSocket class matters. DatagramPacket is the java class which is responsible to transmit the data/packet over the network from server to client and vice-versa. UdpClient.java:-  This is client class. This serves the purpose of client which will communicate to server and send data to server and receive the data sent by server. UdpServer.java import java.net.DatagramPac...

Working with MPAndroidChart (how to create Bar Chart using MPAndroidChart)

Hi Friends, In this tutorial i am going to show, "How to create Bar Chart using MPAndroidChart". There is a lot of libraries for creating charts in android like AChartEngine, MpAndroidChart, AndroidPlot etc. Your first question may be, Why MPAndroidChart. So MpAndroidChart provides better animation functionality and easy to use in comparision. Using  MPAndroidChart library  we can draw a: ·          Simple Bar Chart ·          Grouped Bar Chart ·          Horizontal Bar Chart ·          Simple Line Chart ·          Line Chart with Cubic Lines ·          Grouped Line Chart ·          Combined Line and Bar Chart ·          Pie Chart ·...