How to take monthly backup of Azure VM?

Ekta Bharatkumar Purohit 66 Reputation points
2022-03-16T15:06:44.697+00:00

steps to take monthly backup of azure VM

Azure Backup
Azure Backup
An Azure backup service that provides built-in management at scale.
1,192 questions
Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,585 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Andriy Bilous 11,176 Reputation points MVP
    2022-03-16T15:21:34.3+00:00

    Hello @Ekta Bharatkumar Purohit

    You can back up your Azure VMs with the Azure Backup service.
    Monthly/yearly backup are not supported when backing up with Azure VM extension. Only daily and weekly are supported.
    You can set up the policy to retain daily/weekly backups for monthly/yearly retention period.
    184122-image.png
    https://stackoverflow.com/questions/45914855/azure-backup-and-how-retention-policies-are-executed

    Backups are stored in a Recovery Services vault with built-in management of recovery points.
    As part of the backup process, a snapshot is taken, and the data is transferred to the Recovery Services vault with no impact on production workloads. The snapshot provides different levels of consistency.
    Azure Backup also has specialized offerings for database workloads like SQL Server -15 minute RPO (recovery point objective), and allow backup and restore of individual databases.

    Here is a process of how Azure Backup completes a backup for Azure VMs

    183813-image.png

    These are the steps to configure monthly Azure VM backup:

    • Create a Recovery Services vault
    • Modify storage replication to globally redundant storage (GRS), locally redundant storage (LRS) or Zone-redundant storage (ZRS)
    • Create a custom backup policy. Enable Retention of monthly backup point for 12 month, configure Retention of weekly backup point to 1 week.
    • Add your Virtual Machines into Backup Vault.
      https://learn.microsoft.com/en-us/azure/backup/backup-azure-arm-vms-prepare

    https://learn.microsoft.com/en-us/azure/backup/backup-azure-vms-introduction

    0 comments No comments