Port 9000 — PHP-FPM / SonarQube / Portainer
TCP registered
What runs on port 9000
Shared by several services — most commonly PHP-FPM, but also SonarQube and Portainer.
Security considerations
PHP-FPM on 9000 must never be internet-reachable; it executes arbitrary scripts by design.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :9000
sudo ss -lntp | grep :9000
# Windows
netstat -ano | findstr :9000
Get-NetTCPConnection -LocalPort 9000
# is it reachable from outside?
nc -zv example.com 9000
curl -v telnet://example.com:9000
Freeing the port
# find the process, then stop it
sudo lsof -ti :9000 | xargs kill # Linux / macOS
netstat -ano | findstr :9000 # note the PID, then:
taskkill /PID <pid> /F # Windows