When I type http://localhost:8080/ in any of my windows browser , I see all the files listed in C:\Program Files\Mozilla Firefox which is my Firefox installation directory. I am not sure which http server is it as I have not installed any webserver myself.

I want to know which http server is running? any suggestion how to detect it ?

link|improve this question
feedback

migrated from stackoverflow.com Aug 20 '11 at 10:21

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 0 down vote accepted

run command

netstat -a -o

you will see a PID of proccess which bind your port. after that you can detect a name of proccess with process manager.

link|improve this answer
Thanks just found out the process id and from that I checked in Task manager that some time back I had downloaded tried to run mongoose http server code.google.com/p/mongoose . But it had failed to start so I was wondering. Thanks – NeilGhosh Aug 19 '11 at 15:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.