Port 15672 (RabbitMQ Web) — What It Is and How to Use It

Port 15672 is the default TCP port used by the RabbitMQ Management Plugin, which provides a web-based user interface for monitoring and managing RabbitMQ brokers. This interface is crucial for administrators to visualize message queues, exchanges, connections, and channels, as well as to perform administrative tasks like adding users and configuring permissions.

Last updated: 2026-06-11

RECOMMENDED

Gear Up: Mechanical Keyboards for Developers

Reduce fatigue and type faster with premium mechanical keyboards. Check out top picks for software engineers.

Shop Developer Gear →
Port Number 15672
Protocol RabbitMQ Web

Common Use Cases

  • Monitoring RabbitMQ cluster health and performance metrics.
  • Managing queues, exchanges, and bindings within the RabbitMQ broker.
  • User and permission management for RabbitMQ access control.
  • Troubleshooting message flow and delivery issues.
  • Sending and receiving test messages directly from the web interface.

Interactive Command Builder

nc -zv example.com 15672

Check if Port 15672 is Open

sudo netstat -tuln | grep 15672
netstat -ano | findstr :15672
⚠️ Security Note: Leaving port 15672 exposed to the public internet without proper authentication and access controls is a significant security risk, as it grants full administrative control over the RabbitMQ instance. It is highly recommended to restrict access to trusted networks or IP addresses and always use strong, unique credentials.

Related Ports

Frequently Asked Questions

Is port 15672 dangerous to leave open?

Yes, leaving port 15672 open to the internet without proper security measures (like strong authentication, IP whitelisting, or VPN access) is very dangerous. It provides a web interface with full administrative control over your RabbitMQ instance, making it a prime target for unauthorized access and potential data compromise or service disruption.

What service uses port 15672?

Port 15672 is used by the RabbitMQ Management Plugin, which provides a web-based user interface for monitoring and managing RabbitMQ brokers. This plugin is an essential tool for administrators to interact with their RabbitMQ deployments.