iSCSI ターゲットの設定 (targetcli)2017/06/21 |
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:~# apt -y install targetcli-fb
|
[2] | iSCSI ターゲットの設定です。 例として /var/lib/iscsi_disks ディレクトリ内にディスクイメージを作成し、SCSI デバイスとして共有できるよう設定します。 なお、例でのディスクイメージの他にも、ブロックデバイスや RAM ディスク等も SCSI デバイスとして設定可能です。 |
# 管理ツール起動 root@dlp:~# targetcli Warning: Could not load preferences file /root/.targetcli/prefs.bin. targetcli shell version 2.1.fb43 Copyright 2011-2013 by Datera, Inc and others. For help on commands, type 'help'.
/>
cd backstores/fileio
# [disk01] という名前で /var/lib/iscsi_disks/disk01.img を 10G で作成 /backstores/fileio> create disk01 /var/lib/iscsi_disks/disk01.img 10G Created fileio disk01 with size 10737418240
/backstores/fileio>
cd /iscsi
# ターゲットを作成 /iscsi> create iqn.2017-06.world.srv:storage.target01 Created target iqn.2017-06.world.srv:storage.target01. Created TPG 1. Global pref auto_add_default_portal=true Created default portal listening on all IPs (0.0.0.0), port 3260.
/iscsi>
cd iqn.2017-06.world.srv:storage.target01/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.2017-06.world.srv:www.srv.world Created Node ACL for iqn.2017-06.world.srv:www.srv.world Created mapped LUN 0.
/iscsi/iqn.20...t00/tpg1/acls>
cd iqn.2017-06.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/rtslib-fb-target/backup. Configuration saved to /etc/rtslib-fb-target/saveconfig.json # 上記設定後、以下のようにターゲットがリスン状態になる root@dlp:~# ss -napt | grep 3260 LISTEN 0 256 *:3260 *:* |
Sponsored Link |