get process running on port code example

Example 1: find out process using port windows

netstat -ano | findstr 8080

Example 2: 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

Example 3: linux check what process is using port

$ netstat -ltnp | grep -w ':80'

Example 4: process runninng on particular port

sudo ss -lptn 'sport = :80'

Example 5: 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))

Example 6: see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess

Tags:

Misc Example