<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DBAlife &#187; module</title>
	<atom:link href="http://www.dbalife.com/archives/tag/module/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dbalife.com</link>
	<description>网站系统架构实践</description>
	<lastBuildDate>Wed, 27 Jul 2011 09:57:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>用APXS编译Apache模块</title>
		<link>http://www.dbalife.com/archives/193.html</link>
		<comments>http://www.dbalife.com/archives/193.html#comments</comments>
		<pubDate>Fri, 14 Nov 2008 07:05:40 +0000</pubDate>
		<dc:creator>skywalker</dc:creator>
				<category><![CDATA[Web服务器]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[系统管理]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apxs]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://www.dbalife.com/archives/%e7%94%a8apxs%e7%bc%96%e8%af%91apache%e6%a8%a1%e5%9d%97/</guid>
		<description><![CDATA[apxs是一个为Apache HTTP服务器编译和安装扩展模块的工具，用于编译一个或多个源程序或目标代码文件为动态共享对象，使之可以用LoadModule指令在运行时加载到Apache服务器中。 1. 进入apache源代码的modules目录 2. 运行如下命令自动编译、安装和修改httpd.conf文件，激活mod_proxy模块： apache path/bin/apxs -c -i -a mod_proxy.c proxy_util.c 选项说明： -c 执行编译操作 -i 安装操作，安装一个或多个动态共享对象到服务器的modules目录 -a 自动增加一个LoadModule行到httpd.conf文件，以激活此模块，若此行存在则启用之 -A 与-a类似，但是它增加的LoadModule行前有井号前缀(#) -e 需要执行编辑操作，可与-a和-A选项配合使用，与-i操作类似，修改httpd.conf文件，但并不安装此模块 3. 如果还需要其他proxy模块如mod_proxy_http、mod_proxy_ftp，则单独 apxs -c -i proxy_http.c apxs -c -i proxy_ftp.c Blogged with the Flock Browser Tags: apache, mod, apxs Related posts: PIX logging Architecture所需perl module的几点注意 20种让你的Apache更安全的设置 caucho-request的范围
Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/133.html' rel='bookmark' title='PIX logging Architecture所需perl module的几点注意'>PIX logging Architecture所需perl module的几点注意</a></li>
<li><a href='http://www.dbalife.com/archives/15.html' rel='bookmark' title='20种让你的Apache更安全的设置'>20种让你的Apache更安全的设置</a></li>
<li><a href='http://www.dbalife.com/archives/200.html' rel='bookmark' title='caucho-request的范围'>caucho-request的范围</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>apxs是一个为Apache HTTP服务器编译和安装扩展模块的工具，用于编译一个或多个源程序或目标代码文件为动态共享对象，使之可以用<code>LoadModule</code>指令在运行时加载到Apache服务器中。</p>
<p>1. 进入apache源代码的modules目录</p>
<p>2. 运行如下命令自动编译、安装和修改httpd.conf文件，激活mod_proxy模块：</p>
<blockquote><p>apache path/bin/apxs -c -i -a mod_proxy.c proxy_util.c</p>
</blockquote>
<p>选项说明：
</p>
<div style="margin-left: 40px;"> -c 执行编译操作<br />
-i 安装操作，安装一个或多个动态共享对象到服务器的modules目录<br />
-a 自动增加一个LoadModule行到httpd.conf文件，以激活此模块，若此行存在则启用之<br />
-A 与-a类似，但是它增加的LoadModule行前有井号前缀(#)<br />
-e 需要执行编辑操作，可与-a和-A选项配合使用，与-i操作类似，修改httpd.conf文件，但并不安装此模块</div>
<p>3. 如果还需要其他proxy模块如mod_proxy_http、mod_proxy_ftp，则单独</p>
<p><font size="2">apxs -c -i proxy_http.c<br />
apxs -c -i proxy_ftp.c</font></p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/apache" rel="tag">apache</a>, <a href="http://technorati.com/tag/mod" rel="tag">mod</a>, <a href="http://technorati.com/tag/apxs" rel="tag">apxs</a></p>
<p><!-- technorati tags end --></p>
<p>Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/133.html' rel='bookmark' title='PIX logging Architecture所需perl module的几点注意'>PIX logging Architecture所需perl module的几点注意</a></li>
<li><a href='http://www.dbalife.com/archives/15.html' rel='bookmark' title='20种让你的Apache更安全的设置'>20种让你的Apache更安全的设置</a></li>
<li><a href='http://www.dbalife.com/archives/200.html' rel='bookmark' title='caucho-request的范围'>caucho-request的范围</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbalife.com/archives/193.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

