Answers for "linux show running processes with port"

0

bash list process on port

sudo lsof -i:3000
#Just change the port 3000
Posted by: Guest on February-19-2021
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 "linux show running processes with port"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language