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

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 ·          Scatter Chart ·          Candlestick Chart ·          Radar Chart Here we will create Simple Bar Chart with multiple color based on ranging. Ok We start with coding part now. First of all create your project in Android Studio and add gradle dependency for  MPAndroidChart library  into y

JavaFX WebView- Creating Browser Sample

Hi Friends, In this post, i am going to give an overview about JavaFX WebView . This is an embedded browser component which is based on WebKit . If allow you to use Css, JavaScript, HTML5 and more to customise your embedded browser. The embedded browser enables you to perform the following tasks in your JavaFX applications: Render HTML content from local and remote URLs Obtain Web history Execute JavaScript commands Perform upcalls from JavaScript to JavaFX Manage web pop-up windows Apply effects to the embedded browser  I am going to provide and explain you a sample example to create your embedded browser. This is a JavaFX sample example. if you want to take an introduction about JavaFX please visit my previous blog . I have use IntelliJ Idea IDE for this example. You can visit this link  to understand how to create JavaFX application. I am attaching the project structure image below- In this sample- we have two java class. First

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.DatagramPacket ; import java.net.Datag