Apache - AH00341
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache - AH00341相关的知识,希望对你有一定的参考价值。
1.1.1 现象
启动Apache24,出现如下错误信息:
(OS 64)The specified network name is no longer available. : AH00341: winnt_accept: Asynchronous AcceptEx failed.
1.1.2 原因
是httpd.conf中如下参数配置错误:
<IfModule mpm_winnt.c> ThreadsPerChild 10 MaxRequestsPerChild 10 AcceptFilter http data AcceptFilter https data </IfModule> |
1.1.3 解决
修改为如下配置:
<IfModule mpm_winnt.c> ThreadsPerChild 10 MaxRequestsPerChild 10 AcceptFilter http none AcceptFilter https none </IfModule> |
以上是关于Apache - AH00341的主要内容,如果未能解决你的问题,请参考以下文章