2017-08-03 105 views
0

每次我嘗試調試我的asp.net網站,我得到這個錯誤:無法啓動IIS快遞Web服務器

Unable to launch the IIS Express Web server.

Failed to register URL " http://localhost:50010/ " for site "SociopackWebAPI" application "/". Error description: The process cannot access the file because it is being used by another process. (0x80070020)

在事件查看器,我注意到在日誌中這樣的錯誤:

The worker process for app pool 'Clr4IntegratedAppPool', PID='13248', failed to initialize the http.sys communication when asked to start processing http requests and therefore will be considered ill by W3SVC and terminated. The data field contains the error number.

我假設這意味着我的Clr4IntegratedAppPool沒有足夠的權限?我該如何解決這個問題?

回答

-1

我有完全相同的問題與VS2017/IIS快遞10 嘗試了一些提示,在論壇上發現&花樣,但唯一一個真正固定的錯誤明確如下: 1)關閉所有Visual Studio實例和IIS Express(如果它正在運行) 2)轉到Windows的「程序和資源」,在已安裝程序的列表中找到IIS Express,然後「卸載」它3)重新啓動計算機,確保所有進程都是關閉 4)從Microsoft下載IIS Express 10獨立安裝程序:https://www.microsoft.com/en-us/download/details.aspx?id=48264 5)安裝它,打開Visual Studio,它應該可以正常工作。

相關問題