Port 8883 — MQTT over TLS
TCP registered
What runs on port 8883
Encrypted MQTT.
Security considerations
Use this rather than 1883 for anything crossing a network you do not control.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :8883
sudo ss -lntp | grep :8883
# Windows
netstat -ano | findstr :8883
Get-NetTCPConnection -LocalPort 8883
# is it reachable from outside?
nc -zv example.com 8883
curl -v telnet://example.com:8883
Freeing the port
# find the process, then stop it
sudo lsof -ti :8883 | xargs kill # Linux / macOS
netstat -ano | findstr :8883 # note the PID, then:
taskkill /PID <pid> /F # Windows