TCPRegistered PortFirewall: Usually Closed
9093

Kafka (SSL) / Alertmanager

What is Port 9093?

Port 9093 serves dual purposes in monitoring and streaming infrastructure. In Apache Kafka, port 9093 is commonly used for TLS-encrypted broker connections (the SSL listener). In the Prometheus ecosystem, port 9093 is the default port for Alertmanager, which handles alerts sent by Prometheus and routes them to notification channels like email, Slack, PagerDuty, and webhooks. Alertmanager provides grouping, deduplication, silencing, and inhibition of alerts. Both uses are common in modern cloud-native infrastructure.

Common Uses

  • Prometheus Alertmanager web interface and API
  • Kafka SSL/TLS encrypted broker connections
  • Alert routing and notification management
  • Encrypted event streaming

Technical Details

Port Number9093
ProtocolTCP
CategoryRegistered
Service NameKafka (SSL) / Alertmanager
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 9093 (Kafka (SSL) / Alertmanager) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Alertmanager should be protected with authentication — it can silence alerts, potentially hiding security incidents. Kafka SSL listeners should use strong TLS configurations. Restrict access to both services via network policies and firewall rules.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports