If you are trying to find the process using a particular port in Linux, you can do the following:
lsof -i tcp:2700
The above example will return a list of processes using the TCP port with ID 2700.
Alternatively you can view all open network connections by doing the following:
sudo netstat -nlp




