源碼安裝apache及配置轉寄 一、 安裝Apachea) 解壓:tar -xvf httpd-*;b) ./configure --prefix=/usr/oracle/apache CC="gcc -m32" \--enable-proxy=shared --enable-proxy-http=shared --enable-proxy-ftp=shared --enable-proxy-connect=shared --enable-so --enable-modules=all --enable-mods-shared=allc) maked) make install 基本的操作方法:本文假設你的apahce安裝目錄為/usr/local/apache2,這些方法適合任何情況 apahce啟動命令:推薦/usr/local/apache2/bin/apachectl start apaceh啟動 apache停止命令/usr/local/apache2/bin/apachectl stop 停止 apache重新啟動命令:/usr/local/apache2/bin/apachectl restart 重啟 要在重啟 Apache 伺服器時不中斷當前的串連,則應運行: /usr/local/sbin/apachectl graceful 如果apache安裝成為linux的服務的話,可以用以下命令操作: service httpd start 啟動 service httpd restart 重新啟動 service httpd stop 停止服務 配置轉寄功能 開啟apache安裝目錄的conf檔案夾下的httpd.conf 1、將以下兩行前的注釋字元 # 去掉: #LoadModule proxy_module modules/mod_proxy.so #LoadModule proxy_http_module modules/mod_proxy_http.so 2、在httpd.conf 檔案的最後加上轉寄規則 例如: ProxyPass /cas http://192.168.0.206:9090/cas ProxyPassReverse /cas http://192.168.0.206:9090/cas 將/cas開頭的請求轉寄到206伺服器9090連接埠的cas上 依次類推,其他的轉寄也是通過這種方式設定,如: ProxyPass /cas http://192.168.0.206:9090/cas ProxyPassReverse /cas http://192.168.0.206:9090/cas #bbs不轉寄,採用apache處理 ProxyPass /bbs ! ProxyPassReverse /bbs !