OBIEE Installation Part 6(Integration with OTD) !!

Author: | Posted in Oracle Fusion DBA No comments

Hi All,

Post 6, in the series of OBIEE Installation.

In this post going to show how to integrate OBIEE URL with software load balancer OTD using webtier.

Details:

  1. Configuring webtier information in OTD.
  2. Configuring obiee.conf file in moduleconf directory of webtier hosts (i.e ohs01.hussain.net & ohs02.hussain.net in our case)
  3. Testing OBIEE Admin Console, EM, analytics and xmlpserver through software load balancer.

Now got to moduleconf directory of ohs01.hussain.net & ohs02.hussain.net and paste the below details in obiee.conf:

OHS01.hussain.net:

NameVirtualHost *:7777

<VirtualHost *:7777>

ServerName ohs01.hussain.net:7777

ServerAdmin you@your.address

RewriteEngine On

RewriteOptions inherit

<Location /console>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster biadmin.hussain.net:7001

</Location>

<Location /em>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster biadmin.hussain.net:7001

</Location>

 

<Location /analytics>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster obiee01.hussain.net:9704

</Location>

<Location /xmlpserver>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster obiee01.hussain.net:9704

</Location>

</VirtualHost>

OHS02.hussain.net:

NameVirtualHost *:7777

<VirtualHost *:7777>

ServerName ohs02.hussain.net:7777

ServerAdmin you@your.address

RewriteEngine On

RewriteOptions inherit

<Location /console>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster biadmin.hussain.net:7001

</Location>

<Location /em>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster biadmin.hussain.net:7001

</Location>

<Location /analytics>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster obiee01.hussain.net:9704

</Location>

<Location /xmlpserver>

SetHandler weblogic-handler

Debug ON

WLLogFile /tmp/weblogic.log

WLProxySSL ON

WLProxySSLPassThrough ON

WebLogicCluster obiee01.hussain.net:9704

</Location>

</VirtualHost>

After pasting the above details in obiee.conf file which will reside in moduleconf directory of webtier, we should have to restart opmnctl services.(Do restart on both nodes ohs01 & ohs02)

Opmnctl stopall

Opmnctl startall

Now testing the OBIEE related links through software load balancer OTD

Add Your Comment