Load Balancer For OHS
Load Balancer For OHS
Load Balancer For OHS
<Proxy balancer://clusterABCD>
BalancerMember http://<host>:port
BalancerMember http://<host>:port
BalancerMember http://<host>:port
Order allow,deny
</Proxy>
ProxyPass / balancer://clusterABCD/
<Proxy balancer://clusterABCD>
BalancerMember http://slc11coo.us.oracle.com:16663
BalancerMember http://slc15bmx.us.oracle.com:16661
BalancerMember http://slc12own.us.oracle.com:16661
Order allow,deny
</Proxy>
ProxyPass / balancer://clusterABCD/
After OHS restart request were routed to tomcats in the defined cluster
<VirtualHost *:80>
ProxyRequests off
ServerName domain.com
<Proxy balancer://mycluster>
# WebHead1
BalancerMember http://10.176.42.144:80
# WebHead2
BalancerMember http://10.176.42.148:80
</Proxy>
# balancer-manager
# This tool is built into the mod_proxy_balancer
# module and will allow you to do some simple
# modifications to the balanced group via a gui
# web interface.
<Location /balancer-manager>
SetHandler balancer-manager
</Location>
# Point of Balance
# This setting will allow to explicitly name the
# the location in the site that we want to be
# balanced, in this example we will balance "/"
# or everything in the site.
ProxyPass /balancer-manager !
ProxyPass / balancer://mycluster/
</VirtualHost>