Hi all,
we are trying to use Apache Http Server 2.2 as load balancer for Opensso which is deployed on weblogic. Presently Opensso is deployed in two difference machines say server1.com on port 8888 and server2.com on port 8899. We want to use apache http server as load balancer for it.We have done the following.
1. Installed mod_wl_22.so from weblogic.
2. Add the following in httpd.conf
<IfModule mod_weblogic.c>
WebLogicCluster server1.com:8989,server2.com:8989
</IfModule>
<Location /weblogic>
SetHandler weblogic-handler
PathTrim /weblogic
</Location>
With this the first of opensso is coming fine,but the other pages are not coming up. I got the following link for opensso with apache.
[
wikis.forgerock.org...]
I followed the same but no luck.Please suggest me some solution.Thanks.