Veritas NetBackup™ Flex Scale Administrator's Guide

Last Published:
Product(s): Appliances (1.3)
Platform: NetBackup Flex Scale OS
  1. Product overview
    1.  
      About Veritas NetBackup™ Flex Scale
  2. Viewing information about the NetBackup Flex Scale cluster environment
    1.  
      About the NetBackup Flex Scale management console
    2.  
      About the Dashboard view
    3.  
      Accessing the NetBackup web user interface on the appliance
    4.  
      Working with NetBackup Flex Scale APIs
  3. NetBackup Flex Scale infrastructure management
    1. User management
      1.  
        Considerations for managing NetBackup Flex Scale users
      2.  
        Adding users
      3.  
        Removing users
    2.  
      Directory services and certificate management
    3.  
      Region settings management
    4.  
      About NetBackup Flex Scale storage
    5. Node and disk management
      1.  
        NetBackup Flex Scale network cabling
      2. Adding a node to the cluster using the NetBackup Flex Scale web interface
        1.  
          Considerations for adding a node when disaster recovery is configured
      3.  
        Adding a node using the REST APIs
      4.  
        Replacing a node in a cluster
      5.  
        Starting and stopping nodes
      6.  
        Replacing a disk
      7.  
        Viewing disk details
      8.  
        Viewing node details
    6. License management
      1.  
        Adding or removing storage licenses
      2.  
        Adding NetBackup licenses
  4. NetBackup Flex Scale network management
    1.  
      About network management
    2.  
      Modifying DNS settings
    3.  
      About bonding Ethernet interfaces
    4. Bonding operations
      1.  
        Creating a bond
      2.  
        Modifying a bond
      3.  
        Removing a bond
    5. Data network configurations
      1. Network configuration on plain device (eth5)
        1.  
          Adding a data network
        2.  
          Modifying a data network
        3.  
          Deleting a data network
      2.  
        Network configuration on VLAN (eth5)
      3. Network configuration on bonded interfaces (bond0 on eth5 and eth7)
        1.  
          Adding a data network
      4.  
        VLAN on bond of eth5 and eth7 (bond0)
      5.  
        Support for multiple VLAN when disaster recovery is configured
  5. NetBackup Flex Scale infrastructure monitoring
    1. About alert management
      1.  
        Viewing information about alerts
      2.  
        Managing alerts
    2. About event notification
      1.  
        Purging events
    3. About AutoSupport and Call Home
      1.  
        Setting up email alerts
      2.  
        Setting up SNMP alerts
      3.  
        Configuring Call Home settings
    4.  
      Monitoring hardware components
  6. Resiliency in NetBackup Flex Scale
    1.  
      Erasure coding in NetBackup Flex Scale
    2.  
      High availability of the NetBackup master service
    3.  
      NetBackup catalog protection
    4.  
      NetBackup master service catalog protection using checkpoints
  7. Site-based disaster recovery in NetBackup Flex Scale
    1.  
      About site-based disaster recovery in NetBackup Flex Scale
    2.  
      Establishing trust and setting up authentication
    3.  
      Configuring disaster recovery
    4.  
      Managing disaster recovery
    5.  
      Clearing the host cache
    6.  
      NetBackup optimized duplication using Storage Lifecycle Policies
  8. NetBackup Flex Scale security
    1.  
      STIG overview for NetBackup Flex Scale
    2.  
      STIG-compliant password policy rules
    3.  
      Enabling STIG for NetBackup Flex Scale
    4.  
      Viewing the NetBackup Flex Scale STIG status
    5.  
      FIPS overview for NetBackup Flex Scale
    6.  
      Viewing the NetBackup Flex Scale FIPS status
  9. Troubleshooting
    1.  
      Services management
    2. Collecting logs for cluster nodes
      1.  
        Uploading logs to Veritas Support
      2.  
        Downloading logs
    3. Troubleshooting NetBackup Flex Scale issues
      1.  
        If cluster configuration fails (for example because an IP address that was already in use is specified) and you try to reconfigure the cluster, the UI displays an error but the configuration process continues to run
    4.  
      Validation error while adding VMware credentials to NetBackup
    5.  
      NetBackup Web UI incorrectly displays some NetBackup Flex Scale processes as failed
  10. Appendix A. Configuring NetBackup optimized duplication
    1. Configuring a Storage Lifecycle Policy for optimized duplication
      1.  
        Creating a Storage Lifecycle Policy for optimized duplication
      2.  
        Configuring a policy to use an SLP
      3.  
        Updating the policy to reverse the replication direction
  11. Appendix B. Disaster recovery terminologies
    1.  
      VVR technology in disaster recovery
    2.  
      About response fields in the GET disaster recovery API

