Something unknown in 8080 port

gtsolid

Distinguished
Jan 14, 2016
155
0
18,680
Hi everyone.
I had a set of camera using this port. Something invaded port 8080 i used to use and now i have to point to another port to use them.
The problem with camera is solved, but how can i determine what is using 8080? wireshark maybe?
 
Solution
I would;

1. open an administrator command prompt
2. Use netstat -abno > c:\netstat.txt so you get a file on your c: drive you can open with notepad/word pad and get a better look

PS TCPVIEW makes it so easy though
TCPView

Hardcore solution:

C:\> netstat -a -b
(add -n to stop it trying to resolve hostnames, which will make it a lot faster)

-a Displays all connections and listening ports.

-b Displays the executable involved in creating each connection or listening port. In some cases well-known executables host multiple independent components, and in these cases the sequence of components involved in creating the connection or listening port is displayed. In this case the executable name is in [] at the bottom, on top is the component it called, and so forth until TCP/IP was reached. Note that this option can be time-consuming and will fail unless you have sufficient permissions.

-n Displays addresses and port numbers in numerical form.

-o Displays the owning process ID associated with each connection.