一、准备工作:
1台PC机,安装linux操作系统 参考文档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执行的时候可能会报缺少文件,那是因为linux没有安装gcc,所以要先安装gcc,gcc的安装参考《gcc的安装.zip》
三、补充apache缺少的文件
以上执行完毕后,把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这一行,在下面添加以下内容。
Include conf/weblogic.conf
在conf下新建一个文件:weblogic.conf,里面配置如下。
LoadModule weblogic_module modules/mod_wl_20.so
<Location /ACS-server/ACS>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /ACS-server/hnmACS>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /csr>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /report>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /hdm>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
# DynamicServerList OFF
</Location>
<IfModule mod_weblogic.c>
#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
</IfModule>
五、运行和测试
#cd /opt/apache2/bin
#./apachectl start
启动apache
如果你输入http://apache所在IP/hdm 可以访问到14和17上部署的hdm,那么就证明已经配置成功了!
你shutdown14和17的任意一个机器,仍然可以访问
#./apachectl stop
关闭apache
六、注意事项
1、 根据将要布署的应用名要在weblogic.conf中配置一个location
2、 如果安装目录在/opt/apache2的话,可以直接copy现有的weblogic.conf和httpd.conf
1台PC机,安装linux操作系统 参考文档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执行的时候可能会报缺少文件,那是因为linux没有安装gcc,所以要先安装gcc,gcc的安装参考《gcc的安装.zip》
三、补充apache缺少的文件
以上执行完毕后,把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这一行,在下面添加以下内容。
Include conf/weblogic.conf
在conf下新建一个文件:weblogic.conf,里面配置如下。
LoadModule weblogic_module modules/mod_wl_20.so
<Location /ACS-server/ACS>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /ACS-server/hnmACS>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /csr>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /report>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
DynamicServerList OFF
</Location>
<Location /hdm>
SetHandler weblogic-handler
WebLogicCluster 135.251.218.17:7013,135.251.218.14:7013
Debug ALL
WLTempDir "/opt/apache2/logs"
DebugConfigInfo ON
# DynamicServerList OFF
</Location>
<IfModule mod_weblogic.c>
#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
</IfModule>
五、运行和测试
#cd /opt/apache2/bin
#./apachectl start
启动apache
如果你输入http://apache所在IP/hdm 可以访问到14和17上部署的hdm,那么就证明已经配置成功了!
你shutdown14和17的任意一个机器,仍然可以访问
#./apachectl stop
关闭apache
六、注意事项
1、 根据将要布署的应用名要在weblogic.conf中配置一个location
2、 如果安装目录在/opt/apache2的话,可以直接copy现有的weblogic.conf和httpd.conf
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
更新日志
2024年11月22日
2024年11月22日
- 李俊广VS许岚岚《秋蝉》[低速原抓WAV+CUE]
- 证声音乐图书馆《毕业季·青春爵士》[FLAC/分轨][265.35MB]
- 证声音乐图书馆《爵士嘉年华 Big Band Swing》[320K/MP3][62.44MB]
- 证声音乐图书馆《爵士嘉年华 Big Band Swing》[FLAC/分轨][239.3MB]
- 中国民歌宝典《民歌精粹经典珍藏》12CD[WAV]
- 阿姆斯特丹小交响乐团演奏《室内交响曲》SACD-WAV
- Parijat-BuddhaGarden《佛陀花园》[WAV+CUE]
- 证声音乐图书馆《巴莎诺瓦 惬意咖啡馆》[320K/MP3][220.56MB]
- 证声音乐图书馆《巴莎诺瓦 惬意咖啡馆》[FLAC/分轨][220.56MB]
- 群星《狂潮》夜店中文爆嗨重低音 黑胶碟2CD[低速原抓WAV+CUE]
- TraditionalMusicEnsembleofTheBNMA-BuddhistMusicoftheMingDynasty(JVC-Japan)[FLAC]
- [中国唱片]中央乐团交响乐队《绝烧HIFI典范》[WAV+CUE]
- 群星《2024好听新歌41》AI调整音效【WAV分轨】
- 张学友《吻别》MQA-UHQCD 日本压碟[原抓WAV+CUE][1G]
- 许嵩《寻宝游戏》[WAV+CUE][951M]