Veritas NetBackup™ for Hyper-V Administrator's Guide
- Introduction
- Notes and prerequisites
- Configure NetBackup communication with Hyper-V
- Configure NetBackup policies for Hyper-V
- Hyper-V backup options
- Hyper-V - Advanced Attributes
- Configuration parameters for Hyper-V
- Browse for Hyper-V virtual machines
- Configure Hyper-V Intelligent Policies
- NetBackup Hyper-V for SCVMM
- Windows Server failover cluster support
- Virtual machine maintenance after a restore
- Back up and restore Hyper-V
- Restoring individual Hyper-V files to a shared location on the virtual machine
- Use Accelerator to back up Hyper-V
- Best practices and more information
- Troubleshooting
- NetBackup logs for Hyper-V and how to create them
- Errors during policy creation
- NetBackup status codes related to Hyper-V
- Appendix A. VSS backup method: Hyper-V online and offline backups
- Appendix B. Hyper-V pass-through disks
- Appendix C. NetBackup commands to back up and restore Hyper-V virtual machines
- Examples of nbrestorevm for restoring VMs to Hyper-V
Hyper-V examples of restore to alternate locations
For restore to an alternate location, NetBackup 8.0 adds new restore features for VMs that were backed up with the WMI method:
A new VM GUID is generated by default when you restore a VM to an alternate location.
As an option, you can choose to keep the original GUID.
You can specify a new display name when you restore the VM.
nbrestorevm -vmhvnew - C VM_to_restore - R absolute_path_to_rename_file
In the -R option rename file, enter the full path to a text file that contains the following kinds of entries:
change /original_VM_GUID.xml_path to /new_VM_GUID.xml_path change /original_VM_GUID.bin_path to /new_VM_GUID.bin_path change /original_VM_GUID.vsv_path to /new_VM_GUID.vsv_path change /original_VM.vhd_path to /new_VM.vhd_path
Make sure to include all four change entries to specify locations for the VM's files (xml, bin, vsv, vhd). If any of the VM file paths are omitted, the restore may not succeed.
Note:
From the backups that were made with the WMI method, nbrestorevm generates a new VM GUID by default when you restore to an alternate location. To retain the original GUID, add the -vmid option.
Note:
Each change line must end with a carriage return.
Note:
If the - R option is omitted, the VM is restored to its original location.
See The nbrestorevm -R rename file for Hyper-V.
nbrestorevm.exe -vmhvnew -C vm1.acme.com -S master44.acme.com -vmserver HVserver6.acme.com -vmid -R \C:\vmadmin\renamefile1
The -vmserver option specifies the restore destination (HVserver6.acme.com).
The -S option specifies the master server that made the WMI backup (different from the current master).
The -vmid option retains the original GUID for the restored VM. To generate a new GUID, omit the -vmid option.
The -R option identifies a text file that uses change directives to specify file paths for restore to the alternate location.
Note:
The -R option must specify the absolute path to the rename file. In this example,
renamefile1
contains the following directives to change the VM's file paths at the alternate restore location:
change /F/VMs/vm1/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.VMRS to /D/VMs/vm1/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.VMRS change /F/VMs/vm1/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.vmcx to /D/VMs/vm1/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.vmcx change /F/VMs/vm1/Virtual Hard Disks/vm1.vhdx to /D/VMs/vm1/Virtual Hard Disks/vm2.vhdx
nbrestorevm -vmhvnew - C VM_to_restore - R absolute_path_to_rename_file -vm_server Hyper-V_server -w
The -vm_server option specifies the target server for the restore.
See example A or B for rename file examples.
nbrestorevm.exe -vmhvstage -S master44.acme.com -C vm6.acme.com -O -vmserver HVserver6.acme.com -R "C:\Program Files\Veritas\NetBackup \Logs\44\Admin\logs\rfile4.tmp.chg" -L "C:\Program Files\Veritas\NetBackup \Logs\44\Admin\logs\rfile4.tmp.log"
The -vmhvstage option restores the virtual machine files to a staging location.
The -vmserver option specifies the host for the staging location.
The -L option specifies the name of an existing file in which to write progress information.
For restore to a staging location, NetBackup does not generate a new GUID.
The file
rfile4.tmp.chg
specifies the new paths for the virtual machine files at the staging location:
change /F/VMs/vm6/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.VMRS to /E/VMs/vm6/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.VMRS change /F/VMs/vm6/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.vmcx to /E/VMs/vm6/2D7C007E-90FB-44EC-ABB2-6733D42A51F5.vmcx change /F/VMs/vm6/Virtual Hard Disks/vm1.vhdx to /E/VMs/vm6/Virtual Hard Disks/vm2.vhdx