JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Cluster Data Service for Oracle Real Application Clusters Guide
search filter icon
search icon

Document Information

Preface

1.  Installing Support for Oracle RAC

2.  Configuring Storage for Oracle Files

3.  Registering and Configuring the Resource Groups

4.  Enabling Oracle RAC to Run in a Cluster

5.  Administering Support for Oracle RAC

6.  Troubleshooting Support for Oracle RAC

7.  Modifying an Existing Configuration of Support for Oracle RAC

8.  Upgrading Support for Oracle RAC

A.  Sample Configurations of This Data Service

B.  Preset Actions for DBMS Errors and Logged Alerts

C.  Support for Oracle RAC Extension Properties

D.  Command-Line Alternatives

Setting Support for Oracle RAC Extension Properties

Registering and Configuring the Framework Resource Groups by Using Oracle Solaris Cluster Maintenance Commands

Overview of the Framework Resource Groups

RAC Framework Resource Group

Multiple-Owner Volume-Manager Framework Resource Group

How to Register and Configure the Framework Resource Groups in the Global Cluster by Using Oracle Solaris Cluster Maintenance Commands

How to Register and Configure the RAC Framework Resource Group in a Zone Cluster by Using Oracle Solaris Cluster Maintenance Commands

Registering and Configuring Oracle ASM Resource Groups (CLI)

How to Register and Configure Oracle ASM Resource Groups in the Global Cluster (CLI)

How to Register and Configure Oracle ASM Resource Groups in a Zone Cluster (CLI)

Creating Storage Management Resources by Using Oracle Solaris Cluster Maintenance Commands

Resources for Scalable Device Groups and Scalable File-System Mount Points

Resources for the Sun QFS Metadata Server

Configuration of Sun QFS Resource Groups With Oracle 9i and Oracle 10g Release 2 or 11g

Configuration of Sun QFS Resource Groups With Oracle 10g Release 1

How to Create a Resource for a Scalable Device Group in the Global Cluster

How to Create a Resource for a Scalable Device Group in a Zone Cluster

How to Register and Configure Resources for the Sun QFS Metadata Server in the Global Cluster

How to Register and Configure Resources for the Sun QFS Metadata Server for a Zone Cluster

How to Create a Resource for a File-System Mount Point in the Global Cluster

How to Create a Resource for a File-System Mount Point in Zone Cluster

Creating Resources for Interoperation With Oracle 10g or 11g by Using Oracle Solaris Cluster Maintenance Commands

How to Create Oracle Solaris Cluster Resources for Interoperation With Oracle 10g or 11g

How to Create Oracle Solaris Cluster Resources in a Zone Cluster for Interoperation With Oracle 10g or 11g

How to Create an Oracle Clusterware Resource for Interoperation With Sun Cluster

How to Create an Oracle Clusterware Oracle ASM Resource for Interoperation With Sun Cluster Software

Registering and Configuring Oracle Solaris Cluster Resources for Interoperation With Oracle 9i by Using Oracle Solaris Cluster Maintenance Commands

Oracle 9i RAC Server Resources

Oracle 9i Listener Resources

Logical Hostname Resources for Oracle 9i Listener Resources

How to Register and Configure Oracle Solaris Cluster Resources in a Global Cluster for Interoperation With Oracle 9i

How to Register and Configure Oracle Solaris Cluster Resources in a Zone Cluster for Interoperation With Oracle 9i

Index

How to Create an Oracle Clusterware Resource for Interoperation With Sun Cluster

Oracle Clusterware resources are similar to Oracle Solaris Cluster resources. Oracle Clusterware resources represent items that the Oracle Clusterware manage in a similar way to how Oracle Solaris Cluster resources represent items that the Oracle Solaris Cluster RGM manages.

Depending on your configuration, some Oracle components that are represented as Oracle Clusterware resources might depend on file systems and global devices that Oracle Solaris Cluster manages. For example, if you are using file systems and global devices for Oracle files, the Oracle RAC database and the Oracle listener might depend on these file systems and global devices.

Create an Oracle Clusterware resource for each Oracle Solaris Cluster resource for scalable device groups and scalable file-system mount points on which Oracle components depend. The Oracle Clusterware resources that you create track the status of their associated Oracle Solaris Cluster resources. The Oracle Clusterware resources also ensure the orderly startup of Oracle Clusterware resources.

Perform this task on each cluster node where Support for Oracle RAC is to run.


Note - Some steps in this procedure require you to use Oracle Clusterware commands. In these steps, the syntax of the command for Oracle release 10g release 2 or 11g is provided. If you are you are using a version of Oracle other than 10g release 2 or 11g, see your Oracle documentation for the correct command syntax.



Note - To create an Oracle Clusterware resource in a zone cluster, you should perform the steps in this procedure in that zone cluster.


  1. On the node where you are performing this task, global-cluster node for a global cluster or zone-cluster node for a zone cluster, become superuser.
  2. If the /var/cluster/ucmm/profile directory does not exist, create it.

    Profiles for Oracle Clusterware resources are created in this directory.

    # mkdir -p /var/cluster/ucmm/profile
  3. Create a profile for the Oracle Clusterware resource.
    # crs-home/bin/crs_profile \
    -create sun.node.sc-rs \
    -t application -d "description" \
    -dir /var/cluster/ucmm/profile \
    -a /opt/SUNWscor/dsconfig/bin/scproxy_crs_action \
    -p restricted -h node -f -o st=1800
  4. Register the Oracle Clusterware resource for which you created a profile in Step 3.
    # crs-home/bin/crs_register sun.node.sc-rs \
    -dir /var/cluster/ucmm/profile
  5. Ensure that the Oracle Solaris Cluster resource for which the Oracle Clusterware resource is a proxy is online.
    1. Obtain the state of the Oracle Solaris Cluster resource.
      # clresource status sc-rs
    2. If the state of the Oracle Solaris Cluster resource is not online, bring online the resource group that contains the Oracle Solaris Cluster resource.

      If the state of the Oracle Solaris Cluster resource is online, omit this step.

      # clresourcegroup online -emM sc-rg
  6. Start the Oracle Clusterware resource that you registered in Step 4.
    # crs-home/bin/crs_start sun.node.sc-rs
  7. Add the Oracle Clusterware resource that you registered in Step 4 to the list of resources that the dependent Oracle Clusterware resource requires.
    1. If the dependent Oracle Clusterware resource is the Oracle RAC database instance, obtain the name of the instance.
      # crs-home/bin/srvctl config database -d db-name | grep node
    2. Obtain the list of resources that the dependent Oracle Clusterware resource requires.
      # crs-home/bin/crs_stat -p depend-crs-rs | grep REQUIRED_RESOURCES
    3. Append the name of the Oracle Clusterware resource to the list that you obtained in Step b.
      # crs-home/bin/crs_register depend-crs-rs \
      -update -r "existing-list sun.node.sc-rs"