22.2. Share storage example: NFS for a simple migration
This example uses NFS to share guest images with other KVM hosts. This example is not practical for large installations, this example is only for demonstrating migration techniques and small deployments. Do not use this example for migrating or running more than a few guests.
For advanced and more robust shared storage instructions, see Part V, “Virtualization Storage Topics”
Export your libvirt image directory
Add the default image directory to the/etc/exports
file:Copy to Clipboard Copied! Toggle word wrap Toggle overflow /var/lib/libvirt/images *.example.com(rw,no_root_squash,async)
/var/lib/libvirt/images *.example.com(rw,no_root_squash,async)
Change the hosts parameter as required for your environment.Start NFS
- Install the NFS packages if they are not yet installed:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow yum install nfs
# yum install nfs
- Open the ports for NFS in
iptables
and add NFS to the/etc/hosts.allow
file. - Start the NFS service:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow service nfs start
# service nfs start
Mount the shared storage on the destination
On the destination system, mount the/var/lib/libvirt/images
directory:Copy to Clipboard Copied! Toggle word wrap Toggle overflow mount sourceURL:/var/lib/libvirt/images /var/lib/libvirt/images
# mount sourceURL:/var/lib/libvirt/images /var/lib/libvirt/images
Warning
Whichever directory is chosen for the guests must exactly the same on host and guest. This applies to all types of shared storage. The directory must be the same or the migration will fail.