Error - Backup failed as VM with Checkpoint is not supported

Error - Backup failed as VM with Checkpoint is not supported

KB ID: 221018 
Cause:
This error occurs when a backup process fails because the virtual machine (VM) being backed up has an active checkpoint associated with it. Backing up VMs with active checkpoints is not supported and can lead to failure. To ensure successful backups, these checkpoints must be removed.
Solution:
Follow these steps to resolve this error and remove checkpoints associated with the VM:
Step 1: List All VMs
List all VMs on your system. Use the following command to obtain a list of all VMs, including their names and status:
   virsh list --all
Step 2: List VM Checkpoints
Identify the VM for which you encountered this error and retrieve a list of its associated checkpoints. Replace `<DOMAIN_ID/VM_NAME>` with the actual domain ID or VM name:
   virsh checkpoint-list <DOMAIN_ID/VM_NAME>
This command will display a list of checkpoints associated with the specified VM.
Step 3: Delete Checkpoints
To Proceed to delete the identified checkpoints. Use the following command, replacing `<DOMAIN_ID/VM_NAME>` and `<CHECKPOINT_NAME>` with the appropriate values:
   virsh checkpoint-delete <DOMAIN_ID/VM_NAME> <CHECKPOINT_NAME>
This command will attempt to delete the specified checkpoint. If the deletion fails for any reason, you can use the following command with the `--metadata` flag to remove the checkpoint metadata:
   virsh checkpoint-delete <DOMAIN_ID/VM_NAME> <CHECKPOINT_NAME> --metadata
Note: Exercise caution when deleting checkpoints, as this action can impact the VM's state. Ensure that you have backups or snapshots of your VM in case any issues arise during this process.
By following these steps, you can resolve this error and ensure that your VM no longer has any associated checkpoints. This will allow for successful backups without compatibility issues related to checkpoints.

    • Related Articles

    • Troubleshooting Error -32770 When Creating Checkpoint in BDRSuite

      KB ID: 104065 Cause: The error -32770 occurs during checkpoint creation in BDRSuite due to various reasons, including: 1. Checkpoint creation failure for Appaware enabled backups when the VM is in a "Saved" or "Paused" state. 2. Insufficient storage ...
    • Resolving 'Failed to Create VM' Error in BDRSuite

      KB ID: 44 Issue: Instant boot encounters a failure with the error message "Failed to create VM," accompanied by "The application encountered an error while attempting to change the state of VMMachineName." This problem arises when BDRSuite is not ...
    • Hyper-V VM Backup with Checkpoints

      KB ID: 104005 Cause: This error occurs when attempting to back up a Hyper-V virtual machine (VM) that has checkpoints. Applicability: This issue is relevant under the following conditions: 1. If you are using Windows 2012 R2 or an earlier version. 2. ...
    • Unable to Create VM Snapshot. Failed to Quiesce the VM.

      KB ID: 105130 Details: BDRSuite utilizes VMware snapshots for VM Backup & Replication. During the snapshot initiation for backup or replication, BDRSuite ensures VM quiescing to maintain on-disk data consistency. However, users may encounter an error ...
    • Troubleshooting Checkpoint Creation Errors in KVM Environment

      KB ID: 221004 Cause: The KB article focuses on problems that occur specifically within the KVM hypervisor environment during the creation of a checkpoint for a virtual machine. These errors can disrupt normal operations and may signify underlying ...