Mount iSCSI LUN on CloudLinux 8
This tutorial guides you through how to mount an IBM Cloud® Block Storage for Classic volume on a server with the CloudLinux 8 operating system. You're going to create two connections from one network interface of your host to two target IP addresses of the storage array.
If you're using another Linux® operating system, refer to the Documentation of your specific distribution, and ensure that the multipath supports ALUA for path priority.
Before you begin
If multiple hosts mount the same Block Storage for Classic volume without being cooperatively managed, your data is at risk for corruption. Volume corruption can occur if changes are made to the volume by multiple hosts at the same time. You need a cluster-aware, shared-disk file system to prevent data loss such as Microsoft Cluster Shared Volumes (CSV), Red Hat Global File System (GFS2), VMware® VMFS, and others. For more information, see your host's OS Documentation.
It's best to run storage traffic on a VLAN, which bypasses the firewall. Running storage traffic through software firewalls increases latency and adversely affects storage performance. For more information about routing storage traffic to its own VLAN interface, see the FAQs.
Before you begin, make sure that the host that is to access the Block Storage for Classic volume is authorized. For more information, see Authorizing the host in the consoleAuthorizing the host from the CLIAuthorizing the host with Terraform.
Install the iSCSI and multipath utilities
Ensure that your system is updated and includes the iscsi-initiator-utils
and device-mapper-multipath
packages.
-
Use the following command to install the packages.
yum install iscsi-initiator-utils device-mapper-multipath
-
Start the services.
chkconfig multipathd on
chkconfig iscsid on
Set up the multipath
You set up DM Multipath with the mpathconf
utility, which creates the multipath configuration file /etc/multipath.conf
.
- If the /etc/multipath.conf file exists, the mpathconf utility can edit it.
- If the /etc/multipath.conf file does not exist, the mpathconf utility creates the /etc/multipath.conf file from scratch.
For more information about the mpathconf utility, see the mpathconf(8) man page.
-
Enter the
mpathconf
command with the--enable
option.# mpathconf --enable --user_friendly_names n
-
Edit the
/etc/multipath.conf
file with the following minimum configuration.defaults { user_friendly_names no max_fds max flush_on_last_del yes queue_without_daemon no dev_loss_tmo infinity fast_io_fail_tmo 5 } # All data in the following section must be specific to your system. blacklist { wwid "SAdaptec*" devnode "^hd[a-z]" devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*" devnode "^cciss.*" } devices { device { vendor "NETAPP" product "LUN" path_grouping_policy group_by_prio features "2 pg_init_retries 50" no_path_retry queue prio "alua" path_checker tur failback immediate path_selector "round-robin 0" hardware_handler "1 alua" rr_weight uniform rr_min_io 128 } }
The initial defaults section of the configuration file configures your system so that the names of the multipath devices are of the form
/dev/mapper/mpath n
, wherempath n
is the WWID of the device. -
Save the configuration file and exit the editor, if necessary.
-
Run the following command:
# systemctl start multipathd.service
If you need to edit the multipath configuration file after you started the multipath daemon, you must issue the
systemctl reload multipathd.service
command for the changes to take effect.
Update /etc/iscsi/initiatorname.iscsi file
Update the /etc/iscsi/initiatorname.iscsi
file with the IQN from the IBM Cloud® console. Enter the value as lowercase.
InitiatorName=<value-from-the-Portal>
Configure credentials
Edit the following settings in /etc/iscsi/iscsid.conf
by using the username and password from the IBM Cloud® console. Use uppercase for CHAP names.
node.session.auth.authmethod = CHAP
node.session.auth.username = <Username-value-from-Portal>
node.session.auth.password = <Password-value-from-Portal>
discovery.sendtargets.auth.authmethod = CHAP
discovery.sendtargets.auth.username = <Username-value-from-Portal>
discovery.sendtargets.auth.password = <Password-value-from-Portal>
Leave the other CHAP settings commented. IBM Cloud® storage uses only one-way authentication. Do not enable Mutual CHAP.
Discover the storage device and login
The iscsiadm utility is a command-line tool aids the discovery and login to iSCSI targets, plus access and management of the open-iscsi database. For more information, see the iscsiadm(8) man page. In this step, discover the device by using the Target IP address that was obtained from the IBM Cloud® console.
-
Run the discovery against the iSCSI array.
iscsiadm -m discovery -t sendtargets -p <ip-value-from-IBM-Cloud-console>
If the IP information and access details are displayed, then the discovery is successful.
-
Log in to the iSCSI array.
iscsiadm -m node --login
Verifying configuration
-
Validate that the iSCSI session is established.
iscsiadm -m session -o show
-
Validate that multiple paths exist.
multipath -l
This command reports the paths. If it is configured correctly, then each volume has a single group, with a number of paths equal to the number of iSCSI sessions. It's possible to attach Block Storage for Classic with only a single path, but it is important that Connections are established on both paths to ensure no disruption of service.
If MPIO isn't configured correctly, your storage device might disconnect and appear offline when a network outage occurs or when IBM Cloud® teams perform maintenance. MPIO ensures an extra level of connectivity during those events, and keeps an established session to the LUN with active read/write operations.
-
List the partition tables for the connected device.
fdisk -l | grep /dev/mapper
By default the storage device attaches to
/dev/mapper/<wwid>
. WWID is persistent while the volume exists. The command reports something similar to the following example.Disk /dev/mapper/3600a0980383030523424457a4a695266: 73.0 GB, 73023881216 bytes
In the example, the string
3600a0980383030523424457a4a695266
is the WWID. Your application ought to use the WWID. It's also possible to assign more easier-to-read names by using "user_friendly_names" or "alias" keywords in multipath.conf. For more information, see themultipath.conf
man page.The volume is now mounted and accessible on the host. You can create a file system next.
Creating a file system (optional)
Follow these steps to create a file system on the newly mounted volume. A file system is necessary for most applications to use the volume. Use fdisk
for drives that are less than 2 TB and parted
for a disk bigger than 2 TB.
Creating a file system with fdisk
-
Get the disk name.
fdisk -l | grep /dev/mapper
The disk name that is returned looks similar to
/dev/mapper/XXX
. -
Create a partition on the disk.
fdisk /dev/mapper/XXX
The XXX represents the disk name that is returned in Step 1.
Scroll further down for the command codes that are listed in the
fdisk
command table. -
Create a file system on the new partition.
fdisk –l /dev/mapper/XXX
- The new partition is listed with the disk, similar to
XXXp1
, followed by the size, Type (83), and Linux®. - Take a note of the partition name, you need it in the next step. (The XXXp1 represents the partition name.)
- Create the file system:
mkfs.ext3 /dev/mapper/XXXp1
- The new partition is listed with the disk, similar to
-
Create a mount point for the file system, and mount it.
- Create a partition name
PerfDisk
or where you want to mount the file system.
mkdir /PerfDisk
- Mount the storage with the partition name.
mount /dev/mapper/XXXp1 /PerfDisk
- Check that you see your new file system listed.
df -h
- Create a partition name
-
Add the new file system to the system's
/etc/fstab
file to enable automatic mounting on boot.- Append the following line to the end of
/etc/fstab
(with the partition name from Step 3).
/dev/mapper/XXXp1 /PerfDisk ext3 defaults,_netdev 0 1
- Append the following line to the end of
Creating a file system with parted
On many Linux® distributions, parted
comes preinstalled. However, if you need to you can install it running the following command.
# yum install parted
To create a file system with parted
, follow these steps.
-
Start the interactive
parted
shell.parted
-
Create a partition on the disk.
-
Unless it is specified otherwise,
parted
uses your primary drive. The primary drive is/dev/sda
in most cases. Switch to the disk that you want to partition by using the command select. Replace XXX with your new device name.select /dev/mapper/XXX
-
Run
print
to confirm that you are on the correct disk.print
-
Create a GPT partition table.
mklabel gpt
-
Parted
can be used to create primary and logical disk partitions, the steps that are involved are the same. To create a partition,parted
usesmkpart
. You can give it other parameters like primary or logical depending on the partition type that you want to create. The listed units default to megabytes (MB). To create a 10-GB partition, you start from 1 and end at 10000. You can also change the sizing units to terabytes by enteringunit TB
if you want to.mkpart
-
Exit
parted
withquit
.quit
-
-
Create a file system on the new partition.
mkfs.ext3 /dev/mapper/XXXp1
It's important to select the correct disk and partition when you run this command. Verify the result by printing the partition table. Under the file system column, you can see ext3.
-
Create a mount point for the file system and mount it.
- Create a partition name
PerfDisk
or where you want to mount the file system.
mkdir /PerfDisk
- Mount the storage with the partition name.
mount /dev/mapper/XXXp1 /PerfDisk
- Check that you see your new file system listed.
df -h
- Create a partition name
-
To enable automatic mounting om boot, add the new file system to the system's
/etc/fstab
file.- Append the following line to the end of
/etc/fstab
(by using the partition name from Step 3).
/dev/mapper/XXXp1 /PerfDisk ext3 defaults,_netdev 0 1
- Append the following line to the end of
Unmounting Block Storage for Classic volumes
When you no longer need the volume, unmount it before you delete it.
- Unmount the file system.
umount /dev/mapper/XXXp1 /PerfDisk
- If you do not have any other volumes in that target portal, you can log out of the target.
iscsiadm -m node -t <TARGET NAME> -p <PORTAL IP:PORT> --logout
- If you do not have any other volumes in that target portal, delete the target portal record to prevent future login attempts.
For more information, see theiscsiadm -m node -o delete -t <TARGET IQN> -p <PORTAL IP:PORT>
iscsiadm
manual.