当前位置:网站首页>Apache service suspended asynchronous acceptex failed
Apache service suspended asynchronous acceptex failed
2022-07-03 17:04:00 【Brother Xing plays with the clouds】
Recently in use PHP5.6+Apache2.4, Build development environment ; Found in the actual development process http Request consistency is pending , So restart (net start/stop)Apache2.4 service , Then the access problem is solved , But after a while , There is a problem when opening the ordinary page , By looking at web The server Log , Found a lot of reports " The specified network name is no longer available " Error of :
[Thu Nov 20 14:07:43.151780 2014] [mpm_winnt:warn] [pid 8752:tid 1132] (OS 64) The specified network name is no longer available . : AH00341: winnt_accept: Asynchronous AcceptEx failed.
[Thu Nov 20 14:07:43.152781 2014] [mpm_winnt:warn] [pid 8752:tid 1132] (OS 64) The specified network name is no longer available . : AH00341: winnt_accept: Asynchronous AcceptEx failed.
[Thu Nov 20 14:07:43.152781 2014] [mpm_winnt:warn] [pid 8752:tid 1132] (OS 64) The specified network name is no longer available . : AH00341: winnt_accept: Asynchronous AcceptEx failed.
[Thu Nov 20 14:07:43.152781 2014] [mpm_winnt:warn] [pid 8752:tid 1132] (OS 64) The specified network name is no longer available . : AH00341: winnt_accept: Asynchronous AcceptEx failed.
[Thu Nov 20 14:07:43.152781 2014] [mpm_winnt:warn] [pid 8752:tid 1132] (OS 64) The specified network name is no longer available . : AH00341: winnt_accept: Asynchronous AcceptEx failed.
Find all kinds of information on the Internet , It's all about being here httpd.conf Add... To the file Win32DisableAcceptEx Mark :
<IfModule mpm_winnt.c>
ThreadsPerChild 150
MaxRequestsPerChild 10000
Win32DisableAcceptEx
</IfModule>
The problem remains unsolved after configuration , Final view Apache Manuals (PS: View the latest Apache2.4 Manuals ), See the official explanation below :
The default values on Windows are: AcceptFilter http data AcceptFilter https data
Window's mpm_winnt interprets the AcceptFilter to toggle the AcceptEx() API, and does not support http protocol buffering. There are two values which utilize the Windows AcceptEx() API and will recycle network sockets between connections. data waits until data has been transmitted as documented above, and the initial data buffer and network endpoint addresses are all retrieved from the single AcceptEx() invocation. connect will use the AcceptEx() API, also retrieve the network endpoint addresses, but like none the connect option does not wait for the initial data transmission.
On Windows, none uses accept() rather than AcceptEx() and will not recycle sockets between connections. This is useful for network adapters with broken driver support, as well as some virtual network providers such as vpn drivers, or spam, virus or spyware filters.
Add the following information to the configuration file :
AcceptFilter http none
AcceptFilter https none
Finally solve the problem
边栏推荐
- [2. Basics of Delphi grammar] 2 Object Pascal data type
- Overview of satellite navigation system
- 远程办公之如何推进跨部门项目协作 | 社区征文
- Preventing/catching “IllegalArgumentException: parameter must be a descendant of this view” error
- What is the pledge pool and how to pledge?
- CC2530 common registers for watchdog
- 数据分析必备的能力
- 27. 输入3个整数,按从大到小的次序输出。要求用指针方法实现。
- One brush 145 force deduction hot question-2 sum of two numbers (m)
- Free data | new library online | cnopendata complete data of China's insurance intermediary outlets
猜你喜欢
What material is sa537cl2? Analysis of mechanical properties of American standard container plate
[combinatorics] polynomial theorem (polynomial theorem | polynomial theorem proof | polynomial theorem inference 1 item number is the number of non negative integer solutions | polynomial theorem infe
C语言按行修改文件
Static program analysis (I) -- Outline mind map and content introduction
Simulink oscilloscope data is imported into Matlab and drawn
UCORE overview
What is your income level in the country?
建立自己的网站(23)
图之深度优先搜索
智慧之道(知行合一)
随机推荐
MySQL converts comma separated attribute field data from column to row
MySQL single table field duplicate data takes the latest SQL statement
C语言字符串练习
MySQL user management
Mysql database DDL and DML
[sword finger offer] 58 - I. flip the word order
Free data | new library online | cnopendata complete data of China's insurance intermediary outlets
【剑指 Offer】58 - I. 翻转单词顺序
線程池:業務代碼最常用也最容易犯錯的組件
[combinatorial mathematics] counting model, common combinatorial numbers and combinatorial identities**
[Jianzhi offer] 64 Find 1+2+... +n
CC2530 common registers for serial communication
New library online | cnopendata China bird watching record data
Assembly instance analysis -- screen display in real mode
What material is sa537cl1? Sa537cl1 corresponds to the national standard material
比亚迪、长城混动市场再“聚首”
大变局!全国房价,跌破万元大关
SSH连接远程主机等待时间过长的解决方法
Build your own website (23)
One brush 149 force deduction hot question-10 regular expression matching (H)