2017-08-03 108 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,它应该可以正常工作。