Table of Contents

RabbitMQ Management Commands

Enabling the Management Plugin

To enable the RabbitMQ Management plugin, use the following command:

rabbitmq-plugins enable rabbitmq_management

This command will:

Service Control Commands

To stop the RabbitMQ service:

rabbitmq-service stop

To start the RabbitMQ service:

rabbitmq-service start
  • These commands should be run from the RabbitMQ sbin directory
  • Default location on Windows: C:\Program Files\RabbitMQ Server\rabbitmq_server-4.0.5\sbin
  • The management plugin provides a web interface accessible at http://localhost:15672
  • Default credentials:
    • Username: guest
    • Password: guest

Important

After enabling new plugins, you must restart the RabbitMQ service for changes to take effect:

  1. First stop the service
  2. Then start the service again