<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post//</link>
<title><![CDATA[判断apache的工作模式是prefork模式还是worker模式]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Fri, 12 Oct 2012 02:16:06 +0000</pubDate> 
<guid>http://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp; apache常用的工作模式有prefork和worker模式。运行命令httpd -l 或者apache2 -l ，输出的结果中如果含有prefork.c，那就是prefork模式，如果结果中含有worker.c，那就是worker模式。<br/><br/>如果apache已经安装，我们可以用&quot;httpd -l&quot;命令查看当前模式。若找到 prefork.c 则表示当前工作在prefork模式，同理出现 worker.c 则工作在worker模式。<br/>如果apache还未安装，我们在编译的时候可以加入 --with-pem=(prefork&#124;worker) 选项决定启用什么模式。<br/>http://wenku.baidu.com/link?url=y3OpHIEd1VLsBxPHeQ8CPb4bPPWnsR6TIejiY1nr8NfSNSzPFVyWuInERBFPX4AOkoo1V0ptdTorPIq21vB8r90IIPX6xR37fZd_x5dEfOe&amp;from_mod=download<br/><br/>httpd -V<br/>Server version: Apache/2.2.3<br/><br/>Architecture:&nbsp;&nbsp; 32-bit<br/>Server MPM:&nbsp;&nbsp;&nbsp;&nbsp; Prefork<br/><br/>Server compiled with....<br/> -D APACHE_MPM_DIR=&quot;server/mpm/prefork&quot;<br/><br/><br/>&lt;IfModule prefork.c&gt;<br/>StartServers 2<br/>MinSpareServers 10<br/>MaxSpareServers 15<br/>ServerLimit 2000<br/>MaxClients 1000<br/>MaxRequestsPerChild 10000<br/>&lt;/IfModule&gt;<br/><br/>&lt;IfModule worker.c&gt;<br/>StartServers 2<br/>MaxClients 150<br/>MinSpareThreads 25<br/>MaxSpareThreads 75<br/>ThreadsPerChild 25<br/>MaxRequestsPerChild 0<br/>&lt;/IfModule&gt;<br/><br/>From:http://blog.csdn.net/aovenus/article/details/6541941
]]>
</description>
</item><item>
<link>http://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] 判断apache的工作模式是prefork模式还是worker模式]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>