JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Cluster Data Service for Oracle Real Application Clusters Guide     Oracle Solaris Cluster
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

Oracle 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 Oracle 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 Version 9i, 10g Release 2, 11g, or 12c

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, 11g, or 12c by Using Oracle Solaris Cluster Maintenance Commands

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

How to Create an Oracle Grid Infrastructure Resource for Interoperation With Oracle Solaris Cluster

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

How to Create Oracle Solaris Cluster Resources in the Global Cluster for Interoperation With Oracle 10g, 11g, or 12c

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

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 Register and Configure Resources for the Sun QFS Metadata Server for a Zone Cluster

Perform the steps in this procedure to register and configure resources for the Sun QFS metadata server for a zone cluster.

Perform these steps in the global cluster.

  1. Become superuser or assume a role that provides solaris.cluster.admin and solaris.cluster.modify RBAC authorizations.
  2. Create a scalable resource group to contain the SUNW.wait_zc_boot resource in the global cluster.
    # clresourcegroup create -n nodelist \
    -p rg_mode=Scalable \
    -p maximum_primaries=num-in-list \
    -p desired_primaries=num-in-list \
    [-p rg_mode=Scalable \
    zc-wait-rg
  3. Register the SUNW.wait_zc_boot resource type.
    # clresourcetype register SUNW.wait_zc_boot
  4. Add an instance of the SUNW.wait_zc_boot resource type to the resource group that you created in Step 2.
    # clresource create -g zc-wait-rg -t SUNW.wait_zc_boot \
    -p ZCName=zcname zc-wait-rs
  5. Bring online and in a managed state the resource group that you created in Step 2.
    # clresourcegroup online -emM zc-wait-rg
  6. Create a failover resource group to contain the resources for the Sun QFS metadata server.

    Set a strong positive affinity by the resource group for the resource group that contains the SUNW.wait_zc_boot resource that is configured for the zone cluster.

    If you also use a volume manager, set a strong positive affinity by the resource group for the resource group that contains the volume manager's scalable device-group resource. This resource group is created in How to Create a Resource for a Scalable Device Group in the Global Cluster.

    # clresourcegroup create -n nodelist \
    -p rg_affinities=++wait-zc-rg[,++scal-dg-rg] \
    [-p rg_description="description"] \
    qfs-mds-rg
  7. Register the SUNW.qfs resource type.
    # clresourcetype register SUNW.qfs
  8. Add an instance of the SUNW.qfs resource type to the resource group that you created in Step 6 for each Sun QFS shared file system that you are using.

    Each instance of SUNW.qfs represents the metadata server of the file system.

    Set a strong dependency by the instance of SUNW.qfs on the SUNW.wait_zc_boot resource that is configured for the zone cluster.

    If you are also using a volume manager, set a strong dependency by the instance of SUNW.qfs on the resource for the scalable device group that is to store the file system. This resource is created in How to Create a Resource for a Scalable Device Group in the Global Cluster.

    # clresource create -t SUNW.qfs -g qfs-mds-rg \
    -p qfsfilesystem=path 
    \-p resource_dependencies=zc-wait-rs[,scal-dg-rs] \
    qfs-mds-rs
  9. Bring online and in a managed state the resource group that you created in Step 6.
    # clresourcegroup online -emM qfs-mds-rg