Answers for "who is using my port 8080"

2

how to check what is running in port 8080

netstat -a -n -o | find "8080
Posted by: Guest on August-24-2020
0

find which service is using port

netstat -aon | findstr<port_number>  

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

Code answers related to "who is using my port 8080"

Browse Popular Code Answers by Language