Answers for "how to check which process is using a port"

16

find out process using port windows

netstat -ano | findstr 8080
Posted by: Guest on December-09-2019
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
-1

check which application is using port

In Windows CMD/Powershell:
netstat -aon | findstr '[port_number]'
Posted by: Guest on October-02-2020
0

find which service is using port

netstat -aon | findstr<port_number>  

 tasklist | findstr 9260
Posted by: Guest on December-10-2020
7

see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess
Posted by: Guest on April-02-2020
-1

See process on port

netstat -ano | findstr 8080Code language: Bash (bash)
Posted by: Guest on May-12-2021

Code answers related to "how to check which process is using a port"

Browse Popular Code Answers by Language