ssplyh 发表于 2016-12-29 08:59:59

apache Win32DisableAcceptEx

Apache MPM winnt
说明专门为Windows NT优化过的MPM状态MPM模块名mpm_winnt_module源文件mpm_winnt.c概述
  该多路处理模块(MPM)是Windows NT上的默认值。它使用一个单独的父进程产生一个单独的子进程,在这个子进程中轮流产生多个线程来处理请求。

http://www.phpchina.com/manual/apache/images/up.gif
Win32DisableAcceptEx指令
说明使用accept()代替AcceptEx()接受网络链接语法Win32DisableAcceptEx默认值AcceptEx()是默认的,使用这个指令将禁用它。作用域server config状态MPM模块mpm_winnt兼容性仅在 Apache 2.0.49 及以后的版本中可用  AcceptEx()是一个微软的WinSock2 API ,通过使用BSD风格的accept()API提供了性能改善。一些流行的Windows产品,比如防病毒软件或虚拟专用网络软件,会干扰AcceptEx()的正确操作。如果你遇到类似于如下的错误:
   (730038)An operation was attempted on something that isnot a socket.: winnt_accept: AcceptEx failed. Attempting to recover.

  你就需要使用这个指令来禁止使用AcceptEx()。
页: [1]
查看完整版本: apache Win32DisableAcceptEx