Veritas NetBackup™ Flex Scale Installation and Configuration Guide

Last Published:
Product(s): Appliances (3.1)
Platform: NetBackup Flex Scale OS
  1. Preparing for NetBackup Flex Scale deployment
    1.  
      Deployment overview
    2.  
      Deployment options
  2. Configuring NetBackup Flex Scale
    1.  
      Assigning a public IP address to network adapter eth1 of a node
    2.  
      NetBackup Flex Scale configuration methods
    3.  
      Configuring NetBackup Flex Scale using the setup wizard
    4. Configuring NetBackup Flex Scale using a configuration file
      1.  
        YML configuration file for NetBackup primary and media server deployment
      2.  
        YML configuration file for media server only deployment
  3. NetBackup Flex Scale upgrades and patch management
    1.  
      About NetBackup Flex Scale upgrades and EEBs
    2.  
      About rolling upgrade
    3.  
      About parallel upgrade and supported upgrade paths
    4. About the pre-upgrade check
      1.  
        Error messages displayed during the pre-upgrade check
    5. Upgrading NetBackup Flex Scale
      1. Performing pre-upgrade tasks
        1.  
          Considerations for upgrade when disaster recovery is configured
      2.  
        Performing an upgrade using GUI
      3.  
        Post upgrade tasks
      4.  
        Performing an upgrade using REST APIs
    6.  
      Installing EEBs using GUI
    7.  
      Installing EEBs using REST APIs
    8.  
      Updating the firmware in NetBackup Flex Scale clusters
  4. Removing NetBackup Flex Scale
    1. About disk erasure
      1.  
        Configuring data erasure
      2.  
        Viewing the data erasure status
      3.  
        Aborting data erasure
    2.  
      About NetBackup Flex Scale node factory reset
    3.  
      Performing a factory reset on a node
  5. Appendix A. Installing NetBackup Flex Scale using a downloaded ISO file
    1.  
      About NetBackup Flex Scale software installation
    2.  
      Enabling remote IPMI connections
    3.  
      Setting up the RAID configuration on the nodes
    4.  
      Configuring the BIOS settings on the nodes
    5.  
      Downloading the product installer ISO
    6.  
      Mounting the ISO file on the nodes
    7.  
      Installing NetBackup Flex Scale using the ISO
    8.  
      Installing hardware vendor packages
    9.  
      Installing Emergency Engineering Binaries (EEBs)

Installing EEBs using REST APIs

You can perform an upgrade by installing EEBs using REST APIs.

To install EEBs using REST APIs

  1. (Optional) Upload an EEB package file to the cluster. This also downloads the EEB directly.
    POST /api/appliance/v1.0/upgrade/upload

    Usually, the EEB RPM file upload takes around 2 minutes.

  2. Find the list of all the available EEBs (downloaded/installed).
    GET /api/appliance/v1.0/upgrade/eebs
  3. Find the summary of a specific EEB.
    GET /api/appliance/v1.0/upgrade/eebs/{eebName}
  4. (Optional) Find the directory path where the EEB should be placed.
    GET /api/appliance/v1.0/upgrade/path
  5. Install the EEB.
    PATCH /api/appliance/v1.0/upgrade/eebs/{eebName}
  6. You can find the details of the progress of the EEB installation using the task ID.
    GET /api/appliance/v1.0/tasks/{taskId}