Find the process listening on a specific TCP port (ss)
ss -tlpn 'sport = :8080'
Displays the process name and PID that is actively listening on a given TCP port (e.g., 8080).
ss -tlpn 'sport = :8080'
Displays the process name and PID that is actively listening on a given TCP port (e.g., 8080).