See Whats Running On Port

[Solved] See Whats Running On Port | Erlang - Code Explorer | yomemimo.com
Question : find out process using port windows

Answered by : busy-boar

netstat -ano | findstr 8080

Source : | Last Update : Mon, 16 Dec 19

Question : see what's running on port

Answered by : lively-lizard-6eo9itefnbjf

netstat -anpe | grep "1234" | grep "LISTEN"

Source : https://www.ibm.com/support/pages/how-can-i-check-if-application-listening-port-and-applications-name | Last Update : Tue, 15 Feb 22

Question : process runninng on particular port

Answered by : sahil-rally

sudo ss -lptn 'sport = :80'

Source : | Last Update : Tue, 23 Jun 20

Question : see what ports are in use

Answered by : frantic-fish-rpmwn4co21lv

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

Source : https://stackoverflow.com/questions/48198/how-can-you-find-out-which-process-is-listening-on-a-port-on-windows | Last Update : Thu, 09 Apr 20

Answers related to see whats running on port

Code Explorer Popular Question For Erlang