Port 1883 — MQTT
TCP registered
What runs on port 1883
Lightweight publish/subscribe messaging for IoT devices.
Security considerations
Unencrypted and often unauthenticated by default. Use port 8883 for MQTT over TLS.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :1883
sudo ss -lntp | grep :1883
# Windows
netstat -ano | findstr :1883
Get-NetTCPConnection -LocalPort 1883
# is it reachable from outside?
nc -zv example.com 1883
curl -v telnet://example.com:1883
Freeing the port
# find the process, then stop it
sudo lsof -ti :1883 | xargs kill # Linux / macOS
netstat -ano | findstr :1883 # note the PID, then:
taskkill /PID <pid> /F # Windows