Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you identify what web server is running on my localhost:8000?

The web server doesn't start immediately; it starts after a few minutes of a fresh log in. Resource Monitor shows that "System" is listening to port 8000.

I am using Windows 7 Professional. I had XAMMP and Aptana installed but they are removed. I do have Visual Studio 2010 installed, but have not done any web development with it.

Web server on localhost:8000

like image 470
phi Avatar asked Jan 04 '12 16:01

phi


1 Answers

netstat -ao or Sysinternals TCPView list the sockets and the process that opened them. Sysinternals ProcessExplorer shows the process and the services hosted by that process. This should help you track down which process/service is running the web server.

like image 52
Werner Henze Avatar answered Oct 04 '22 06:10

Werner Henze