Veritas Enterprise Vault™ Backup and Recovery

Last Published:
Product(s): Enterprise Vault (12.1)
  1. About this guide
    1. Where to get more information about Enterprise Vault
      1.  
        Enterprise Vault training modules
  2. Introduction to Enterprise Vault backup and recovery
    1.  
      About backup and recovery
  3. Backing up Enterprise Vault
    1.  
      About Enterprise Vault backups
    2.  
      About Enterprise Vault backup mode
    3. Backup of Enterprise Vault data
      1.  
        Enterprise Vault system databases backup
      2.  
        Fingerprint databases backup
      3. Vault store partitions and vault store databases backup
        1.  
          Removal of Enterprise Vault safety copies after backup
      4.  
        Backing up index locations
    4. About backup mode cmdlets
      1.  
        Index location backup mode cmdlet syntax
      2.  
        Vault store backup mode cmdlet syntax
    5.  
      Generating PowerShell backup commands for your environment
    6.  
      Using PowerShell cmdlets in backup scripts
  4. Enterprise Vault recovery procedures
    1.  
      About using EVSVR as part of the recovery procedure
    2. Recovering Enterprise Vault using full system backups
      1.  
        Carrying out an environment recovery procedure
    3. Recovering Enterprise Vault using data-only backups
      1.  
        Recovery procedure 1: Installing software on the servers
      2.  
        Recovery procedure 2: Restoring Enterprise Vault system databases
      3.  
        Recovery procedure 3: Renaming servers
      4.  
        Recovery procedure 4: Copy or move the Enterprise Vault data files
      5.  
        Recovery procedure 5: Clearing the directory database entries
      6.  
        Recovery procedure 6: Recreating services and tasks on the first Directory service computer
      7.  
        Recovery procedure 7: Recreating services and tasks on Enterprise Vault servers
      8.  
        Recovery procedure 8: Checking the Web Access application settings
      9.  
        Recovery procedure 9: Checking registry entries
    4.  
      Recovery of an Enterprise Vault component
    5. Recovery of Enterprise Vault in a VCS cluster
      1.  
        Recovery scenario 1: One of the cluster nodes needs rebuilding
      2.  
        Recovery scenario 2: All the cluster nodes need rebuilding
    6. Recovery of Enterprise Vault in a Windows Server failover cluster
      1.  
        Recovery scenario 1: One of the cluster nodes needs rebuilding
      2.  
        Recovery scenario 2: All the cluster nodes need rebuilding

About backup mode cmdlets

Enterprise Vault provides a set of PowerShell cmdlets which you can use to set and clear backup mode on the following:

  • Vault stores

  • Vault store groups

  • Index locations

You can run these cmdlets directly in the Enterprise Vault Management Shell, and use them in your backup scripts. For example, use the cmdlets in a pre-backup script to set backup mode on index locations and vault stores before the backup is taken. After the backup has completed, use the cmdlets in a post-backup script to clear backup mode.

For each index location and vault store, Enterprise Vault maintains a count of the number of set requests and clear requests, to support the use of concurrent backup scripts. Enterprise Vault increments the count by 1 on each request to set backup mode, and decrements the count by 1 on each request to clear backup mode.

When you use concurrent backup scripts, Enterprise Vault does not clear backup mode from a vault store or an index location until all the scripts that have set backup mode, have also cleared backup mode.

Note:

When you use the Administration Console to clear backup mode from an index location or vault store, Enterprise Vault ignores the backup mode count and forcibly clears backup mode.

To run PowerShell cmdlets directly, first run the Enterprise Vault Management Shell

  • Start the Enterprise Vault Management Shell.

    PowerShell opens and loads the Enterprise Vault snap-in which makes the backup mode cmdlets available in the shell.

The Enterprise Vault Management Shell provides the following backup mode cmdlets:

Get-IndexLocationBackupMode

Reports the current backup mode settings on index locations.

Set-IndexLocationBackupMode

Increments the backup mode count on index locations.

Clear-IndexLocationBackUpMode

Decrements the backup mode count on index locations.

Get-VaultStoreBackupMode

Reports the current backup mode settings on vault stores.

Set-VaultStoreBackupMode

Increments the backup mode count on vault stores.

Clear-VaultStoreBackupMode

Decrements the backup mode count on vault stores.

Help is available for all the cmdlets. For example, the following command shows the detailed Help for Clear-VaultStoreBackupMode:

Get-Help Clear-VaultStoreBackupMode -detailed

You can also generate PowerShell backup mode commands that are based on the configuration of your environment and ready for use in your backup scripts.

See Generating PowerShell backup commands for your environment.