I'd like to know which application that is listening on a port on a linux machine.

There are multiple servers, apache and what not on a single machine and I'd like to know which server is listening on which port without having to dig through the configuration files of each server.

Is there a command that lists the path to the executable and which port it is listening on?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

netstat -t -l -p will list the listening ports and the pid and process name that created the socket. Since you have the pid you can use ps PID to find the path to the executable.

link|improve this answer
1  
Run as root on some (all?) systems to get full info. – Duck Feb 1 '10 at 19:28
feedback

Also lsof -i:<port number> should give you the PID of the process and you can use ps <pid> to look up for the path

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.