Hello, @Rancy Kaur !
How do I make a manual (one time) backup of my VM?
There are many different ways to back up a VM, however a snapshot of a virtual hard disk provides a full, read-only copy of a virtual hard disk (VHD) that can be used as a point-in-time backup. You can take a snapshot of both the OS and the data disk.
https://learn.microsoft.com/en-us/azure/virtual-machines/snapshot-copy-managed-disk?tabs=portal
To create a snapshot using the Azure portal, complete these steps.
- In the Azure portal, select Create a resource.
- Search for and select Snapshot.
- In the Snapshot window, select Create. The Create snapshot window appears.
- For Resource group, select an existing resource group or enter the name of a new one.
- Enter a Name, then select a Region and Snapshot type for the new snapshot. If you would like to store your snapshot in zone-resilient storage, you need to select a region that supports availability zones. For a list of supporting regions, see Azure regions with availability zones.
- For Source subscription, select the subscription that contains the managed disk to be backed up.
- For Source disk, select the managed disk to snapshot.
- For Storage type, select Standard HDD, unless you require zone-redundant storage or high-performance storage for your snapshot.
- If needed, configure settings on the Encryption, Networking, and Tags tabs. Otherwise, default settings are used for your snapshot.
- Select Review + create.
Once you have the snapshot, you can either create a new VM using the OS snapshot or you can attach the data disk to an existing VM.
Other options to consider:
- VM Restore Points: An individual VM restore point is a resource that stores VM configuration and point-in-time application consistent snapshots of all the managed disks attached to the VM. VM restore points contain a disk restore point for each of the attached disks and a disk restore point consists of a snapshot of an individual managed disk.
- Full list of backup and restore options for virtual machines in Azure: This includes Azure Backup, Azure Site Recovery, Managed Snapshots (used in the answer above), and virtual machine restore points (previous point).
I hope this has been helpful! Your feedback is important so please take a moment to accept answers.
If you still have questions, please let us know what is needed in the comments so the question can be answered. Thank you for helping to improve Microsoft Q&A!