Knowledge
  • Read Me
  • Programming
    • ASP.NET
      • .NET Libraries
      • ASP.NET Core
        • Helper
          • Encryption
          • CSV Helper
          • String Helper
        • Logging
          • Simple Serilog
        • Middlewares
          • IP Restrictions
          • Request Throttling
          • Request Logging
        • Console
          • Command Line with arguments
        • JSON
      • ASP.NET Framework
      • Testing
        • Resources
        • xUnit.net
      • Naming Conventions
      • REST API Guidelines
    • Database
      • SQL Style Guide
      • MSSQL
        • Installation
          • Install MSSQL on MacOS M1 (ARM64)
        • Looping
        • Table Valued Functions
        • Session State
        • SQL Cheat Sheet
        • Export Pipe Delimited CSV With cmdshell
      • Redis
        • Redis Installation on Mac OS
        • Redis Installation on Docker
    • Java
      • AWS SDK - SSM
      • mTLS HTTP Connection
      • Read Resource Files
    • Javascript
      • Javascript Libraries
    • Python
    • OpenSSL
      • One Way SSL & Two Way SSL
      • Common OpenSSL Commands
      • Create Self-Signed Certificate
    • Misc
      • Git Commands
      • Windows Commands
      • PowerShell Commands
      • Vulnerabilities Dependency Check
      • Replace Filename Command
      • JSON Web Token (JWT)
      • Rabbit MQ Message-Broker
      • Pandoc Convert Document
  • DevOps
    • What is DevOps
    • CI & CD
    • Azure DevOps
  • Tools
    • Development Tools
Powered by GitBook
On this page
  • RabbitMQ
  • How to Enable Management Interface
  • Reference

Was this helpful?

  1. Programming
  2. Misc

Rabbit MQ Message-Broker

PreviousJSON Web Token (JWT)NextPandoc Convert Document

Last updated 5 years ago

Was this helpful?

RabbitMQ

RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol and has since been extended with a plug-in architecture to support Streaming Text Oriented Messaging Protocol, Message Queuing Telemetry Transport, and other protocols.

How to Enable Management Interface

To enable the management interface, run the RabbitMQ Command Prompt (sbin dir), you can find it in Start menu.

rabbitmq-plugins enable rabbitmq_management

The next thing is that we need to restart the Rabbit MQ server so that it can load the new plugings we just enabled and here is how we'll do that:

rabbitmq-server -detached

After this you can access the management interface locally from the browser by pointing to http://<host>:15672 in your local machine .

Opening the URL in the browser, you'll see a login page, enter guest for both username and password to access the administrative parts.

Reference

Downloading and Installing RabbitMQ
RabbitMQ Tutorials
How to enable RabbitMQ management interface