NetBackup master service catalog protection using checkpoints

In NetBackup Flex Scale, you can protect your master service from software failures or from being corrupted using checkpoints. The checkpoints are created for the master service catalog file system every 2 hours according to a schedule. The maximum number of checkpoints is 36. Once the total number of checkpoints exceed 36, the oldest checkpoint is deleted and a new checkpoint is created. A new file system with the name SCRATCH_<XXXXX> is created which acts as a scratch space for the recovery process. This file system is used for syncing and validating data from the checkpoint. The scratch file system is created during initial configuration. The scratch file system is erasure-coded with logging having the same layout (8:4) as the other data file systems. The file system is extended when the NetBackup master service storage grows (during the addition of the sixth node).

All the checkpoints consume storage from the same volume set. As the checkpoints are copy-on-write, only modified data gets pushed to the checkpoints. But depending on data change rate, the checkpoints can consume considerable storage. If the primary fileset cannot allocate storage during the write or file creation operation, instead of returning an ENOSPC error to the user, the oldest checkpoint is automatically deleted to make space.

You can use REST APIs for the recovery of master service catalog file system from the checkpoints. The REST API calls should be made in the following order:

  1. Get the list of checkpoints for the master service catalog file system. This API returns a list of all the available checkpoints for the master catalog file system. The checkpoints can be used to recover the data.

    GET /api/appliance/v1.0/netbackup/checkpoints
    URI : /api/appliance/v1.0/netbackup/checkpoints
    Type : GET
    Response Body:
          {
      	"links": {
        	  "self": {
          	    "href": "/api/appliance/v1.0/netbackup/checkpoints"
              }
            },
      	"data": [
        	  {
          	    "type": "netbackup",
          	    "id": "1",
                "links": {
                  "self": {
                    "href": "/api/appliance/v1.0/netbackup/checkpoints/
    																	checkpoint1"
                  }
                }
              }
            ]
          }

    The checkpoint name which is returned by this API should be passed as input to the API which is called to restore the catalog.

  2. Recover and validate the data from the checkpoint. This API recovers the data from the checkpoint to the scratch space file system and then runs the NetBackup database validation on the recovered data.

    POST /api/appliance/v1.0/netbackup/checkpoints/restore-catalog/
    {checkpointName}
    URI: /api/appliance/v1.0/netbackup/checkpoints/restore-catalog/{
    checkpointName}
    Type : POST
    Input Parameter for Request : Checkpoint name
    Response: 
    	{
      	    "taskId": "string",
      	    "message": "string"
    	}

    This is an asynchronous API and it returns a task ID when API execution is successful. You can find the execution status and details by providing this taskID as input in the GET {taskId} API. The task is also visible in GUI.

  3. Restore the data to the master service catalog file system. This API restores the data from the scratch space file system to the master service catalog file system.

    POST /api/appliance/v1.0/netbackup/checkpoints/sync-catalog
    URI : /api/appliance/v1.0/netbackup/checkpoints/sync-catalog
    Type : POST
    Input Parameters : None
    Response :
    	{
      	    "taskId": "string",
      	    "message": "string"
    	}

    This is an asynchronous API and it returns a task ID when API execution is successful. You can find the execution status and details by providing this taskID as input in the GET {taskId} API. The task is also visible in GUI.

Note:

When the master service catalog file system is recovered using an old checkpoint, the master service goes back to the point in time of the checkpoint. The images created after that point in time will remain in the system and cannot be accessed unless they are reimported.

For more details on import, see the Importing backup images, Phase I and Importing backup images, Phase II sections in the NetBackup Administrator's Guide, Volume I.