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> |
本文转自 tywali 51CTO博客,原文链接:http://blog.51cto.com/lancelot/1784977,如需转载请自行联系原作者