JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Cluster Data Service for Oracle WebLogic Server Guide     Oracle Solaris Cluster 4.0
search filter icon
search icon

Document Information

Preface

1.  Installing and Configuring Oracle Solaris Cluster HA for WebLogic Server

Oracle Solaris Cluster HA for WebLogic Server Overview

Overview of the Installation and Configuration Process for Oracle Solaris Cluster HA for WebLogic Server

Planning the Oracle Solaris Cluster HA for WebLogic Server Installation and Configuration

Configuration Restrictions

Configuration Requirements

Standard Data Service Configurations

WebLogic Server Configured as a Failover Resource

Simple Configuration

Configuration 1

Configuration 2

Configuration 3

WebLogic Server Configured as a Multi-Master Resource

Preparing the Nodes and Disks

How to Prepare the Nodes for a Failover Configuration

How to Prepare the Nodes for a Multi-Master Configuration

Installing and Configuring the WebLogic Server Application

How to Install WebLogic Server

Installing a Database

Installing a Web Server

Verifying the WebLogic Server Installation and Configuration

How to Verify the WebLogic Server Installation and Configuration for Failover Services

How to Verify the WebLogic Server Installation and Configuration for Multi-Master Services

Installing the HA for WebLogic Server Package

How to Install the HA for WebLogic Server Package

Registering and Configuring the Oracle Solaris Cluster HA for WebLogic Server

Setting Oracle Solaris Cluster HA for WebLogic Server Extension Properties

How to Register and Configure the Oracle Solaris Cluster HA for WebLogic Server as a Web Proxy Server

How to Register and Configure Oracle Solaris Cluster HA for WebLogic Server as a Failover Data Service

How to Register and Configure Oracle Solaris Cluster HA for WebLogic Server as a Multi-Master Data Service

Setting Up the WebLogic Server for HAStoragePlus Configuration

How to Set Up the WebLogic Server on Zone Clusters for HAStoragePlus Configuration

Verifying the Oracle Solaris Cluster HA for WebLogic Server Installation and Configuration

How to Verify the Oracle Solaris Cluster HA for WebLogic Server Installation and Configuration for Failover Services

How to Verify the Oracle Solaris Cluster HA for WebLogic Server Installation and Configuration in a Multi-Master Configuration

Alternate Oracle Solaris Cluster HA for WebLogic Server Configurations

Creating a Simple WebLogic Server Resource

Creating a Resource With a Server Name Argument

Creating a Resource That Shuts Down Smoothly

Creating a Resource That Probes the Database

Creating a Resource That Monitors URIs

Using a Non-Clustered Managed Server Instance as a Proxy Server

Operation of the Oracle Solaris Cluster HA for WebLogic Server Fault Monitor

Probing Algorithm and Functionality

START Method

STOP Method

A.  HA for WebLogic Server Extension Properties

Index

Setting Up the WebLogic Server for HAStoragePlus Configuration

Use the following procedure to configure an HAStoragePlus resource.

How to Set Up the WebLogic Server on Zone Clusters for HAStoragePlus Configuration

Use the following procedure to configure an HAStoragePlus resource for zone clusters.


Note - The examples shown in the following procedure assume that you perform all steps from inside the zone cluster. If you choose to create resources and resource groups from outside the cluster, you need to add the -Z sczone option to all commands to specify the name of the zone cluster.


Before You Begin

  1. On any node in the cluster, become superuser or assume a role that provides solaris.cluster.modify RBAC authorization.
  2. Create the scalable resource group that contains the HAStoragePlus resource.
    # clresourcegroup create -p Maximum_primaries=m \ -p Desired_primaries=n [-n node-zone-list] hasp-rg
    -p Maximum_primaries=m

    Specifies the maximum number of active primaries for the resource group.

    -p Desired_primaries=n

    Specifies the number of desired primaries on which the resource group should attempt to start.

    -n node-zone-list

    Specifies the list of node names as the node list of the HAStoragePlus resource group where the WebLogic Server instances can be brought online.

    hasp-rg

    Specifies the name of the scalable resource group to be added. This name must begin with an ASCII character.

  3. Configure the cluster file system in the zone cluster.

    For more information, see Configuring a Zone Cluster in Oracle Solaris Cluster Software Installation Guide.

  4. Register the resource type for the HAStoragePlus resource.
    # clresourcetype register HAStoragePlus
  5. Create the HAStoragePlus resource hasp-rs and define the WebLogic Server file system mount points.
    # clresource create -g hasp-rg -t SUNW.HAStoragePlus \ -p filesystemMountPoints=/global/wls hasp-rs
  6. Bring the HAStoragePlus resource and resource group online.
    # clresourcegroup online -M hasp-rg
  7. Register the resource type for the WebLogic Server application.
    # clresourcetype register SUNW.wls
  8. Create a WebLogic Server resource group.
    # clresourcegroup create -g wls-rg
  9. Add the WebLogic Server resource to wls–rg and set the dependency to HAStoragePlus resource.
    # clresource create -t SUNW.wls -g wls–rg \
    -p Confdir_list=/global/bea/beahome/wlserver_10.3 \
    -p Server_url=http://localhost:port-number \
    -p Start_script=/global/bea/beahome/user_projects/domains/base_domain_mgd1/bin/startManagedWebLogic.sh \
    -p "Server_name{node1}"= ManagedServer_1 \
    -p "Server_name{node2}"= ManagedServer_2 \
    -p smooth_shutdown=true \
    -p resource_dependencies=hasp-rs wls-rs
  10. Bring the failover resource group online.
    # clresourcegroup online -M wls–rg