Toolman

Port 8443 — HTTPS alternate

TCP registered

What runs on port 8443

The unprivileged counterpart to 443, used by Tomcat and many appliances.

Security considerations

Same exposure as 443 — treat it identically.

Checking whether something is listening

# Linux / macOS — what is bound to the port
sudo lsof -i :8443
sudo ss -lntp | grep :8443

# Windows
netstat -ano | findstr :8443
Get-NetTCPConnection -LocalPort 8443

# is it reachable from outside?
nc -zv example.com 8443
curl -v telnet://example.com:8443

Freeing the port

# find the process, then stop it
sudo lsof -ti :8443 | xargs kill        # Linux / macOS
netstat -ano | findstr :8443            # note the PID, then:
taskkill /PID <pid> /F                    # Windows

Other common ports

All port numbers