标签:blank 微软雅黑 justify target style
启动Apache24,出现如下错误信息:
(OS 64)The specified network name is no longer available. : AH00341: winnt_accept: Asynchronous AcceptEx failed.
是httpd.conf中如下参数配置错误:
<IfModule mpm_winnt.c> ThreadsPerChild 10 MaxRequestsPerChild 10 AcceptFilter http data AcceptFilter https data </IfModule> |
修改为如下配置:
<IfModule mpm_winnt.c> ThreadsPerChild 10 MaxRequestsPerChild 10 AcceptFilter http none AcceptFilter https none </IfModule> |
标签:blank 微软雅黑 justify target style
原文地址:http://lancelot.blog.51cto.com/393579/1784977