How to find, in linux, which Process ID is using some TCP port
# lsof -w -n -i tcp:8080
or
# fuser -n tcp 8080
or
# netstat -anp|grep :8080[[:blank:]]
How to find, in linux, which Process ID is using some TCP port
# lsof -w -n -i tcp:8080
or
# fuser -n tcp 8080
or
# netstat -anp|grep :8080[[:blank:]]