Port 9090 — Prometheus
TCP registered
What runs on port 9090
The Prometheus metrics server and web UI.
Security considerations
Prometheus has no authentication of its own. Put it behind a reverse proxy that does.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :9090
sudo ss -lntp | grep :9090
# Windows
netstat -ano | findstr :9090
Get-NetTCPConnection -LocalPort 9090
# is it reachable from outside?
nc -zv example.com 9090
curl -v telnet://example.com:9090
Freeing the port
# find the process, then stop it
sudo lsof -ti :9090 | xargs kill # Linux / macOS
netstat -ano | findstr :9090 # note the PID, then:
taskkill /PID <pid> /F # Windows