Answers for "find pid using port"

5

linux query port use by pid

$ sudo netstat -nlp | grep :80
tcp  0  0  0.0.0.0:80  0.0.0.0:*  LISTEN  125004/nginx
Posted by: Guest on June-13-2020
0

how to know pid of a port

netstat -aon | find "9999"
Posted by: Guest on May-07-2021
0

get pid running on port

netstat -nlp|grep 9000
Posted by: Guest on June-05-2021
5

process runninng on particular port

sudo ss -lptn 'sport = :80'
Posted by: Guest on June-16-2020
2

linux query port use by pid

$ sudo ss -lptn 'sport = :80'
State   Local Address:Port  Peer Address:Port              
LISTEN  127.0.0.1:80        *:*                users:(("nginx",pid=125004,fd=12))
LISTEN  ::1:80              :::*               users:(("nginx",pid=125004,fd=11))
Posted by: Guest on June-13-2020
0

how to know pid of a port

taskkill /F /PID 15776
Posted by: Guest on May-07-2021

Browse Popular Code Answers by Language