Apache模塊談

apache是一個元老級web服務器,在nginx出現之前這是大衆的選擇。apache的模塊化設計是不錯的,下面咱們就來講說他的模塊設計。apache的模塊能夠隨核心一塊兒編譯進去,也能夠編譯成單獨的模塊,便於動態加載和卸載,使用起來比較方便。可是動態加載的模塊在性能上確定不如編譯進核心的性能高。這個要本身去權衡了,通常常常使用的模塊最好編譯進核心,而不經常使用的就能夠獨立成模塊,須要時加載進去。本文要說的是如何編譯成獨立模塊(動態共享對象DSO)。

本文的系統環境:
os:rhel5.4 x86_64
apache:2.2.24

一、如何編譯模塊成動態模塊
當咱們使用./configure --prefix=/path/to/install編譯安裝apache時,默認是將模塊編譯進核心的,以下:
[root@vm3 httpd-2.2.24]# ./configure --prefix=/usr/local/httpd
[root@vm3 httpd-2.2.24]# make -j 4
[root@vm3 httpd-2.2.24]# make install
[root@vm3 httpd-2.2.24]# /usr/local/httpd/bin/httpd -M
Loaded Modules:
core_module (static)
authn_file_module (static)
authn_default_module (static)
authz_host_module (static)
authz_groupfile_module (static)
authz_user_module (static)
authz_default_module (static)
auth_basic_module (static)
include_module (static)
filter_module (static)
log_config_module (static)
env_module (static)
setenvif_module (static)
version_module (static)
mpm_prefork_module (static)
http_module (static)
mime_module (static)
status_module (static)
autoindex_module (static)
asis_module (static)
cgi_module (static)
negotiation_module (static)
dir_module (static)
actions_module (static)
userdir_module (static)
alias_module (static)
so_module (static)
Syntax OK
能夠看到這裏的模塊都是靜態編譯的,那如何把模塊編譯成獨立的共享模塊呢?看下面:
[root@vm3 httpd-2.2.24]# ./configure --prefix=/usr/local/httpd --enable-mods-shared=rewrite
[root@vm3 httpd-2.2.24]# make -j 4
[root@vm3 httpd-2.2.24]# make install
[root@vm3 httpd-2.2.24]# /usr/local/httpd/bin/httpd -M
Loaded Modules:
core_module (static)
authn_file_module (static)
authn_default_module (static)
authz_host_module (static)
authz_groupfile_module (static)
authz_user_module (static)
authz_default_module (static)
auth_basic_module (static)
include_module (static)
filter_module (static)
log_config_module (static)
env_module (static)
setenvif_module (static)
version_module (static)
mpm_prefork_module (static)
http_module (static)
mime_module (static)
status_module (static)
autoindex_module (static)
asis_module (static)
cgi_module (static)
negotiation_module (static)
dir_module (static)
actions_module (static)
userdir_module (static)
alias_module (static)
so_module (static)
rewrite_module (shared)
Syntax OK
這裏咱們將rewrite模塊編譯成動態模塊,最後一個模塊就是了,它後面顯示的是shared,其它的都是static的

二、如何爲apache動態添加模塊(隨apache源碼附帶的模塊)
要爲apache動態添加模塊必須在編譯apache時啓用了so模塊,並且這個模塊和core模塊只能靜態編譯進核心,不能做爲獨立模塊存在,不然會報錯(configure: error: mod_so can not be built as a shared DSO)而終止。so模塊提供LoadModule指令,使得咱們能夠加載模塊。本文的apache版本默認是啓用so模塊的。咱們要添加隨apache源碼自帶的rewrite模塊,有2種方法:
第一種:從新編譯apache,開啓rewrite模塊
[root@vm3 httpd-2.2.24]# ./configure --prefix=/usr/local/httpd --enable-mods-shared=rewrite
[root@vm3 httpd-2.2.24]# /usr/local/httpd/bin/httpd -M|grep rewrite
rewrite_module (shared)
第二種:使用apache的apxs工具編譯安裝rewrite模塊
[root@vm3 httpd-2.2.24]# /usr/local/httpd/bin/apxs -c -i -a /root/httpd-2.2.24/modules/mappers/mod_rewrite.c
這裏參數的意思是:
-c compile 編譯源碼
-i install 將模塊文件安裝到apache模塊目錄
-a active  在httpd.conf文件裏添加LoadModule行

三、如何爲apache動態添加第三方模塊
也分2種方法:
第一種:使用apache的apxs工具
當模塊只包含一個mod_xxxx.c時,可使用這種方法
第二種:使用模塊的configure
好比在安裝php時使用下面命令:
[root@vm3 php-5.3.21]# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/httpd/bin/apxs
相關文章
相關標籤/搜索