how to check wich process is runing on port 80 centos code example
Example 1: linux check what process is using port
$ netstat -ltnp | grep -w ':80'
Example 2: netstat -tulpn | grep :80
netstat -tulpn | grep :80
$ netstat -ltnp | grep -w ':80'
netstat -tulpn | grep :80