Answers for "bash find process using port"

11

ubuntu check process on port

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

bash find process using port

lsof -i :8080
Posted by: Guest on September-20-2021
5

linux see used ports

netstat -tulpn
Posted by: Guest on September-23-2020
0

linux check what process is using port

$ netstat -ltnp | grep -w ':80'
Posted by: Guest on October-12-2020
0

check process on a given port linux

sudo netstat -peanut | grep ":8000 "
Posted by: Guest on September-16-2021

Code answers related to "bash find process using port"

Browse Popular Code Answers by Language