Answers for "find process with port ubuntu"

11

ubuntu check process on port

sudo lsof -i:22
Posted by: Guest on May-19-2020
0

list which process is running on specific port ubuntu

sudo netstat -ltnp | grep -w ':80' 
#port_number: 80
#output: tcp6       0      0 :::80                   :::*                    LISTEN      1907/nginx: master
Posted by: Guest on June-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language