mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #304] How does Live Migration work ? #238
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @amarc on GitHub (May 12, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/304
Hello,
could someone point me to some Howto or docs on how live migration works ? Or at least what are requirements ? Does it require only SSH/TCP auth betwen host and destination or something more ? I tried to do migration but it complains about not having /some/path/diskimageofmachine.img on destination.. Isn't that what migration should do? Move disk and evertything needed and start it on destination.. ?
Thanks
@AlexH-HankIT commented on GitHub (May 12, 2014):
The live migration feature only migrates the RAM of a running virtual machine. Both hosts need access to the same datastore. Shared Storage for example. You can also use DRBD which will replicated the block devices between two hosts.
@amarc commented on GitHub (May 13, 2014):
Thank you for comment MrCrankHank. Can someone also tell me if this error means that destination CPU does not support some of these flags, and is there any workaround for this ?
unsupported configuration: guest and host CPU are not compatible: Host CPU does not provide required features: erms, smep, 3dnowprefetch, rdrand, aes, movbe
@retspen commented on GitHub (May 14, 2014):
Remove next line:
@amarc commented on GitHub (May 14, 2014):
Great, that works as expected now. Is there any chance that creating a machine will default to this (XML to be without above mentioned) ?
@retspen commented on GitHub (May 14, 2014):
Uncheck "Host-Model" when you create new VM.
@amarc commented on GitHub (May 14, 2014):
Great.. Thank you @retspen