UNIX BLOG

Blog for NIX system based administrators

April, 2015

How to find out what programs are listening on ports

The following code will show how to see all the programs that are listening: netstat -tulpn will show what programs are listening on ports. Example: root@myhost:~# netstat -tulpn Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 2393/mysqld tcp 0 0 127.0.0.1:8080 0.0.0.0:* […]

Tags: , , ,

Posted in Linux Administration | No Comments »