Ubuntu 24.04
Sponsored Link

iSCSI : Configure iSCSI Initiator2024/04/30

 
Configure iSCSI Initiator.
This example is based on the environment like follows.
+----------------------+          |          +----------------------+
| [   iSCSI Target   ] |10.0.0.30 | 10.0.0.51| [ iSCSI Initiator  ] |
|     dlp.srv.world    +----------+----------+   node01.srv.world   |
|                      |                     |                      |
+----------------------+                     +----------------------+

[1] Configure iSCSI Initiator to connect to iSCSI Target.
root@node01:~#
apt -y install open-iscsi
root@node01:~#
vi /etc/iscsi/initiatorname.iscsi
# change to the same IQN you set on the iSCSI target server

InitiatorName=
iqn.2024-04.world.srv:node01.initiator
root@node01:~#
vi /etc/iscsi/iscsid.conf
# line 67 : uncomment

node.session.auth.authmethod = CHAP
# line 79,80: uncomment and specify the username and password you set on the iSCSI target server

node.session.auth.username =
username

node.session.auth.password =
password
root@node01:~#
systemctl restart iscsid open-iscsi
# discover target

root@node01:~#
iscsiadm -m discovery -t sendtargets -p 10.0.0.30

10.0.0.30:3260,1 iqn.2024-04.world.srv:dlp.target01
# confirm status after discovery

root@node01:~#
iscsiadm -m node -o show

# BEGIN RECORD 2.1.9
node.name = iqn.2024-04.world.srv:dlp.target01
node.tpgt = 1
node.startup = manual
node.leading_login = No
iface.iscsi_ifacename = default
.....
.....
node.conn[0].iscsi.DataDigest = None
node.conn[0].iscsi.IFMarker = No
node.conn[0].iscsi.OFMarker = No
# END RECORD

# login to the target
# if logout ⇒ iscsiadm --mode node --logoutall=all

root@node01:~#
iscsiadm -m node --login -p 10.0.0.30

Logging in to [iface: default, target: iqn.2024-04.world.srv:dlp.target01, portal: 10.0.0.30,3260]
Login to [iface: default, target: iqn.2024-04.world.srv:dlp.target01, portal: 10.0.0.30,3260] successful.

# confirm the established session

root@node01:~#
iscsiadm -m session -o show

tcp: [1] 10.0.0.30:3260,1 iqn.2024-04.world.srv:dlp.target01 (non-flash)
# if enable automatic login for system starting, set like follows

root@node01:~#
iscsiadm -m node -p 10.0.0.30 -o update -n node.startup -v automatic
# confirm the partitions

root@node01:~#
cat /proc/partitions

major minor  #blocks  name

 253        0   31457280 sda
 253        1       1024 sda1
 253        2    2097152 sda2
 253        3   29357056 sda3
 252        0   29356032 dm-0
  11        0          2 sr0
   8        0   10485760 sdb
# added new device provided from the target server as [sdb]
[2] After setting iSCSI device, configure on Initiator to use it like follows.
# create label

root@node01:~#
parted --script /dev/sdb "mklabel gpt"

# create partition

root@node01:~#
parted --script /dev/sdb "mkpart primary 0% 100%"

# format with ext4

root@node01:~#
mkfs.ext4 /dev/sdb1

mke2fs 1.47.0 (5-Feb-2023)
Creating filesystem with 2617344 4k blocks and 655360 inodes
Filesystem UUID: d7f7e424-d019-4ea1-9298-577c5cd5598c
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Allocating group tables: done
Writing inode tables: done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done

root@node01:~#
mount /dev/sdb1 /mnt

root@node01:~#
df -hT

Filesystem                        Type   Size  Used Avail Use% Mounted on
tmpfs                             tmpfs  392M  1.1M  391M   1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv ext4    28G  6.1G   20G  24% /
tmpfs                             tmpfs  2.0G     0  2.0G   0% /dev/shm
tmpfs                             tmpfs  5.0M     0  5.0M   0% /run/lock
/dev/sda2                         ext4   2.0G   95M  1.7G   6% /boot
tmpfs                             tmpfs  392M   12K  392M   1% /run/user/0
/dev/sdb1                         ext4   9.8G   24K  9.3G   1% /mnt
Matched Content