ロード・バランサの設定

SOAクラスタと連携するようにFinancial Close Managementを構成するには、EPM SystemインストーラでインストールされたOracle HTTP Serverを使用してSOAクラスタのロード・バランシングを有効にします。

SOAクラスタのロード・バランシングを有効にするには:

  1. テキスト・エディタでEPM_ORACLE_INSTANCE\httpConfig\ohs\config\OHS\ohs_component/mod_wl_ohs.confを開き、次のエントリを追加します:

    # The admin URLs should only be accessible via the admin virtual host
    <Location /console>
        SetHandler weblogic-handler
        WebLogicHost <ADMIN Server Virtual DNS name >
        WeblogicPort 7001
    </Location>
    
    <Location /consolehelp>
        SetHandler weblogic-handler
        WebLogicHost <ADMIN Server Virtual DNS name >
        WeblogicPort 7001
    </Location>
    
    <Location /em>
        SetHandler weblogic-handler
        WebLogicHost <ADMIN Server Virtual DNS name >
        WeblogicPort 7001
    </Location>
    
    # Virtual host entry for external https URL configured at the Load Balancer
    # WSM-PM
    <Location /wsm-pm>
        SetHandler weblogic-handler
        WebLogicCluster <SOASERVER1>:<WSM_PORT>,<SOASERVER2>:<WSM_PORT>
    #                            WLProxySSL ON
    #                            WLProxySSLPassThrough ON
    </Location>
    
    <Location /soa-infra>
        SetHandler weblogic-handler
        WebLogicCluster <SOASERVER1>:<SOA_PORT>,<SOASERVER2>:<SOA_PORT>
    #      WLProxySSL ON
    #      WLProxySSLPassThrough ON
    </Location>
    
  2. Oracle HTTP Serverを再起動します。