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
Copy-paste commands to check port 9093 (Kafka (SSL) / Alertmanager) from your terminal
Test connectivity
nc -zv example.com 9093
curl -v --max-time 5 http://example.com:9093/
telnet example.com 9093
nmap -p 9093 -sV example.com
(echo > /dev/tcp/example.com/9093) 2>/dev/null && echo "open" || echo "closed"
Open port in firewall
sudo ufw allow 9093/tcp
sudo iptables -A INPUT -p tcp --dport 9093 -j ACCEPT
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