http中指定使用worker/prefork

注意: 2.4之前版本默认为prefork, 2.4已经变为event模式。

三种模式比较: http://www.cnblogs.com/fnng/archive/2012/11/20/2779977.html

在编译apache的时候,有一个参数叫做  
--with-mpm=...    等号后边用于指定那种模式,可选的有 beos|event|worker|prefork|mpmt_os2   其中,咱们都知道 prefork 以及 worker 其他模式就不晓得了,感兴趣不妨你去google一下。

当你编译时,不指定哪种模式,就是说,不加该参数,那么默认apache会以prefork模式来为我们提供服务。不信,你编译试试看
./configure --prefix=/usr/local/apache2  
验证的话,就是用  apachectl -l  看看是否有 
prefork.c

而,如果你想要worker模式,那么请指定吧   ./configure --prefix=/usr/local/apache2   --with-mpm=worker 
apachectl -l 看,有
worker.c 而没有 prefork.c


你可能感兴趣的:(http,Google,local)