How to download the backup of Azure blob storage instance done with Backup Vault?

Rajoli Hari Krishna 396 Reputation points
2023-11-06T10:21:50.9766667+00:00

Scenario:

I have few storage accounts that contains GBs of the data in the Blob Containers.

I did the backup of a container from one of storage accounts using backup vault:

enter image description here

My Doubt is how to download that restored backup instances (Azure Storage blob containers)?

Azure Backup
Azure Backup
An Azure backup service that provides built-in management at scale.
1,192 questions
Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,944 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,639 questions
{count} votes

Accepted answer
  1. SwathiDhanwada-MSFT 18,556 Reputation points
    2023-11-07T05:58:48+00:00

    HariKrishnaR-1205 To download the backup of an Azure Blob storage instance done with Backup Vault, you can initiate a restore operation through the Backup center. Here are the steps to follow:

    In Backup center, go to Restore on the top bar.

    On the Initiate Restore tab, choose Azure Blobs (Azure Storage) as the Datasource type and select the Backup Instance you want to restore. The backup instance is the storage account that contains the blobs you want to restore.

    On the Select recovery point tab, select the type of backup you want to restore. For vaulted backup, choose a recovery point from which you want to perform the restore.

    On the Restore parameters tab, select the options based on the type of backups you've chosen to perform restore.

    After you've selected the restore parameters, click on the Review + restore button to review the restore settings.

    Once you've reviewed the restore settings, click on the Restore button to initiate the restore operation.

    1. Once the restore operation is complete, you can download the restored blobs from the target storage account to which the backup data was restored.

    To restore the blobs using PowerShell, you can refer to this document. And to download the restored blobs, you can refer to this document. Kindly check the provided documents and revert if you have further questions.


1 additional answer

Sort by: Most helpful
  1. Vinodh247 13,801 Reputation points
    2023-11-06T10:59:59.56+00:00

    HariKrishnaR-1205:

    Thanks for reaching out to Microsoft Q&A.

    You can use Azure PowerShell.

    Get-AzRecoveryServicesBackupItem -VaultName "YourBackupVaultName" -ContainerName "YourContainerName" Start-AzRecoveryServicesBackupRecoveryJob -VaultName "YourBackupVaultName" -ContainerName "YourContainerName" -ItemName "YourBackupItemName" -RecoveryPoint (Get-AzRecoveryServicesBackupRecoveryPoint -VaultName "YourBackupVaultName" -ContainerName "YourContainerName" -ItemName "YourBackupItemName")

    Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.