IBM Cloud Docs
Mount iSCSI LUN on Red Hat Enterprise Linux 8

Mount iSCSI LUN on Red Hat Enterprise Linux 8

This tutorial guides you through how to mount a IBM Cloud® Block Storage for Classic volume on a server with the Red Hat Enterprise Linux® 8 operating system. Complete the following steps to connect a Linux®-based IBM Cloud® Compute instance to a multipath input/output (MPIO) iSCSI storage volume. You're going to create two connections from one network interface of your host to two target IP addresses of the storage array.

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 UIAuthorizing 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.

sudo dnf -y install iscsi-initiator-utils device-mapper-multipath

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.

  1. Enter the mpathconf command with the --enable option.

    # mpathconf --enable --user_friendly_names n
    
  2. 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, where mpath n is the WWID of the device.

  3. Save the configuration file and exit the editor, if necessary.

  4. Issue 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.

    For more information about using the Device Mapper Multipath feature on RHEL 8, see Configuring the device mapper multipath.

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 that is used for 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.

  1. Run the discovery against the iSCSI array.

    iscsiadm -m discovery -t sendtargets -p <ip-value-from-IBM-Cloud-console>
    

    If the IP address information and access details are displayed, then the discovery is successful.

  2. Log in to the iSCSI array.

    iscsiadm -m node --login
    

Verifying configuration

  1. Validate that the iSCSI session is established.

    iscsiadm -m session -o show
    
  2. 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.

  3. 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 the multipath.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

  1. Get the disk name.

    fdisk -l | grep /dev/mapper
    

    The disk name that is returned looks similar to /dev/mapper/XXX.

  2. 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.

  3. 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
      
  4. 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
      
  5. 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 (with the partition name from Step 3).

      /dev/mapper/XXXp1    /PerfDisk    ext3    defaults,_netdev    0    1
      

Creating a file system with parted

On many Linux® distributions, parted comes preinstalled. However, if you need to you can install it by issuing the following command.

# dnf install parted

To create a file system with parted, follow these steps.

  1. Start the interactive parted shell.

    parted
    
  2. Create a partition on the disk.

    1. Unless it is specified otherwise, parted uses your primary drive, which 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
      
    2. Run print to confirm that you are on the correct disk.

      print
      
    3. Create a GPT partition table.

      mklabel gpt
      
    4. Parted can be used to create primary and logical disk partitions, the steps that are involved are the same. To create a partition, parted uses mkpart. You can give it other parameters like primary or logical depending on the partition type that you want to create.

      mkpart
      

      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 entering unit TB if you want to.

    5. Exit parted with quit.

      quit
      
  3. 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.

  4. 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
    
  5. 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