InterviewSolution
| 1. |
How Can We Do The Live Kvm Migration? |
|
Answer» A guest can be migrated to another host with the VIRSH command. First make SURE that the gust is RUNNING by running: 1 [ROOT@host]# virsh list To migrate the host execute: [root@host]# virsh migrate --live testbox qemu+ssh://remotelinuxbox/system This will keep all the connections to the migrated host alive after the migration with no perceived OUTAGE. A guest can be migrated to another host with the virsh command. First make sure that the gust is running by running: 1 [root@host]# virsh list To migrate the host execute: [root@host]# virsh migrate --live testbox qemu+ssh://remotelinuxbox/system This will keep all the connections to the migrated host alive after the migration with no perceived outage. |
|