RabbitMQ Deployment (Windows)
Download Erlang/OTP for RabbitMQ. Refer to the following site here; https://www.erlang.org/downloads
Installing RabbitMQ
Install RabbitMQ from here: Release RabbitMQ 3.12.10 · rabbitmq/rabbitmq-server
Open the Rabbitmq download file.
Make sure to install the RabbitMQ as administrator. Run the setup to begin the installation.
Select the Start RabbitMQ service check box from Select Components to Install, then click Finish.
Note
To verify the service is operational, access the Windows search bar typeservices
and locate the RabbitMQ service.
RabbitMQ Management Console Configuration
Open the Windows command prompt or PowerShell and navigate to the RabbitMQ installed location. Perform the following steps:
Press Win + R to open the Run dialog box.
Type cmd for Command Prompt or PowerShell for PowerShell, and press Enter.
In the opened window, type cd, and then copy and paste the following command to navigate to the RabbitMQ installation directory:
C:\Program Files\RabbitMQ Server\rabbitmq_server-3.12.10\sbin
Press Enter, to view the RabbitMQ sbin directory to execute the RabbitMQ commands.
Run the rabbitmq-plugins and execute the following rabbitmq_management command in the Command Prompt:
\rabbitmq-plugins.bat enable rabbitmq_management
rabbitmq-plugins enable rabbitmq_management
Restart the RabbitMQ server. Run the following commands in the PowerShell or command prompt:
.\rabbitmqctl.bat stop
.\rabbitmq-server.bat -detached
rabbitmqctl.bat stop
rabbitmq-server.bat -detached
Open the browser and navigate to http://localhost:15672
Note
If you are unable to start the rabbitMQ management in the web browser, then proceed to execute the following commands:
rabbitmq-service.bat remove
rabbitmq-service.bat install
rabbitmq-service.bat start
Refer to the RabbitMQ website here for installation instructions.
Login using your default user credentials. For example, the username and password are guest.