TCPRegistered PortFirewall: Usually Closed
15672

RabbitMQ Management

What is Port 15672?

Port 15672 is the default port for the RabbitMQ Management Plugin's web interface and HTTP API. The management plugin provides a browser-based UI for monitoring and managing RabbitMQ — viewing queues, exchanges, bindings, connections, channels, and message rates. It also provides an HTTP API for programmatic management and monitoring. The management interface shows real-time message rates, queue depths, consumer counts, and node health metrics. It supports user management, permission configuration, and policy definition. The API is used by monitoring tools, automation scripts, and the rabbitmqadmin CLI tool.

Common Uses

  • RabbitMQ monitoring and administration
  • Queue and exchange management
  • User and permission administration
  • Programmatic RabbitMQ management via HTTP API

Technical Details

Port Number15672
ProtocolTCP
CategoryRegistered
Service NameRabbitMQ Management
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 15672 (RabbitMQ Management) from your terminal

Test connectivity

Netcat (nc)Check if TCP port is reachable
nc -zv example.com 15672
curl (HTTP)Test HTTP response on this port
curl -v --max-time 5 http://example.com:15672/
TelnetBasic TCP port connectivity check
telnet example.com 15672
nmapScan port 15672 with service detection
nmap -p 15672 -sV example.com
Bash /dev/tcpPure bash TCP check (no extra tools needed)
(echo > /dev/tcp/example.com/15672) 2>/dev/null && echo "open" || echo "closed"

Open port in firewall

UFW (Ubuntu / Debian)
sudo ufw allow 15672/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 15672 -j ACCEPT
firewalld (RHEL / CentOS)
sudo firewall-cmd --permanent --add-port=15672/tcp && sudo firewall-cmd --reload

Security Considerations

!

Change the default guest/guest credentials immediately. The management interface provides full control over the message broker. Restrict access to authorized administrators. Use HTTPS by configuring TLS for the management plugin. Implement strong passwords and consider LDAP integration for centralized authentication.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports