Linux/Unix/MacOSX : Find out which application is listening to port 80 or use which IP version
Problem :
You need to find out which Linux/Unix or MacOSX applications are listening to port 80( or any other port numbers ). How to do that?
Solution :
Use the lsof
command. lsof
stands for list open files - will lists on console(standard output) the file information opened by processes(programs). An open file may be a regular file, a directory, a block special file, a character special file, an executing text reference, a library, a stream or a network file (Internet socket, NFS file or UNIX domain socket.)
For example :
>sudo lsof -i :80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 1435 root 6u IPv4 10321 0t0 TCP *:http (LISTEN)
nginx 3698 nobody 6u IPv4 10321 0t0 TCP *:http (LISTEN)
From the file descriptor(FD), we can see that the processes use IP version 4. You can filter out lsof
command out further, but specifying which sort of information you want to see.
If you want to list out IPv4 only, then use sudo lsof -i4 :80
For IPv6, use sudo lsof -i6 :80
See also : Unix/Linux : Get reboot history or check when was the last reboot date
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+37.7k Golang : Read a text file and replace certain words
+5.7k Unix/Linux : How to open tar.gz file ?
+4.6k Fix Google Analytics Redundant Hostnames problem
+5.5k Golang : Struct field tags and what is their purpose?
+7.3k Golang : Dealing with struct's private part
+18.3k Golang : Iterating Elements Over A List
+29.1k Golang : Save map/struct to JSON or XML file
+10.8k Golang : Create Temporary File
+8.8k Golang : How to use Gorilla webtoolkit context package properly
+18.8k Golang : Clearing slice
+5.4k Javascript : How to refresh page with JQuery ?
+7k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream