Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have asp.net web application project in visual studio 2012. When I want to start it, I have the following error:

Unable to launch the IIS Express Web server: Port"4012" is in use

This problem came from nothing.How can I resolve it ?

share|improve this question
have you tried to change the port number? -->stackoverflow.com/questions/2920610/… – Edwin Feb 2 at 9:22
@Edwin That should work for development server, not for IIS Express. Or has it been changed now in VS2012? – Steve Feb 2 at 9:32
@steve, Not sure. – Edwin Feb 2 at 9:37
Here's another solution: stackoverflow.com/questions/4968804/… – Edwin Feb 2 at 9:37
It is very strange, yesterday I switched off the computer and all workded fine but today I switched on and this came from nothing. I don't know what to do... – TheChampp Feb 2 at 9:53
show 6 more comments

2 Answers

up vote 3 down vote accepted

From the MSDN library

Visual Studio cannot guarantee that the port you specify will be available when you run your file-system Web site. If the port is in use when you run a page, Visual Studio displays an error message.

To change the port used by IIS Express to run your program you should follow the procedure outlined by this article on MSDN

How to: Specify a Port for the Development Server

In short, we need to edit the file %systemdrive%:\Users\<username>\Documents\IISExpress\config and change the binding information found in this file and change other configurations for the IIS Express.

As a consequence of this not so simple way to fix the problem, I recommend to close the application that tries to use that port access on you dev computer. Look for specific tools like TCPView from Microsoft that could help to spot the application that grabbed your port. Often it is only the browser

share|improve this answer
Now all work without problems after reading msdn.microsoft.com/en-us/library/ms178109%28v=VS.100%29.aspx One last question why this happened from nothing and why I haven't had this problem before. I work with asp.net projects everyday. – – TheChampp Feb 2 at 13:48
Have you found which application was using that port? – Steve Feb 2 at 13:59
With TCPView I found two fields with same port and info: "System 4 TCP owner-PC 4012 owner-PC 0 LISTENING " – TheChampp Feb 2 at 14:12
Perhaps some services installed/activated recently. – Steve Feb 2 at 14:19
Did you have some kind of the same problem ? – TheChampp Feb 2 at 14:20
show 1 more comment

One solution is to delete or clear the history in your browser. Then, restart the Visual Studio and re-run your application.

If this solution doesn't work, then it's time for you to change the port number for your development server (IIS Express).

I hope it helps you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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