Error 105979 : Backup Failed Due to Duplicate VM UUID

Error 105979 : Backup Failed Due to Duplicate VM UUID

KB ID 105979

Issue

Encountering the Error "Backup Failed Due to Duplicate VM UUID"

Cause

This error occurs when two or more VMs on the same Proxmox host have the same UUID.

The backup cannot uniquely identify these VMs, so the backup of the affected VMs is skipped.

Resolution

Follow the steps below to assign a new UUID to one of the affected VMs.

Step 1: Identify the Affected VMs

  1. Open the backup failure message for Error 105979.

  2. The message displays the duplicate UUID and the names of the affected VMs.

  3. Note down the VM name(s) shown in the error message.

Step 2: Find the VM ID

Log in to the Proxmox host and run:

qm list

Find the VM ID (VMID) corresponding to one of the affected VMs.

VMIDVM NameStatus
<VMID><VM_NAME><STATUS>

Step 3: Verify the Duplicate UUID

Run the following command using the VM ID:

qm config <VMID>

Check for the following entry:

smbios1: uuid=<DUPLICATE_UUID>

Repeat this step for the other affected VM(s) to confirm that they have the same UUID.

Step 4: Generate a New UUID

If the uuidgen package is not available, install it using:

apt update
apt install -y uuid-runtime

Generate a new UUID:

uuidgen

Copy the generated UUID.

Step 5: Stop the VM and Assign the New UUID

Stop the VM whose UUID needs to be changed:

qm shutdown <VMID>

Check that the VM has stopped:

qm status <VMID>

The status should be:

status: stopped

Assign the newly generated UUID:

qm set <VMID> --smbios1 uuid=<NEW_UUID>

Step 6: Start the VM

Start the VM:

qm start <VMID>

Verify that it is running:

qm status <VMID>

The status should be:

status: running

Step 7: Verify the UUID and Run the Backup

Verify the new UUID:

qm config <VMID>

Make sure that:

  • The VM now has the newly assigned UUID.

  • The new UUID is different from the duplicate UUID reported in Error 105979.

Once verified, run the backup job again.

The backup should now complete successfully.

Notes
Note: Change the UUID only for one of the VMs having the duplicate UUID. Do not change the UUID of all affected VMs. If you are unsure which VM's UUID should be changed, contact your Proxmox administrator before making the change.

    • Related Articles

    • Backup Failure Due to Duplicate VM UUIDs

      KB ID: 105976 Cause: This error occurs when there are two or more virtual machines (VMs) with the same UUID on the source ESXi host. When you select an entire host for backup or individual VMs for backup, the backup process will skip all VMs with ...
    • Backup Failure due to Unstable Guest VM Writers (Microsoft Error Code: 0x80042301)

      KB ID: 104061 Description: This Knowledge Base article addresses the alert that occurs when backup operations fail due to guest VM writers being in an unstable state. The alert is associated with Microsoft error code 0x80042301. It provides solutions ...
    • Resolving 'Failed to Create VM' Error in BDRShield

      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 BDRShield is not ...
    • Troubleshooting: Backup Failure Due to Invalid VM State During Backup

      KB ID: 104075 Issue: Backup attempts fail with an error indicating that the virtual machine's state was not valid during the backup process. Cause: This issue arises due to the following reasons: 1. Offline Cluster Disk: The Cluster Disk containing ...
    • 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 ...