一、準(zhǔn)備工作:
1臺PC機,安裝linux操作系統(tǒng) 參考文檔linux安裝.docx
2 gcc的安裝 參考文檔gcc的安裝.zip
3 apache的安裝包httpd-2.0.63.tar.gz
二、安裝aoache:
#cd /opt
#gunzip httpd-2.0.63.tar.gz
#tar –xvf httpd-2.0.63.tar
#cd httpd-2.0.63
#./configure --prefix=/opt/apache2 –enable-so –enable-proxy –enable-proxy-ajp –enable-proxy-http –enable-proxy-ftp –enable-proxy-connect –enable-proxy-balancer
#make
#make install
注意:1路徑,要安裝到/opt/apache2下
2 在make執(zhí)行的時候可能會報缺少文件,那是因為linux沒有安裝gcc,所以要先安裝gcc,gcc的安裝參考《gcc的安裝.zip》
三、補充apache缺少的文件
以上執(zhí)行完畢后,把mod_wl_20.so這個文件copy到/opt/apache2/moules下
mode_wl_20.so可以在bea \server\lib\linux\i686下找到
四、配置apache成都機柜租用
Apache的配置文件在/opt/apache2/conf/httpd.conf,找到Listen 80這一行,在下面添加以下內(nèi)容。
Include conf/weblogic.conf
在conf下新建一個文件:weblogic.conf,里面配置如下。
LoadModule weblogic_module modules/mod_wl_20.so
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
# DynamicServerList OFF
#Include conf/Weblogic.conf
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
MatchExpression *.jsp
MatchExpression *.do
Debug ALL
WLLogFile logs/wlAcess_mimm.log
WLTempDir "/opt/apache2/logs"
# StatPath true
DebugConfigInfo ON
KeepAliveEnabled True
KeepAliveSecs 15
五、運行和測試
#cd /opt/apache2/bin
#./apachectl start
啟動apache
如果你輸入http://apache所在IP/hdm 可以訪問到14和17上部署的hdm,那么就證明已經(jīng)配置成功了!成都小程序開發(fā)公司
你shutdown14和17的任意一個機器,仍然可以訪問
#./apachectl stop
關(guān)閉apache
六、注意事項
1、 根據(jù)將要布署的應(yīng)用名要在weblogic.conf中配置一個location
2、 如果安裝目錄在/opt/apache2的話,可以直接copy現(xiàn)有的weblogic.conf和httpd.conf