who is using my port 8080 code example
Example 1: how to check what is running in port 8080
netstat -a -n -o | find "8080
Example 2: find which service is using port
netstat -aon | findstr<port_number>
tasklist | findstr 9260
netstat -a -n -o | find "8080
netstat -aon | findstr<port_number>
tasklist | findstr 9260