Skip to content

Commit 7d957a3

Browse files
authored
Merge pull request #84901 from ThalathBhagya/master
updated content
2 parents cadf5e8 + 4be3872 commit 7d957a3

6 files changed

+56
-14
lines changed

articles/backup/backup-azure-troubleshoot-vm-backup-fails-snapshot-timeout.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ This article provides troubleshooting steps that can help you resolve Azure Back
2424
**Error code**: UserErrorGuestAgentStatusUnavailable <br>
2525
**Error message**: VM Agent unable to communicate with Azure Backup<br>
2626

27-
After you register and schedule a VM for the Backup service, Backup initiates the job by communicating with the VM agent to take a point-in-time snapshot. Any of the following conditions might prevent the snapshot from being triggered. When a snapshot isn't triggered, the backup might fail. Complete the following troubleshooting steps in the order listed, and then retry your operation:<br>
28-
**Cause 1: [The agent is installed in the VM, but it's unresponsive (for Windows VMs)](#the-agent-installed-in-the-vm-but-unresponsive-for-windows-vms)**
29-
**Cause 2: [The agent installed in the VM is out of date (for Linux VMs)](#the-agent-installed-in-the-vm-is-out-of-date-for-linux-vms)**
30-
**Cause 3: [The snapshot status can't be retrieved, or a snapshot can't be taken](#the-snapshot-status-cannot-be-retrieved-or-a-snapshot-cannot-be-taken)**
31-
**Cause 4: [The backup extension fails to update or load](#the-backup-extension-fails-to-update-or-load)**
32-
**Cause 5: [The VM doesn't have internet access](#the-vm-has-no-internet-access)**
27+
The Azure VM agent might be stopped, outdated, in an inconsistent state, or not installed and prevent Azure Backup service to trigger snapshots.
28+
29+
- If the VM agent is stopped or is in an inconsistent state, **Restart the Agent** and retry the backup operation (try an ad-hoc backup). For steps to restart the agent, see [Windows VMs](https://go.microsoft.com/fwlink/?LinkID=394789&clcid=0x409) or [Linux VMs](https://docs.microsoft.com/azure/virtual-machines/linux/update-agent).
30+
- If the VM agent is not installed or is outdated, install/update the VM agent and retry the backup operation. For steps to install/update the agent, see [Windows VMs](https://go.microsoft.com/fwlink/?LinkID=394789&clcid=0x409) or [Linux VMs](https://docs.microsoft.com/azure/virtual-machines/linux/update-agent).
3331

3432
## GuestAgentSnapshotTaskStatusError - Could not communicate with the VM agent for snapshot status
3533

@@ -39,7 +37,8 @@ After you register and schedule a VM for the Backup service, Backup initiates th
3937
After you register and schedule a VM for the Azure Backup service, Backup initiates the job by communicating with the VM backup extension to take a point-in-time snapshot. Any of the following conditions might prevent the snapshot from being triggered. If the snapshot isn't triggered, a backup failure might occur. Complete the following troubleshooting steps in the order listed, and then retry your operation:
4038
**Cause 1: [The agent is installed in the VM, but it's unresponsive (for Windows VMs)](#the-agent-installed-in-the-vm-but-unresponsive-for-windows-vms)**
4139
**Cause 2: [The agent installed in the VM is out of date (for Linux VMs)](#the-agent-installed-in-the-vm-is-out-of-date-for-linux-vms)**
42-
**Cause 3: [The VM doesn't have internet access](#the-vm-has-no-internet-access)**
40+
**Cause 3: [The snapshot status can't be retrieved, or a snapshot can't be taken](#the-snapshot-status-cannot-be-retrieved-or-a-snapshot-cannot-be-taken)**
41+
**Cause 4: [The backup extension fails to update or load](#the-backup-extension-fails-to-update-or-load)**
4342

4443
## UserErrorRpCollectionLimitReached - The Restore Point collection max limit has reached
4544

@@ -102,7 +101,7 @@ After you register and schedule a VM for the Azure Backup service, Backup initia
102101
**Error code**: UserErrorUnsupportedDiskSize <br>
103102
**Error message**: Currently Azure Backup does not support disk sizes greater than 4095GB <br>
104103

105-
Your backup operation could fail when backing up VM with disk size greater than 4095GB. To sign up for private preview of Azure Backup large disk support for disks greater than 4TB up to 30TB in size, write back to us [email protected].
104+
Your backup operation could fail when backing up a VM with a disk size greater than 4,095 GB. To sign up for a limited public preview of Azure Backup large disk support for disks greater than 4 TB and up to 30 TB in size, see [An overview of Azure VM backup](backup-azure-vms-introduction.md#limited-public-preview-backup-of-vm-with-disk-sizes-up-to-30tb).
106105

107106
## UserErrorBackupOperationInProgress - Unable to initiate backup as another backup operation is currently in progress
108107

articles/backup/backup-azure-vms-introduction.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,50 @@ Data disk 2 | 4095 GB | 0 GB
135135

136136
The actual size of the VM in this case is 17 GB + 30 GB + 0 GB = 47 GB. This protected-instance size (47 GB) becomes the basis for the monthly bill. As the amount of data in the VM grows, the protected-instance size used for billing changes to match.
137137

138+
<a name="limited-public-preview-backup-of-vm-with-disk-sizes-up-to-30tb"></a>
139+
## Limited Public Preview: Backup of VM with disk sizes up to 30 TB
140+
141+
Azure Backup now supports a limited public preview of larger and more powerful [Azure Managed Disks](https://azure.microsoft.com/blog/larger-more-powerful-managed-disks-for-azure-virtual-machines/) of up to 30 TB in size. This preview provides production-level support for managed virtual machines.
142+
143+
You can seamlessly enroll in the preview without any impact on your ongoing backups. After the subscription is enrolled in the preview, all the virtual machines with disk sizes up to 30 TB should be successfully backed up. To enroll in the preview:
144+
145+
Execute the following cmdlets from an elevated PowerShell terminal:
146+
147+
1. Sign in to your Azure account.
148+
149+
```powershell
150+
PS C:> Login-AzureRmAccount
151+
```
152+
153+
2. Select the subscription that you want to register for the upgrade:
154+
155+
```powershell
156+
PS C:> Get-AzureRmSubscription –SubscriptionName "Subscription Name" | Select-AzureRmSubscription
157+
```
158+
3. Register this subscription in the preview program:
159+
160+
```powershell
161+
PS C:> Register-AzureRmProviderFeature -FeatureName "LargeDiskVMBackupPreview" –ProviderNamespace Microsoft.RecoveryServices
162+
```
163+
164+
Wait for 30 minutes for the subscription to be enrolled in the preview.
165+
166+
4. To check the status, run the following cmdlets:
167+
168+
```powershell
169+
PS C:> Get-AzureRmProviderFeature -FeatureName "LargeDiskVMBackupPreview" –ProviderNamespace Microsoft.RecoveryServices
170+
```
171+
5. When the subscription shows as registered, run the following command:
172+
173+
```powershell
174+
PS C:> Register-AzureRmResourceProvider -ProviderNamespace Microsoft.RecoveryServices
175+
```
176+
177+
> [!NOTE]
178+
> Encrypted VMs with disks larger than 4 TB aren't supported in this preview.
179+
180+
181+
138182
## Next steps
139183
140184
Now, [prepare for Azure VM backup](backup-azure-arm-vms-prepare.md).

articles/backup/backup-instant-restore-capability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The new model for Instant Restore provides the following feature enhancements:
1919

2020
* Ability to use snapshots taken as part of a backup job that is available for recovery without waiting for data transfer to the vault to finish. It reduces the wait time for snapshots to copy to the vault before triggering restore.
2121
* Reduces backup and restore times by retaining snapshots locally, for two days by default. This default snapshot retention value is configurable to any value between 1 to 5 days.
22-
* Supports disk sizes up to 4 TB. Resizing of disk is not recommended by Azure Backup.
22+
* Supports disk sizes up to 4 TB. Resizing of disks is not recommended by Azure Backup. To sign up for a limited public preview of Azure Backup large disk support for disks greater than 4 TB and up to 30 TB in size, see [An overview of Azure VM backup](backup-azure-vms-introduction.md#limited-public-preview-backup-of-vm-with-disk-sizes-up-to-30tb).
2323
* Supports Standard SSD disks along with Standard HDD disks and Premium SSD disks.
2424
* Ability to use an unmanaged VMs original storage accounts (per disk), when restoring. This ability exists even when the VM has disks that are distributed across storage accounts. It speeds up restore operations for a wide variety of VM configurations.
2525
* For backup of VMs that are using premium storage, with Instant Restore, we recommend allocating *50%* free space of the total allocated storage space, which is required **only** for the first backup. The 50% free space is not a requirement for backups after the first backup is complete.

articles/backup/backup-support-matrix-iaas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ Restore of Zone-pinned VMs | Supported (for VM that is backed-up after Jan 2019
153153

154154
**Component** | **Support**
155155
--- | ---
156-
Azure VM data disks | Back up a VM with 16 or less data disks. <br/><br/> Supports disk sizes up to 4 TB.
157-
Data disk size | Individual disk can be up to 4095 GB.<br/><br/>To sign up for private preview of Azure Backup large disk support for disks greater than 4TB up to 30TB in size, write back to us [email protected].
156+
Azure VM data disks | Back up a VM with 16 or less data disks. <br/><br/> Supports disk sizes up to 4 TB.<br/><br/>To sign up for a limited public preview of Azure Backup large disk support for disks greater than 4 TB and up to 30 TB in size, see [An overview of Azure VM backup](backup-azure-vms-introduction.md#limited-public-preview-backup-of-vm-with-disk-sizes-up-to-30tb).
157+
Data disk size | Individual disk can be up to 4095 GB.<br/><br/>To sign up for limited public preview of Azure Backup large disk support for disks greater than 4TB up to 30TB in size, refer this [article](backup-azure-vms-introduction.md#limited-public-preview-backup-of-vm-with-disk-sizes-up-to-30tb).
158158
Storage type | Standard HDD, Standard SSD, Premium SSD.
159159
Managed disks | Supported.
160160
Encrypted disks | Supported.<br/><br/> Azure VMs enabled with Azure Disk Encryption can be backed up (with or without the Azure AD app).<br/><br/> Encrypted VMs can’t be recovered at the file/folder level. You must recover the entire VM.<br/><br/> You can enable encryption on VMs that are already protected by Azure Backup.

articles/backup/backup-support-matrix-mars-agent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Network throttling | Not available for backed-up machines that run Windows Serve
6767

6868
You can use the MARS agent to back up directly to Azure on some operating systems that run on on-premises machines and Azure VMs. The operating systems must be 64 bit and should be running the latest services packs and updates. The following table summarizes these operating systems:
6969

70-
**Operating system** | **Files/folders** | **System state**
71-
--- | --- | ---
70+
**Operating system** | **Files/folders** | **System state**
71+
--- | --- | ---
7272
Windows 10 (Enterprise, Pro, Home) | Yes | No
7373
Windows 8.1 (Enterprise, Pro)| Yes |No
7474
Windows 8 (Enterprise, Pro) | Yes | No

articles/backup/quick-backup-vm-powershell.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ Enable backup as follows:
100100
-Policy $policy
101101
```
102102
103-
104103
## Start a backup job
105104
106105
Backups run in accordance with the schedule specified in the backup policy. You can also run an ad hoc backup:

0 commit comments

Comments
 (0)