NetBackup™ Web UI Cloud Administrator's Guide

Last Published:
Product(s): NetBackup (10.0)
  1. Introducing the NetBackup web user interface
    1.  
      About the NetBackup web UI
    2.  
      Terminology
    3.  
      Sign in to the NetBackup web UI
    4.  
      Sign out of the NetBackup web UI
  2. Monitoring NetBackup
    1.  
      The NetBackup dashboard
    2.  
      Job monitoring
    3.  
      Search for or filter jobs in the jobs list
  3. Managing and protecting cloud assets
    1.  
      About protecting cloud assets
    2.  
      Limitations and considerations
    3. Configure CloudPoint servers in NetBackup
      1.  
        Configure a third-party CA certificate
      2.  
        Add a CloudPoint server
      3. Add a cloud provider for a CloudPoint server
        1.  
          IAM Role for AWS Configuration
      4.  
        Associate media servers with a CloudPoint server
      5.  
        Discover assets on CloudPoint server
      6.  
        Edit a CloudPoint server
      7.  
        Enable or disable a CloudPoint server
      8.  
        (Optional) Add the CloudPoint extension
    4. Managing intelligent cloud groups
      1.  
        Create an intelligent cloud group
      2.  
        Delete an intelligent cloud group
    5. Protecting cloud assets or intelligent cloud groups
      1.  
        Customize or edit protection for cloud assets or intelligent groups
      2.  
        Remove protection from cloud assets or intelligent groups
    6.  
      Cloud asset cleanup
    7.  
      AWS and Azure government cloud support
    8. About protecting Microsoft Azure resources using resource groups
      1.  
        Before you begin
      2.  
        Limitations and considerations
      3. About resource group configurations and outcome
        1.  
          Examples of resource group configurations
      4.  
        Troubleshoot resource group permissions
    9. About the NetBackup Accelerator for cloud workloads
      1.  
        How the NetBackup Accelerator works with virtual machines
      2.  
        Accelerator forced rescan for virtual machines (schedule attribute)
      3.  
        Accelerator backups and the NetBackup catalog
      4.  
        Accelerator messages in the backup job details log
    10.  
      Configuring backup schedule for cloud workloads
    11.  
      Backup options for cloud workloads
    12.  
      Snapshot replication
    13.  
      Configure AWS snapshot replication
    14.  
      Using AWS snapshot replication
    15.  
      Support matrix for account replication
    16.  
      Protect applications in-cloud with application consistent snapshots
    17.  
      Discovering PaaS assets
  4. Recovering cloud assets
    1.  
      Recovering cloud assets
    2.  
      Perform rollback recovery of cloud assets
    3.  
      Recovering PaaS assets
  5. Performing granular restore
    1.  
      About granular restore
    2.  
      Supported environment list
    3.  
      List of supported file systems
    4.  
      Before you begin
    5.  
      Limitations and considerations
    6.  
      Restoring files and folders from cloud virtual machines
    7.  
      Restoring volumes on cloud virtual machines
    8.  
      Performing steps after volume restore containing LVM
    9.  
      Troubleshooting
  6. Troubleshooting protection and recovery of cloud assets
    1.  
      Troubleshoot cloud workload protection issues
    2.  
      Troubleshoot PaaS workload recovery issues

Performing steps after volume restore containing LVM

You can perform steps after volume restore for the LVM volumes.

Note:

SFR (Single File Restore) or GRT (Granule Restore) and application restore is performed through the installed agents. But for volume recovery, it is necessary to make the associated file systems online after successful recovery.

To perform steps after volume restore

  1. Run the command to see all newly attached post volumes on to the host.PVS

    If there are duplicate PVs (a warning is displayed on the above command) then run,

    vgimportclone --import /dev/<Device1> /dev/<Device2> ... --basevgname <NewVGName>

    Else, find out the newly created Volume Groups (VG) on the host. If new VGs are not displayed then import the VG using the following command. It will discover new VG as <NewVGName>

    vgimport -a

    vgs

  2. Run below command to list all the logical volumes (new and old)

    lvs <NewVGName>

  3. Activate all the LVs belonging to <NewVGName> as,

    lvchange --activate y /dev/mapper/<NewVGName>-<LVName1>

    lvchange --activate y /dev/mapper/<NewVGName>-<LVName2>

    lvchange --activate y /dev/mapper/<NewVGName>-<LVNameN>

  4. Identify the UUID and file system of an authenticate and newly activated LV.

    blkid -p /dev/mapper/<NewVGName>-<LVName1>

    Output: /dev/mapper/<NewVGName>-<LVName1>: 
    UUID="2a4bdc14-b5eb-4ee6-b876-ebdcb66c55d9" 
    BLOCK_SIZE="4096"TYPE="xfs" USAGE="filesystem"

    blkid -p /dev/mapper/<OldVGName>-<LVName1>

    Output: /dev/mapper/<OldVGName>-<LVName1>: 
    UUID="2a4bdc14-b5eb-4ee6-b876-ebdcb66c55d9" 
    BLOCK_SIZE="4096"TYPE="xfs" USAGE="filesystem"
  5. If the UUID is the same, then you need to change it as follows

    File System

    Steps

    xfs

    mkdir <NewMountPoint>

    mount -o nouuid /dev/mapper/<NewVGName>-<LVName1> <NewMountPoint>

    umount <NewMountPoint>

    xfs_admin -U generate /dev/mapper/<NewVGName>-<LVName1>

    mount /dev/mapper/<NewVGName>-<LVName1> <NewMountPoint>

    ext2 / ext3/ ext4

    mkdir<NewMountPoint>

    tune2fs -U random /dev/mapper/<NewVGName>-<LVName1>

    mount /dev/mapper/<NewVGName>-<LVName1> <NewMountPoint>

  6. If the UUID is different, then run the following command.

    mount /dev/mapper/<NewVGName>-<LVName1> <NewMountPoint>