Which process uses http-proxy 8080
You can use lsof
to find out the list of processes runing on 8080
lsof -i :8080
You can get more detail about the process throught :
ps -ef | grep put_the _PID_here
If you do—
$ sudo netstat -lnp | grep :8080
you'll get something like
tcp 0 0 192.168.0.1:8080 0.0.0.0:* LISTEN 12345/processname
The number before processname
is the PID of the process listening on that port.