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中如下参数配置错误:

    ThreadsPerChild 10

    MaxRequestsPerChild 10

    AcceptFilter http data

    AcceptFilter https data

1.1.3  解决

修改为如下配置:

    ThreadsPerChild 10

    MaxRequestsPerChild 10

    AcceptFilter http none

    AcceptFilter https none