Port 443 — HTTPS
TCP well-known
What runs on port 443
Encrypted web traffic. The default for essentially all modern web services, and the transport for HTTP/2 and HTTP/3.
Security considerations
HTTP/3 runs over QUIC on UDP 443 — if you firewall only TCP, HTTP/3 silently fails and clients fall back.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :443
sudo ss -lntp | grep :443
# Windows
netstat -ano | findstr :443
Get-NetTCPConnection -LocalPort 443
# is it reachable from outside?
nc -zv example.com 443
curl -v telnet://example.com:443
Freeing the port
# find the process, then stop it
sudo lsof -ti :443 | xargs kill # Linux / macOS
netstat -ano | findstr :443 # note the PID, then:
taskkill /PID <pid> /F # Windows