Reputation: 113
Error: Starting VM on XenServer after migration(export and then import) This operation cannot be performed because the specified virtual disk could not be found.
Upvotes: 3
Views: 5597
Reputation: 113
Basically when we export the vm and then import to other xenserver, sometime found the above issue. If you go to the vm console tab using xencenter you can see the DVD drive is blank, you should have to empty that by clicking on eject.
via xe command: xe vm-cd-list uuid={vmUUID} | grep "empty" | awk '{print $4}
if it returns false (it means the DVD drive is not empty) then run this command:
xe vm-cd-eject uuid={vmUUID}
Upvotes: 7