Changes between Version 11 and Version 12 of linux/iscsi
- Timestamp:
- 1970/01/01 09:21:17 (55 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/iscsi
v11 v12 85 85 <name>lun1</name> 86 86 <source> 87 <host name="1 0.68.122.1" />87 <host name="192.168.122.1" /> 88 88 <device path="iqn.2001-04.org.ultimana:storage.disk1"/> 89 89 </source> … … 96 96 {{{ 97 97 virsh # pool-define pool.xml 98 プール lun1 が pool.xml から定義されました 99 98 100 virsh # pool-start lun1 99 virsh # vol-list lun1 100 名前 パス 101 プール lun1 が起動されました 102 103 virsh # pool-list 104 名前 状態 自動起動 101 105 ----------------------------------------- 102 6.0.0.0 /dev/disk/by-path/ip-10.68.122.1:3260-iscsi-iqn.2001-04.org.ultimana:storage.disk1-lun-0 106 default 動作中 yes 107 lun1 動作中 no 108 109 virsh # pool-info lun1 110 名前: lun1 111 UUID: 1477ce40-0dd0-91b2-fa7a-ae64ddb27a0f 112 状態: 実行中 113 容量: 7.81 GB 114 割り当て: 7.81 GB 115 利用可能: 0.00 103 116 }}} 117 /dev/disk/by-pathディレクトリを確認してみる。 118 {{{ 119 # ls /dev/disk/by-path/ 120 ip-192.168.122.1:3260-iscsi-iqn.2001-04.org.ultimana:storage.disk1-lun-0 121 ip-192.168.122.1:3260-iscsi-iqn.2001-04.org.ultimana:storage.disk1-lun-0-part1 122 ip-192.168.122.1:3260-iscsi-iqn.2001-04.org.ultimana:storage.disk1-lun-0-part2 123 }}} 124 libvirt XMLファイルには次のようにしてディスクを定義する。typeをblockにしているところに注意。 125 {{{ 126 <disk type='block' device='disk'> 127 <driver name='qemu' type='raw'/> 128 <source dev='/dev/disk/by-path/ip-192.168.122.1:3260-iscsi-iqn.2001-04.org.ultimana:storage.disk1-lun-0'/> 129 <target dev='hda' bus='ide'/> 130 </disk> 131 }}}