Pre-Check for update VEEAM to Version 12 using VMware



Show first post

33 comments

Userlevel 7
Badge +8

Inside the forum there is a workaround to change transport mode to NBD (network) - https://forums.veeam.com/post479533.html#p479533

But this is not a workaround for us - because we have a separate Backup VLAN/Network/Uplink

 

I created a Powershell script to Change Disk UUIDs without to reboot a vm - https://github.com/claranet/ClaranetHub/tree/main/VMware/Change-DiskUUID

Currently we test it on some vms with failed backups

thanks Martin!
this is gold!

Userlevel 3
Badge +1

Another question:
Is there an official statement from Veeam about this problem/feature (😎)?

Fabian ( @Mildur ) has sent an interesting VMware KB article to me:

https://kb.vmware.com/s/article/1021189

This is a possible explanation of the problem. Disks with the same UUID must not be mounted to the same VM. The Veeam backup proxys are mounting a lot of disks and there is a great chance that disks with the same UUID are among these.

 

 

 

 

 

 

I will check on my lab environment, where I’ve found 4 VMs with the same UUID. 

Userlevel 3
Badge +1

Hi to all,

I’m testing in my lab:

  • 2 VMs with the same UUID
  • Veeam DP v12
  • VMware 7.0U3

The proxy server process all disks (simultaneously) in Virtual appliance mode without problems.

 

Userlevel 7
Badge +8

not a funny discover specially from people which provides VMs from template with ansible but code will be fixed to avoid that symptom.

@HannesK @Mildur Could you confirm this is a known and expected behavior in v12? i did a support case to have an official answer today :)

@yohan CHABE

Userlevel 3
Badge +1

The problem is not VMs with the same UUID, but disks with the same UUID…

 

Hi @JMeixner,

yes, didn't come out right.

I’ve backup with the same proxy in [HotAdd] mode two VMs with disks with the same UUID export with command on the top of the topics:

Get-VM | Get-HardDisk | Select @{N='VM';E={$_.Parent.Name}}, @{N='Uuid';E={$_.ExtensionData.Backing.Uuid}} | Group-Object -Property Uuid | ?{ $_.Count -gt 1 }

 

Regards

By any chance, do you all use linux proxies with lvm?
I ran a test on request of support without lvm and the VM's we have issues with processed successfully.

Userlevel 3
Badge +1

By any chance, do you all use linux proxies with lvm?
I ran a test on request of support without lvm and the VM's we have issues with processed successfully.

No I’m using a windows proxy

Userlevel 7
Badge +17

By any chance, do you all use linux proxies with lvm?
I ran a test on request of support without lvm and the VM's we have issues with processed successfully.

Oh, is support looking for this problem after all? I had this problem some time ago with LVM and nothing useful was found at this time...

 

Comment