iSCSI イニシエーターの設定2016/11/28 |
iSCSI イニシエーターの設定です。
ここの例で前提としている環境は以下の通りです。
+----------------------+ | +----------------------+ | [ iSCSI Target ] |10.0.0.30 | 10.0.0.31| [ iSCSI Initiator ] | | dlp.srv.world +----------+----------+ www.srv.world | | | | | +----------------------+ +----------------------+ |
[1] | iSCSI イニシエーターとしての設定です。 |
[root@www ~]#
dnf -y install iscsi-initiator-utils
[root@www ~]#
vi /etc/iscsi/initiatorname.iscsi # iSCSIターゲットサーバーの ACL で設定した IQN に変更 InitiatorName= iqn.2016-11.world.srv:www.srv.world
[root@www ~]#
vi /etc/iscsi/iscsid.conf # 57行目:コメント解除 node.session.auth.authmethod = CHAP # 61,62行目:コメント解除してiSCSIターゲットで設定したユーザー名とパスワードを設定 node.session.auth.username = username node.session.auth.password = password
# ターゲットを discovery する [root@www ~]# iscsiadm -m discovery -t sendtargets -p 10.0.0.30 [20508.987649] Loading iSCSI transport class v2.0-870. [20509.012155] iscsi: registered transport (tcp) 10.0.0.30:3260,1 iqn.2016-11.world.srv:storage.target01 # discovery した後の状態確認 [root@www ~]# iscsiadm -m node -o show # BEGIN RECORD 6.2.0.873-33 node.name = iqn.2016-11.world.srv:storage.target01 node.tpgt = 1 node.startup = automatic node.leading_login = No ... ... ... node.conn[0].iscsi.IFMarker = No node.conn[0].iscsi.OFMarker = No # END RECORD # discovery したターゲットにログインする [root@www ~]# iscsiadm -m node --login Logging in to [iface: default, target: iqn.2016-11.world.srv:storage.target01, portal: 10.0.0.30,3260] (multiple) [20548.903051] scsi host2: iSCSI Initiator over TCP/IP [20548.917867] scsi 2:0:0:0: Direct-Access LIO-ORG disk01 4.0 PQ: 0 ANSI: 5 [20548.946505] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) [20548.948177] sd 2:0:0:0: Attached scsi generic sg0 type 0 Login to [iface: default, target: iqn.2016-11.world.srv:storage.target01, portal: 10.0.0.30,3260] successful. # 確立しているセッションを確認 [root@www ~]# iscsiadm -m session -o show tcp: [1] 10.0.0.30:3260,1 iqn.2016-11.world.srv:storage.target01 (non-flash) # パーティションを確認してみる [root@www ~]# cat /proc/partitions major minor #blocks name 252 0 52428800 sda 252 1 512000 sda1 252 2 51915776 sda2 253 0 4079616 dm-0 253 1 47833088 dm-1 8 0 20971520 sdb # ターゲット提供のデバイスが「sdb」として認識されている
|
[2] | iSCSI デバイス認識後は通常通り、パーティション作成 => ファイルシステム作成 => マウント、 の流れで iSCSI デバイスを利用可能です。 |
# ラベル作成 [root@www ~]# parted --script /dev/sdb "mklabel msdos" # パーティション作成 [root@www ~]# parted --script /dev/sdb "mkpart primary 0% 100%" # XFS でフォーマット [root@www ~]# mkfs.xfs -i size=1024 -s size=4096 /dev/sdb1 meta-data=/dev/sdb1 isize=1024 agcount=4, agsize=654848 blks = sectsz=4096 attr=2, projid32bit=1 = crc=1 finobt=1, sparse=0 data = bsize=4096 blocks=2619392, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0 ftype=1 log =internal log bsize=4096 blocks=2560, version=2 = sectsz=4096 sunit=1 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 # マウント [root@www ~]# mount /dev/sdb1 /mnt [root@www ~]# df -hT Filesystem Type Size Used Avail Use% Mounted on devtmpfs devtmpfs 2.0G 0 2.0G 0% /dev tmpfs tmpfs 2.0G 0 2.0G 0% /dev/shm tmpfs tmpfs 2.0G 520K 2.0G 1% /run tmpfs tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup /dev/mapper/fedora-root xfs 15G 1.1G 14G 8% / tmpfs tmpfs 2.0G 4.0K 2.0G 1% /tmp /dev/vda1 ext4 477M 100M 349M 23% /boot tmpfs tmpfs 396M 0 396M 0% /run/user/0 /dev/sda1 xfs 10G 33M 10G 1% /mnt |
Sponsored Link |