JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Cluster System Administration Guide     Oracle Solaris Cluster 4.1
search filter icon
search icon

Document Information

Preface

1.  Introduction to Administering Oracle Solaris Cluster

2.  Oracle Solaris Cluster and RBAC

3.  Shutting Down and Booting a Cluster

4.  Data Replication Approaches

5.  Administering Global Devices, Disk-Path Monitoring, and Cluster File Systems

6.  Administering Quorum

7.  Administering Cluster Interconnects and Public Networks

8.  Adding and Removing a Node

9.  Administering the Cluster

10.  Configuring Control of CPU Usage

11.  Updating Your Software

12.  Backing Up and Restoring a Cluster

A.  Example

Configuring Host-Based Data Replication With Availability Suite Software

Understanding Availability Suite Software in a Cluster

Data Replication Methods Used by Availability Suite Software

Remote Mirror Replication

Point-in-Time Snapshot

Replication in the Example Configuration

Guidelines for Configuring Host-Based Data Replication Between Clusters

Configuring Replication Resource Groups

Configuring Application Resource Groups

Configuring Resource Groups for a Failover Application

Configuring Resource Groups for a Scalable Application

Guidelines for Managing a Takeover

Task Map: Example of a Data Replication Configuration

Connecting and Installing the Clusters

Example of How to Configure Device Groups and Resource Groups

How to Configure a Device Group on the Primary Cluster

How to Configure a Device Group on the Secondary Cluster

How to Configure the File System on the Primary Cluster for the NFS Application

How to Configure the File System on the Secondary Cluster for the NFS Application

How to Create a Replication Resource Group on the Primary Cluster

How to Create a Replication Resource Group on the Secondary Cluster

How to Create an NFS Application Resource Group on the Primary Cluster

How to Create an NFS Application Resource Group on the Secondary Cluster

Example of How to Enable Data Replication

How to Enable Replication on the Primary Cluster

How to Enable Replication on the Secondary Cluster

Example of How to Perform Data Replication

How to Perform a Remote Mirror Replication

How to Perform a Point-in-Time Snapshot

How to Verify That Replication Is Configured Correctly

Example of How to Manage a Takeover

How to Update the DNS Entry

Index

How to Configure the File System on the Primary Cluster for the NFS Application

Before You Begin

Complete the procedure How to Configure a Device Group on the Secondary Cluster.

  1. On nodeA and nodeB, assume the role that provides solaris.cluster.admin RBAC authorization.
  2. On nodeA and nodeB, create a mount-point directory for the NFS file system.

    For example:

    nodeA# mkdir /global/mountpoint
  3. On nodeA and nodeB, configure the master volume to not be mounted automatically on the mount point.

    Add or replace the following text in the /etc/vfstab file on nodeA and nodeB. The text must be on a single line.

    /dev/md/nfsset/dsk/d200 /dev/md/nfsset/rdsk/d200 \
    /global/mountpoint ufs 3 no global,logging
  4. On nodeA and nodeB, create a mount point for metadevice d204.

    The following example creates the mount point /global/etc.

    nodeA# mkdir /global/etc
  5. On nodeA and nodeB, configure metadevice d204 to be mounted automatically on the mount point.

    Add or replace the following text in the /etc/vfstab file on nodeA and nodeB. The text must be on a single line.

    /dev/md/nfsset/dsk/d204 /dev/md/nfsset/rdsk/d204 \
    /global/etc ufs 3 yes global,logging
  6. Mount metadevice d204 on nodeA.
    nodeA# mount /global/etc
  7. Create the configuration files and information for the Oracle Solaris Cluster HA for NFS data service.
    1. Create a directory called /global/etc/SUNW.nfs on nodeA.
      nodeA# mkdir -p /global/etc/SUNW.nfs
    2. Create the file /global/etc/SUNW.nfs/dfstab.nfs-rs on nodeA.
      nodeA# touch /global/etc/SUNW.nfs/dfstab.nfs-rs
    3. Add the following line to the /global/etc/SUNW.nfs/dfstab.nfs-rs file on nodeA.
      share -F nfs -o rw -d "HA NFS" /global/mountpoint

Next Steps

Go to How to Configure the File System on the Secondary Cluster for the NFS Application.