码迷,mamicode.com
首页 > Web开发 > 详细

apache代理weblogic集群办法

时间:2017-04-01 15:03:10      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:iptables   mat   重启   gic   cluster   reserve   tab   http   host   

方法一:

--关闭iptables和selinux

--在apache配置文件httpd.conf最下面添加如下语句,然后重启apache:

ServerName 127.0.0.1:80

NameVirtualHost 127.0.0.1:80

<VirtualHost 127.0.0.1:80>
        ProxyPreserveHost On
        ProxyPass / balancer://cluster/
        ProxyPassReverse / balancer://mycluster
        ServerName 127.0.0.1
        ServerAlias 127.0.0.1
</VirtualHost>

<Proxy balancer://cluster>
        BalancerMember http://192.168.100.131:8001 loadfactor=1 route=1                              
        BalancerMember http://192.168.100.133:8001 loadfactor=1 route=2
        BalancerMember http://192.168.100.135:8001 loadfactor=1 route=3

#以上3条代表负载地址
</Proxy>

 

方法二:

--在httpd.conf配置文件末尾添加如下部分,默认访问端口为linux服务器host_ip:80端口:

LoadModule weblogic_module modules/mod_wl_22.so

<IfModule mod_weblogic.c>
   WebLogicCluster 192.168.100.131:8001,192.168.100.133:8001,192.168.100.135:8001
   MatchExpression /*
</IfModule>

<Location /hqoa>
    SetHandler weblogic-handler
    WebLogicCluster 192.168.100.131:8001,192.168.100.133:8001,192.168.100.135:8001
    MatchExpression *
    MatchExpression *.*
</Location>

apache代理weblogic集群办法

标签:iptables   mat   重启   gic   cluster   reserve   tab   http   host   

原文地址:http://www.cnblogs.com/wcwen1990/p/6655928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!