Port 1433 — Microsoft SQL Server
TCP registered
What runs on port 1433
The default port for MS SQL Server.
Security considerations
Never expose a database directly to the internet. Put it behind a VPN or a private network.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :1433
sudo ss -lntp | grep :1433
# Windows
netstat -ano | findstr :1433
Get-NetTCPConnection -LocalPort 1433
# is it reachable from outside?
nc -zv example.com 1433
curl -v telnet://example.com:1433
Freeing the port
# find the process, then stop it
sudo lsof -ti :1433 | xargs kill # Linux / macOS
netstat -ano | findstr :1433 # note the PID, then:
taskkill /PID <pid> /F # Windows