Linux – Find the process which occupies a specific port

Either one of the following commands could show you the process which is running a specific port

  • lsof -i :<port>
  • netstat -tulpn | grep :<port>

 

Here is an example on my Ubuntu server.

root@li266-91:~# netstat -tulpn | grep :80
tcp   0   0 0.0.0.0:80   0.0.0.0:*   LISTEN   31024/apache2

Apache is running on port 80.

Done =)

Reference: How do I determine which application is using port 8080?

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.