您的位置:首页 > 运维架构 > Apache

Apache - AH00341

2016-05-31 00:00 489 查看

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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: