JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun Storage Archive Manager 5.3 Configuration and Administration Guide     Sun QFS and Sun Storage Archive Manager 5.3 Information Library
search filter icon
search icon

Document Information

Preface

1.  About SAM-QFS

2.  Configuring Storage Devices for Archiving

Task Map: Configuring Storage Devices for Archiving

Adding Tape Devices for Archiving

Files that Contain Configuration Information

How to Add Tape Devices for Archiving (Command Line)

How to Add Tape Drive Interface Target IDs and LUNs for Archiving (Command Line)

How to Add Tape Devices for Archiving (SAM-QFS Manager)

Adding Libraries or Magneto-Optical Drives for Archiving

How to Configure Device Support in SCSI or FC Environments Using SAM-QFS Manager

How to Configure Device Support for a Direct-Attached Library

Recovering After a Direct-Attached Library Fails to Initialize

Verifying and Implementing Configurations

How to Verify That All Devices Are Configured and Implement the Changes

Handling Errors in the st.conf File

3.  Performing Additional SAM-QFS Configuration

4.  Creating Parameters Files for Network-Attached Automated Libraries

5.  Checking the Drive Order in Libraries

6.  Populating the Catalog

7.  Managing Automated Libraries and Manually Loaded Drives

8.  Managing Vendor-Specific Libraries

9.  About Archiving

10.  Configuring the Archiver

11.  Archive Directives (archiver.cmd)

12.  Archive Set Directives (archiver.cmd)

13.  Data Integrity Validation in SAM-QFS

14.  About Releasing

15.  Configuring the Stager

16.  Configuring the Recycler

17.  Advanced SAM-QFS Topics

18.  Using the Sun SAM-Remote Software

Adding Libraries or Magneto-Optical Drives for Archiving

The inquiry.conf file lists all of the supported devices.

The /kernel/drv/samst.conf file contains a list of SCSI and FC entries and works with the /opt/SUNWsamfs/examples/inquiry.conf file to define the devices that can be included in a SAM-QFS environment.

The following procedures show how to verify the entries in the samst.conf file and to update the file, if necessary.

Update the samst.conf file as follows:

How to Configure Device Support in SCSI or FC Environments Using SAM-QFS Manager

Repeat this procedure for each device in your environment.

  1. On the SAM-QFS Manager Managed Hosts page, select the name of the server to which you want to add a library.

    The File Systems Summary page appears.

  2. Expand the Archive Media section and select Tape Libraries.

    The Tape Library Summary page appears.

  3. Click Add to start the Add a Library wizard.
  4. Follow the steps to add the device.

    When you complete the wizard steps, the samst.conf file is automatically updated.

How to Configure Device Support for a Direct-Attached Library

  1. Create a backup copy of the /kernel/drv/samst.conf file.
    # cp /kernel/drv/samst.conf /kernel/drv/samst.conf.orig
  2. Open the /kernel/drv/samst.conf file.
  3. Include SCSI-attached magneto-optical drives or SCSI-attached libraries.
    1. Search for entries that have the following format to locate the list of SCSI targets and LUNs:
      name="samst" class="scsi" target=target lun=lun;

      target is the target ID for each SCSI drive found and lun is the corresponding LUN for each SCSI drive found.

    2. Find the entry that corresponds to each SCSI target ID and LUN on your inventory list.

      For example, the StorageTek 9730 automated library is attached to target 0 and LUN 0. The following line corresponds to that interface:

      name="samst" class="scsi" target=0 lun=0;

      Note that some entries might extend over two lines if it includes return characters.

      • If an entry starts with a hash character (#), remove the character. A hash (#) character marks a line as a comment.

      • If an entry is missing, create an entry for the SCSI target and LUN line. Follow the format shown in Step 3a and use the information in your hardware inventory list.

  4. Create a line for each FC-attached magneto-optical drive or FC-attached automated library in your inventory list.

    Use the following format:

    name="samst" parent="fp" lun=lun fc-port-wwn="world-wide-name"

    lun specifies the LUN for the drive and world-wide-name specifies the WWN for the drive.

    The following example shows the line added to support the StorageTek L700 tape drive in Table 2-1.

    name="samst" parent="fp" lun=0 fc-port-wwn="500104f00041182b"
  5. Save your changes, and exit the samst.conf file.

Recovering After a Direct-Attached Library Fails to Initialize

A direct-attached library may fail to initialize after an ENOENT error while trying to open a samst device. The example below shows how to exclude a STK SL500 library so that the samstsamst device binds as needed at mount time. Add lines similar to the following to the /kernel/drv/scsi_vhci.conf file, replacing STK SL500 with the string for the type of library that you are using:

#
device-type-scsi-options-list =
"STK     SL500", "disable-option";

disable-option = 0x7000000;

For more information, see the scsi_vhci(7D) man page.