XenServer如何架设本地ISO镜像呢?网络私房菜教你一键架设XenServer 6.2本地ISO。
1. 通过SSH登录Xenserver查看卷组信息

  1. #vgdisplay

2.在VG上创建用于存放ISO的逻辑卷(LVM),分配大小并对其命名:
  1. #lvcreate -L  50G -n isofile  VG_XenStorage-8201e819-c425-17e1-d513-f16b9357cfc8


3. 格式化创建的LVM
  1. #mkfs.ext3 /dev/VG_XenStorage-8201e819-c425-17e1-d513-f16b9357cfc8/isofile


4. 创建本地挂载目录
  1. #mkdir /isofile


5. 编辑/etc/fstab来设置自动挂载之前创建的逻辑卷LVM
  1. #vi /etc/fstab


添加以下内容
  1. /dev/VG_XenStorage-8201e819-c425-17e1-d513-f16b9357cfc8/isofile  /isofile  ext3 defaults 0 0


按:输入wq保存并退出


6.命令行创建本地iso SR
  1. #xe sr-create name-label=isofile type=iso device-config:location=/isofile device-config:legacy_mode=true contente-type=iso


7. 载入新创建的逻辑卷LVM
  1. #mount /isofile


到这里,在XenCenter中连接XenServer后会发现多了个isofile的本地iso存储,将本地准备好的ISO镜像文件上传到此目录中即可。


如果XenCenter中连接XenServer后isofile中没有可用iso镜像就尝试更新一下
  1. #xe-mount-iso-sr /isofile

  2. #xe-toolstack-restart

转自网络私房菜http://www.networktalking.com/thread-7010-1-1.html