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

Document Information

Preface

1.  Installing and Configuring HA for Oracle Grid Engine

HA for Oracle Grid Engine Overview

Overview of Installing and Configuring HA for Oracle Grid Engine

Planning the HA for Oracle Grid Engine Installation and Configuration

Configuration Restrictions

Oracle Grid Engine Shadow Daemon

Oracle Grid Engine Berkley DB spooling server

Start at Boot Option

Configuration Requirements

Oracle Grid Engine Software Version Requirements

Operating System for the Oracle Grid Engine Management Tier

Memory Requirements

Disk Space Requirements

HA for Oracle Grid Engine Configuration Requirements

NFS Configuration for the Oracle Grid Engine File System

Oracle Solaris Cluster HA for NFS Configuration Requirements

Dependencies Between Oracle Grid Engine Components

Configuration Considerations

Location of the Oracle Grid Engine Binary Files

File Systems for Spool Directories and Binary Files

Configuration Planning Questions

Preparing the Nodes and Disks

How to Prepare the Nodes and Disks

Installing and Configuring Oracle Grid Engine

How to Install and Configure Oracle Grid Engine

How to Enable Oracle Grid Engine to Run in a Cluster

Verifying the Installation and Configuration of Oracle Grid Engine

How to Verify the Installation and Configuration of Oracle Grid Engine

Installing the HA for Oracle Grid Engine Packages

How to Install the HA for Oracle Grid Engine Packages

Configuring the HAStoragePlus Resource Type to Work With HA for Oracle Grid Engine

How to Register and Configure an HAStoragePlus Resource

Configuring Oracle Solaris Cluster HA for NFS for Use With HA for Oracle Grid Engine

How to Configure Oracle Solaris Cluster HA for NFS for Use With HA for Oracle Grid Engine

Registering and Configuring HA for Oracle Grid Engine

Specifying Configuration Parameters for HA for Oracle Grid Engine Resources

How to Create and Enable HA for Oracle Grid Engine Resources

Setting HA for Oracle Grid Engine Extension Properties

Verifying the HA for Oracle Grid Engine Installation and Configuration

How to Verify the HA for Oracle Grid Engine Installation and Configuration

Tuning the HA for Oracle Grid Engine Fault Monitors

Debugging HA for Oracle Grid Engine

How to Activate Debugging for HA for Oracle Grid Engine

A.  Files for Configuring and Removing HA for Oracle Grid Engine Resources

Index

Configuring Oracle Solaris Cluster HA for NFS for Use With HA for Oracle Grid Engine

You must use NFS to export the Oracle Grid Engine file system to the noncluster nodes. The NFS server that exports this file system must also be protected against failure. To protect the NFS server against failure, use the Oracle Solaris Cluster HA for NFS data service.

The procedure that follows explains only the special requirements for using Oracle Solaris Cluster HA for NFS with HA for Oracle Grid Engine. For complete information about installing and configuring Oracle Solaris Cluster HA for NFS, see Oracle Solaris Cluster Data Service for Network File System (NFS) Guide.

How to Configure Oracle Solaris Cluster HA for NFS for Use With HA for Oracle Grid Engine


Note - Commands in this procedure assume that you have set the $SGE_ROOT environment variable to specify the root of the Oracle Grid Engine file system.


  1. Register the SUNW.nfs resource type.
    # clresourcetype register SUNW.nfs
  2. From any cluster node, create a directory for NFS configuration files.

    Create the directory under root of the Oracle Grid Engine file system. Name the directory SUNW.nfs.

    # mkdir -p $SGE_ROOT/SUNW.nfs
  3. In the directory that you created in Step 2, create a file that contains the share command for the root of the Oracle Grid Engine file system.

    Name the file the dfstab.sge-nfs-rs, where sge-nfs-rs is the name of the NFS resource that you will create in Step 4.

    # echo "share -F nfs -o rw sge-root" \
     > $SGE_ROOT/SUNW.nfs/dfstab.sge-nfs-rs
  4. Add a SUNW.nfs resource to the failover resource group that you created in How to Enable Oracle Grid Engine to Run in a Cluster.
    # clresource create \
    -g sge-rg \
    -t SUNW.nfs \
    -p Resource_dependencies=sge-hasp-rs \
    sge-nfs-rs

Example 1-2 Creating a dfstab File for the Root of the Oracle Grid Engine File System

This example shows the command for creating a dfstab file for the root of the Oracle Grid Engine file system.

# echo "share -F nfs -o rw /global/gridmaster" \
 > /global/gridmaster/SUNW.nfs/dfstab.sge-nfs-rs