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 ?
|
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 ? |
|||||||||||
|
|
From the MSDN library
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 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 |
|||||||||||
|
|
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. |
|||
|
|