From Fedora Project Wiki
(add {{autolang}}) |
No edit summary |
||
Line 2: | Line 2: | ||
{{QA/Test_Case | {{QA/Test_Case | ||
|description=This test case checks that basic live migration using libvirt between two Fedora | |description=This test case checks that basic live migration using libvirt between two Fedora hosts works correctly. | ||
|actions= | |actions= | ||
# On the source machine, edit the guest so that it has some small amount of memory (say, | # On the source machine, edit the guest so that it has some small amount of memory (say, 768MB). | ||
# On the source machine, start the guest. | # On the source machine, start the guest. | ||
# Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice). From the source machine, start a ping to the guest:<br><br><code>$ ping <guest-IP></code><br><br> | # Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice). From the source machine, start a ping to the guest:<br><br><code>$ ping <guest-IP></code><br><br> | ||
Line 10: | Line 10: | ||
# Shutdown the guest on the destination machine. Once it's successfully shut down, edit the guest on the source machine and give it random, differing amounts of memory: 1024MB, 2111MB, etc. Then repeat the test for these differing amounts of memory. | # Shutdown the guest on the destination machine. Once it's successfully shut down, edit the guest on the source machine and give it random, differing amounts of memory: 1024MB, 2111MB, etc. Then repeat the test for these differing amounts of memory. | ||
# Repeat the entire test for as many different guest OS's as are relevant. We would at least like to see the following guests: | # Repeat the entire test for as many different guest OS's as are relevant. We would at least like to see the following guests: | ||
## Fedora | ## Fedora 16 | ||
## Fedora | ## Fedora 15 | ||
## RHEL-5 | ## RHEL-5 | ||
## RHEL-6 | |||
## Windows XP | ## Windows XP | ||
## Windows Vista | ## Windows Vista |
Revision as of 23:09, 14 September 2011
Description
This test case checks that basic live migration using libvirt between two Fedora hosts works correctly.
How to test
- On the source machine, edit the guest so that it has some small amount of memory (say, 768MB).
- On the source machine, start the guest.
- Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice). From the source machine, start a ping to the guest:
$ ping <guest-IP>
- Now on the source machine execute:
$ virsh migrate --live <guestname> qemu+ssh://<destination host>/system
- Shutdown the guest on the destination machine. Once it's successfully shut down, edit the guest on the source machine and give it random, differing amounts of memory: 1024MB, 2111MB, etc. Then repeat the test for these differing amounts of memory.
- Repeat the entire test for as many different guest OS's as are relevant. We would at least like to see the following guests:
- Fedora 16
- Fedora 15
- RHEL-5
- RHEL-6
- Windows XP
- Windows Vista
- SUSE
Expected Results
- After executing the virsh migrate command, the guest should migrate over to the destination machine, and not be running anymore on the source machine. Use
$ virsh list
on both machines to verify this. Additionally, the ping that was started in step 3 should continue uninterrupted.