JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Cluster Data Services Developer's Guide     Oracle Solaris Cluster
search filter icon
search icon

Document Information

Preface

1.  Overview of Resource Management

2.  Developing a Data Service

3.  Resource Management API Reference

4.  Modifying a Resource Type

5.  Sample Data Service

6.  Data Service Development Library

7.  Designing Resource Types

8.  Sample DSDL Resource Type Implementation

9.  Solaris Cluster Agent Builder

10.  Generic Data Service

Generic Data Service Concepts

Precompiled Resource Type

Advantages and Disadvantages of Using the GDS

Ways to Create a Service That Uses the GDS

GDS and Agent Builder

GDS and Solaris Cluster Administration Commands

Selecting the Method to Use to Create a GDS-Based Service

How the GDS Logs Events

GDS Log Files

Required GDS Properties

Port_list Property

Start_command Property

Optional GDS Properties

Child_mon_level Property

Failover_enabled Property

Log_level Property

Network_aware Property

Network_resources_used Property

Probe_command Property

Probe_timeout Property

Start_timeout Property

Stop_command Property

Stop_signal Property

Stop_timeout Property

Validate_command Property

Validate_timeout Property

Using Agent Builder to Create a Service That Uses the GDS

Creating and Configuring GDS-Based Scripts

How to Start Agent Builder and Create the Scripts

How to Configure the Scripts

Output From Agent Builder

Using Solaris Cluster Administration Commands to Create a Service That Uses the GDS

How to Use Solaris Cluster Administration Commands to Create a Highly Available Service That Uses the GDS

How to Use Solaris Cluster Administration Commands to Create a Scalable Service That Uses the GDS

Command-Line Interface for Agent Builder

How to Use the Command-Line Version of Agent Builder to Create a Service That Uses GDS

11.  DSDL API Functions

12.  Cluster Reconfiguration Notification Protocol

A.  Sample Data Service Code Listings

B.  DSDL Sample Resource Type Code Listings

C.  Requirements for Non-Cluster Aware Applications

D.  Document Type Definitions for the CRNP

E.  CrnpClient.java Application

Index

Command-Line Interface for Agent Builder

Agent Builder incorporates a command-line interface that provides the same functionality that the GUI provides. This interface consists of the commands scdscreate and scdsconfig. See the scdscreate(1HA) and scdsconfig(1HA) man pages.

How to Use the Command-Line Version of Agent Builder to Create a Service That Uses GDS

This section describes how to use the command-line interface to perform the same set of steps shown in Using Agent Builder to Create a Service That Uses the GDS.

  1. Become superuser or assume a role that provides solaris.cluster.modify RBAC authorization.
  2. Create the service.
    • For a failover service, type:

      # scdscreate -g -V NET -T app -d /export/wdir
    • For a scalable service, type:

      # scdscreate -g -s -V NET -T app -d /export/wdir

    Note - The -d argument is optional. If you do not specify this argument, the current directory becomes the working directory.


  3. Configure the service.
    # scdsconfig -s "/export/app/bin/start" \
    -e "/export/app/bin/configtest" \
    -t "/export/app/bin/stop" \
    -m "/export/app/bin/probe" -d /export/wdir

    You can specify property variables. Property variables are described in Using Property Variables.


    Note - Only the start command (scdsconfig -s) is required. All other options and arguments are optional.


  4. On each node of the cluster, install the completed package.
    # cd /export/wdir/NETapp/pkg
    # pkgadd -d . NETapp

    The following files are installed by pkgadd:

    /opt/NETapp
    /opt/NETapp/README.app
    /opt/NETapp/man
    /opt/NETapp/man/man1m
    /opt/NETapp/man/man1m/removeapp.1m
    /opt/NETapp/man/man1m/startapp.1m
    /opt/NETapp/man/man1m/stopapp.1m
    /opt/NETapp/man/man1m/app_config.1m
    /opt/NETapp/util
    /opt/NETapp/util/removeapp
    /opt/NETapp/util/startapp
    /opt/NETapp/util/stopapp
    /opt/NETapp/util/app_config

    Note - The man pages and script names correspond to the application name that you typed previously on the Create screen, preceded by the script name (for example, startapp).


  5. On one node of the cluster, configure the resources and start the application.
    # /opt/NETapp/util/startapp -h logicalhostname -p port-and-protocol-list

    The arguments to the startapp script vary according to the type of resource: failover or scalable.


    Note - To determine the command line that you need to type, check the customized man page or run the startapp script without any arguments to display a usage statement.

    To view the man pages, you need to specify the path to the man page. For example, to view the startapp(1M) man page, type:

    # man -M /opt/NETapp/man startapp

    To display a usage statement, type:

    # /opt/NETapp/util/startapp
     The resource name of LogicalHostname or SharedAddress must be specified.
     For failover services:
     Usage: startapp -h logicalhostname
              -p port-and-protocol-list
              [-n ipmpgroup/adapter-list]
     For scalable services:
     Usage: startapp -h shared-address-name
              -p port-and-protocol-list
              [-l load-balancing-policy]
              [-n ipmpgroup/adapter-list]
              [-w load-balancing-weights]