gpt4 book ai didi

asp.net - 无法启动 IIS Express Web 服务器

转载 作者:行者123 更新时间:2023-12-03 15:57:56 28 4
gpt4 key购买 nike

每次我尝试调试我的 asp.net 网站时,我都会收到此错误:

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 没有足够的权限?我该如何解决这个问题?

最佳答案

IIS Express 无法正常启动的原因之一可能是它要使用的端口被保留。您要使用的端口不会出现在 netstat -an | findstr <your port number> 中如果它不在使用中。
您可以更改您使用的端口或删除保留。
查看保留(提升的命令提示符):netsh int ipv4 show excludedportrange protocol=tcp

Protocol tcp Port Exclusion Ranges

Start Port End Port
---------- --------
80 80
443 443
50000 50059 *

* - Administered port exclusions.
如果未使用 netsh int ipv4 delete excludedportrange protocol=tcp startport=50000 numberofports=60,您可以删除保留范围。 .应回复 Ok.如果您收到 Access denied.这是因为该范围目前正在使用中。您必须关闭使用端口的程序才能创建与范围相交的保留。
如果要再次创建范围,请使用 netsh int ipv4 add excludedportrange protocol=tcp startport=50000 numberofports=60 .
我遇到了这个问题,因为我最近安装了 Hyper-V 和 Docker,而我的 IIS Express 在我的事件日志中抛出了 ID 为 2269 的错误事件: The worker process for app pool 'Clr4IntegratedAppPool', PID='12345', 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.随后是 2276: The worker process failed to initialize correctly and therefore could not be started. The data is the error.我的解决方案来源: Docker for Windows – Port Reservations | Developer Musings

关于asp.net - 无法启动 IIS Express Web 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45480722/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com