Port 3000 — Node.js / dev server
TCP registered
What runs on port 3000
The conventional development port for Node.js, Next.js, Rails and Grafana.
Security considerations
A development default, not a production one. Behind a reverse proxy in production.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :3000
sudo ss -lntp | grep :3000
# Windows
netstat -ano | findstr :3000
Get-NetTCPConnection -LocalPort 3000
# is it reachable from outside?
nc -zv example.com 3000
curl -v telnet://example.com:3000
Freeing the port
# find the process, then stop it
sudo lsof -ti :3000 | xargs kill # Linux / macOS
netstat -ano | findstr :3000 # note the PID, then:
taskkill /PID <pid> /F # Windows