IIS Express Web Server - (Every) Port is in Use?

心已入冬 提交于 2019-12-03 01:54:14

If you are using ESET NOD32 Anti Virus, you need to change the setting of "Web access protection" => HTTP, HTTPS => Web browsers => red cross the check box of your devnev.exe (This is three state checkboxs, click the check box until red cross appeared)

I have just installed VS 2010 SP1, using the above setting to tell NOD32 to leave 'IIS Express' alone.

Reference: http://weblogs.asp.net/anasghanem/archive/2009/02/01/nod32-antivirus-is-blocking-visual-studio-built-in-development-server.aspx

What version OS are you using? Are you able to start IIS Express from command line? Could you try the following and post the error message you are seeing.

  1. Remove IISExpress directory located under 'My documents' folder

  2. Go to IIS Express installation folder '%programfiles%\IIS Express' (on 64-bit machine '%programfiles(x86)\IIS Express') and try to start iisexpress.exe from command line (without passing any arguments)

I had a similar problem. It seems that if IIS Express is already running a particular site and then you try to run a project that uses that site through Visual Studio it isn't able to attach the debugger. The solution was to close any running instances of IIS Express and WebMatrix and then try running the site through Visual Studio (F5).

I recommend installing WebMatrix as it's the simplest way of managing the sites and port numbers that you are using.

Bir Singh

I have the same problem in the visual studio 2012.

I am creating a sharepoint app for the SharePoint 2013 and it happened after some days means it was working before then I got the error:

" Unable to Launch IIS web Server " "port 62308 in use.

To fix this I just went to the settings of the web project by right clicking on the project node in in right panel under the project solution tab. Change the port number and configure the virtual directory and it worked for me.

Hope it work for anyone else in case he/she has any problem.

1- Close Visual Studio.

2- Delete IIS Express folder in Documents or edit applicationhost.config:

<bindings>
  <binding protocol="http" bindingInformation=":8080:localhost" />
</bindings>

3- Delete solution file.

4- Start Visual Studio and use open website.

5- Choose your website folder.

You may uninstall IIS 5, or simply configure your IIS 5 web site to use a port other than 80.

IIS Express tries to use port 80, which leads to the conflict.

If any body still facing the same issue ... even after trying all the above steps try the following simple steps...

1) close all other applications

2) Download TcpView application from

http://technet.microsoft.com/en-gb/sysinternals/bb897437.aspx

3) run the application, check the localport column and see who is using that specific port and end that task

That will solve your problem ... :)

go to solution explorer, right click on the present Application then go to properties, now click on web scroll the mouse and change the port no. from project localhost:1257 NOW RUN IT...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!