iSCSI ターゲットの設定2014/12/13 |
iSCSI によるストレージサーバーの構築です。
ネットワーク上のストレージを iSCSI ターゲット、iSCSI ターゲットに接続するクライアントを iSCSI イニシエータと呼びます。
ここでは以下のような環境を例に iSCSI ストレージサーバーを構築します。 +----------------------+ | +----------------------+ | [ iSCSI Target ] |10.0.0.30 | 10.0.0.31| [ iSCSI Initiator ] | | dlp.srv.world +----------+----------+ www.srv.world | | | | | +----------------------+ +----------------------+ |
[1] | 管理ツールをインストールします。 |
[root@dlp ~]# yum -y install targetcli
|
[2] | iSCSI ターゲットの設定です。 例として /iscsi_disks ディレクトリ内にディスクイメージを作成し、SCSI デバイスとして共有できるよう設定します。 なお、例でのディスクイメージの他にも、ブロックデバイスや RAM ディスク等も SCSI デバイスとして設定可能です。 |
# 管理ツール起動 [root@dlp ~]# targetcli targetcli shell version 2.1.fb38 Copyright 2011-2013 by Datera, Inc and others. For help on commands, type 'help'.
/>
cd backstores/fileio
# 「disk01」という名前で /iscsi_disks/disk01.img を 20G で作成 /backstores/fileio> create disk01 /iscsi_disks/disk01.img 20G Created fileio disk01 with size 21474836480
/backstores/fileio>
cd /iscsi
# ターゲットを作成 /iscsi> create iqn.2014-12.world.srv:storage.target00 Created target iqn.2014-12.world.srv:storage.target00. Created TPG 1. Created default portal listening on all IPs (0.0.0.0), port 3260.
/iscsi>
cd iqn.2014-12.world.srv:storage.target00/tpg1/luns
# LUN を設定 /iscsi/iqn.20...t00/tpg1/luns> create /backstores/fileio/disk01 Created LUN 0.
/iscsi/iqn.20...t00/tpg1/luns>
cd ../acls
# ACLを設定 (接続を許可するイニシエーターのIQN) /iscsi/iqn.20...t00/tpg1/acls> create iqn.2014-12.world.srv:www.srv.world Created Node ACL for iqn.2014-12.world.srv:www.srv.world Created mapped LUN 0.
/iscsi/iqn.20...t00/tpg1/acls>
cd iqn.2014-12.world.srv:www.srv.world
# 認証用ユーザーID を設定 /iscsi/iqn.20....srv.world> set auth userid=username Parameter userid is now 'username'.
/iscsi/iqn.20....srv.world>
set auth password=password Parameter password is now 'password'.
/iscsi/iqn.20....srv.world>
exit Global pref auto_save_on_exit=true Last 10 configs saved in /etc/target/backup. Configuration saved to /etc/target/saveconfig.json # 上記設定後、以下のようにターゲットがリスン状態になる [root@dlp ~]# ss -napt | grep 3260 LISTEN 0 256 *:3260 *:* |
Sponsored Link |