Apache - AH00341: winnt_accept: AcceptEx asynchronous failure

I am using apache for my system. I recently received complaints from a client saying that they cannot access the system. I removed from my server and checked my Apache and its performance. I am trying to run localhost ant, it works fine. I could not find a single problem, and I had nothing else but restarting my Apache. After restarting the system, return to normal. After some digging in the log files, I found something there.

The specified network name is no longer available .: AH00341: winnt_accept: asynchronous AcceptEx failed.

I am trying to do this but cannot find a solution for this. Is there anyone who encounters the same problem earlier and solves this. The following are my server details:

Server 2008 R2 Standard
Apache 2.4 Window
Using an SSL Connection

Any recommendations or links to this link are welcome.

+4
source share
1 answer

This usually happens because some software or driver is inserted into the Windows network stack. You can skip these layers by adding this to 2.4:

AcceptFilter https none

AcceptFilter http none

In older versions, this was disabled by "Win32DisableAcceptEX".

+7
source

Source: https://habr.com/ru/post/1623185/


All Articles