Veritas Access NetBackup Solutions Guide

Last Published:
Product(s): Access (7.4)
Platform: Linux
  1. Veritas Access integration with NetBackup
    1.  
      About Veritas Access
    2.  
      About Veritas Access as a NetBackup client
    3.  
      About Veritas Access as backup storage for NetBackup
    4.  
      Use cases for long-term data retention
    5.  
      Benefits of using Veritas Access with NetBackup and OpenDedup/CloudCatalyst
  2. System requirements
    1.  
      System requirements for OpenDedup installation
    2.  
      Supported configurations and versions for NetBackup with OpenDedup
    3.  
      Supported configurations and versions for NetBackup with CloudCatalyst
  3. Configuring Veritas Access backup over S3 with OpenDedup and NetBackup
    1.  
      Workflow for OpenDedup
    2.  
      Use case 1: Backing up deduplicated data (OpenDedup and NetBackup) using the S3 protocol to Veritas Access
    3.  
      Use case 2: Backing up data (NetBackup) and deduplicating the data (OpenDedup) on Veritas Access
    4.  
      Creating an S3 bucket on Veritas Access for storing deduplicated backup data from NetBackup
    5.  
      Creating a Media Server Deduplication Pool (MSDP) for primary backup using NetBackup
    6.  
      Creating an OST disk pool and STU in the NetBackup console
    7.  
      Setting up multiple NetBackup media servers in the same domain
    8.  
      Setting up multiple SDFS volumes on a NetBackup media server
  4. Configuring Veritas Access as a cloud storage server with NetBackup CloudCatalyst
    1.  
      Creating an S3 bucket on Veritas Access for storing deduplicated backup data from NetBackup
    2.  
      Configure Veritas Access as a cloud storage server on NetBackup server
  5. Configuring backup and restore using NetBackup policies
    1.  
      Storage Lifecycle Policies
    2.  
      Backup and restore
    3.  
      Running a backup policy manually
    4.  
      Restoring backed up files
  6. Troubleshooting
    1.  
      Unmounting the SDFS volume before restarting Veritas Access or the NetBackup media server
    2.  
      Log locations for troubleshooting
    3.  
      Additional resources
    4.  
      Generating Veritas Access S3 server keys using the helper script

Setting up multiple SDFS volumes on a NetBackup media server

The OST connector supports multiple SDFS volumes on the same media server but additional steps are required to support this configuration.

To set up multiple SDFS volumes on a NetBackup media server

  1. Follow the instructions for setting up the OST connector on each NetBackup media server that uses the OST connector.

    See Use case 1: Backing up deduplicated data (OpenDedup and NetBackup) using the S3 protocol to Veritas Access.

  2. Edit the /etc/sdfs/ostconfig.xml and add a new <CONNECTION> tag inside of the <CONNECTIONS> tag for the new volume.

    Add a name that is unique to the <NAME> tag and specify the new volume name in the <LSU_NAME> tag (pool1).

    In the new <CONNECTION> tag, add the port number identified by running the mount command to the <URL> tag (http://localhost:6443/) as shown in the example output.

    [root@host1 ~]# mount | grep opendedupe
    sdfs:/etc/sdfs/S3fs1497346133-volume-cfg.xml:6443 on
    /opendedupe/volumes/S3fs1497346133 type fuse
    (rw,nosuid,nodev,allow_other,allow_other)
    sdfs:/etc/sdfs/S3fs1497258807-volume-cfg.xml:6442 on
    /opendedupe/volumes/pool1 type fuse
    (rw,nosuid,nodev,allow_other,allow_other)

    The following is a complete example of an ostconfig.xml file with two volumes.

    <!-- This is the config file for the OST connector for opendedup and Netbackup -->
    <CONNECTIONS>
    <CONNECTION>
    <!--NAME is the local server name that you will reference within Netbackup -->
    <NAME>
    local
    </NAME>
    <LSU_NAME>
    svol4
    </LSU_NAME>
    <URL>
    http://localhost:6442/
    </URL>
    <!--PASSWD - The password of the volume if one is required for this sdfs volume -->
    <PASSWD>admin</PASSWD>
    <!-
    <SERVER_SHARE_PATH>
    A_SUBDIRECTORY_UNDER_THE_MOUNT_PATH
    </SERVER_SHARE_PATH>
    -->
    </CONNECTION>
    <!-- Below is the new volume-->
    <CONNECTION>
    <!--NAME is the local server name that you will reference within Netbackup -->
    <NAME>
    hostname0
    </NAME>
    <LSU_NAME>
    svol10
    </LSU_NAME>
    <URL>
    http://localhost:6443/
    </URL>
    <!--PASSWD - The password of the volume if one is required for this sdfs volume -->
    <PASSWD>admin</PASSWD>
    <!--
    <SERVER_SHARE_PATH>
    A_SUBDIRECTORY_UNDER_THE_MOUNT_PATH
    </SERVER_SHARE_PATH>
    -->
    </CONNECTION>
    </CONNECTIONS>