Apacheの再起動で数日間しか正常稼働しなくなった

Wordpressの画面が真っ白だ」報告を受けて、忙しいので「Apacheの再起動で治った\(^o^)/」で済ましていたけど、真っ白になる間隔が短くなってきている。ほぼ毎日になってきた。

apache24\logs\error.log

[Mon Apr 11 12:24:29.093750 2016] [mpm_winnt:warn] [pid 6040:tid 864] (OS 64)指定されたネットワーク名は利用できません。  : AH00341: winnt_accept: Asynchronous AcceptEx failed.

よくあるっぽい。

httpd.conf

#有効にする
Include conf/extra/httpd-mpm.conf

C:\Apache24\conf\extra\httpd-mpm.conf
mpm_winnt_moduleにAcceptFilter 〜EnableMMAP を追加。
>||

# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxConnectionsPerChild: maximum number of connections a server process serves
<IfModule mpm_winnt_module>
    ThreadsPerChild        150
    MaxConnectionsPerChild   0
AcceptFilter http none
AcceptFilter https none
EnableSendfile off
EnableMMAP off
</IfModule>