RabbitMQ

A reliable and mature messaging and streaming broker.

Main Ports

5672 → AMQP (main messaging protocol)

15672 → Web UI (management dashboard)

25672 → Clustering / Erlang distribution

4369 → EPMD (Erlang Port Mapper)

Web UI

Open your browser and go to:  http://<server-ip>:15672

Login Credentials

You’ll find them stored securely in /root/.cloudzy-creds

Default Guest User

RabbitMQ includes a default user:

  • Username:guest
  • Password:guest

This user can only log in from localhost for security reasons.

For remote access, use the admin user you created.

Managing RabbitMQ

systemctl start rabbitmq-server      # Start service
systemctl stop rabbitmq-server       # Stop service
systemctl restart rabbitmq-server    # Restart service
systemctl status rabbitmq-server     # View status

Disable Web UI

rabbitmq-plugins disable rabbitmq_management

 

Application Details