Start-VBRApplicationBackupCopyInstantRecovery
Short Description
Starts instant recovery of the application backup repository data from a backup copy restore point.
Platform: VMware, Hyper-V
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Start-VBRApplicationBackupCopyInstantRecovery [-RestorePoint] <COib> -Server <CHost> -RestoreFolder <String> [-Reason <String>] [-RepositoryPermissions <VBRApplicationBackupRepositoryPermission[]>] [-EnableKerberosPermissions] [-KerberosPermissions <VBRApplicationBackupRepositoryKerberosPermission[]>] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet starts an instant recovery session from the backup copy restore point of the application backup repository data. Veeam Backup & Replication mounts the restore point to the temporary folder on the application backup repository host and makes the application data immediately available via NFS.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
EnableKerberosPermissions |
Enables Kerberos authentication for accessing the temporary NFS share. |
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will start instant recovery without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
KerberosPermissions |
Specifies permissions for accessing the temporary NFS share with Kerberos credentials.
Accepts the |
False |
Named |
False |
|
|
Reason |
Specifies the reason for starting instant recovery. The information you provide will be saved in the session history so that you can reference it later. |
|
False |
Named |
False |
|
RepositoryPermissions |
Specifies host permissions for accessing the temporary NFS share.
Accepts the |
False |
Named |
False |
|
|
RestoreFolder |
Specifies the temporary NFS mount path to which Veeam Backup & Replication will mount the backup copy restore point. |
|
True |
Named |
False |
|
RestorePoint |
Specifies the backup copy restore point from which you want to start instant recovery of the application backup repository data.
Accepts the |
|
True |
0 |
True (ByPropertyName, ByValue) |
|
Server |
Specifies the application backup repository host on which Veeam Backup & Replication will mount the restore point data via NFS.
Accepts the |
|
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRSession object that contains information about the instant recovery session.
Examples
Starting Instant Recovery from Backup Copy Restore Point
This example shows how to start instant recovery of the application backup repository data from a backup copy restore point.
|
$restorePoint = Get-VBRRestorePoint -Name "ApplicationBackup01" $server = Get-VBRServer -Name "172.18.21.25" $permission = New-VBRApplicationBackupRepositoryPermission -ServerName "172.18.21.26" -Mode ReadWrite Start-VBRApplicationBackupCopyInstantRecovery -RestorePoint $restorePoint -Server $server -RestoreFolder "/ApplicationBackup01_restore" -RepositoryPermissions $permission |
Perform the following steps:
- Run the
Get-VBRRestorePointReturns restore points. cmdlet. Specify theNameparameter value. Save the result to the$restorePointvariable. - Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
New-VBRApplicationBackupRepositoryPermissionCreates a new permission for hosts to access an application backup repository NFS share. cmdlet. Specify theServerNameandModeparameter values. Save the result to the$permissionvariable. - Run the
Start-VBRApplicationBackupCopyInstantRecoverycmdlet. Specify the following settings:- Set the
$restorePointvariable as theRestorePointparameter value. - Set the
$servervariable as theServerparameter value. - Specify the
RestoreFolderparameter value. - Set the
$permissionvariable as theRepositoryPermissionsparameter value.
- Set the
Related Commands
Get-VBRRestorePointReturns restore points.Get-VBRServerReturns hosts connected to the backup infrastructure.New-VBRApplicationBackupRepositoryPermissionCreates a new permission for hosts to access an application backup repository NFS share.New-VBRKerberosPermissionCreates a new permission to access an application backup repository NFS share with Kerberos credentials.