0
I am testing on my local computer a java application, but I can’t get my application up because port 8080 is being used by some service that I don’t know which is.
How do I know which service is running on door 8080 with the command netstat?
I tried that way, but it didn’t work:
Wladimir@wlady MINGW64 ~/Desktop/anotação sql postgre (master)
$ netstat -nabo
A opera▒▒o solicitada requer eleva▒▒o.
Wladimir@wlady MINGW64 ~/Desktop/anotação sql postgre (master)
$ netstat -nabo | find "8080"
find: ‘8080’: No such file or directory
Wladimir@wlady MINGW64 ~/Desktop/anotação sql postgre (master)
$
i updated my post could take a look please.
– wladyband
It looks like you’re using gitbash. find works on the default Windows cmd, gitbash instead of find, use findstr. Note the message "Opera the requested requires raises", run your command prompt as administrator to avoid problems.
– Kevin Eduard Piske