Apache - AH00341
启动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>
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。