1. At XenServer console as root, mount some SR (CIFS or NFS) to a folder:
#mount -t cifs //myfiler01/ntfs_share /backup/
2. Check the mount:
#mount |grep backup
3. To find the VM you want to export Run:
#xe vm-list
4. Run the export VM command:
#xe vm-export vm=centos5 filename=/backup/centos5_backup.xva
That's it, the VM exported as *.xva file which is easy to import in case of failure.
In case you want to import the VM, run:
#xe vm-import vm=centos5 filename=/backup/centos5_backup.xva
1 comment:
Thanks for sharing bro! This really helped.
Post a Comment