SAN (iSCSI) and Device-Mapper Multipathing !

This article explains how to set up a Device-Mapper Multipath, without DM-Multipath, each path from a server node to a storage controller is treated by the system as a separate  device, even when the I/O path connects the same server node to the same storage controller. DM-Multipath provides a way of organizing the I/O paths logically, by creating a single multipath device on top of the underlying devices.

 

SAN-DM-Multipath

SAN Server and Client

1- Tables of contents:

  • SAN (iSCSI)
  • Device-Mapper MultiPath

 2- SAN (iSCSI):

In computing, iSCSI is an acronym for Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities. By carrying SCSI commands over IP networks, iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over LANs,  WANs… The protocol allows clients (called initiators) to send SCSI commands to SCSI storage devices (targets) on remote servers. It is a storage area network (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts with the illusion of locally attached disks,for more information.

Step 1: Install and Configure SCSI Target on the SAN Server:

– To install SCSI Target:

san-install-iscsi

 

– To configure your iSCSI server (SCSI Target):

san-tgt-config

 

 

 

 

– Start your SCSI target service

san-tgtd-start

 

 

– To verify the iSCSI Target configuration:

san-tgt-admin

 

 

 

 

 

 

 

 

 

 

 

– For auto start after reboot:

san-chkconfig

 

 

Step 2: Install and Configure SCSI Initiator on the Client Node:

– Install SCSI Initiator.

client-yum-install-iscsi

 

– Set up SCSI Initiator on Node:

client-iscsiadmin

 

 

client-iscsiadmin-login

 

 

 

3- Device-Mapper MultiPathing:

DM-Multipath can be used to provide:

  • Redundancy: DM-Multipath can provide failover in an active/passive configuration. In an active/passive configuration, only half the paths are used at any time for I/O. If any element of an I/O path (the cable, switch, or controller) fails, DM-Multipath switches to an alternate path.
  • Improved Performance: DM-Multipath can be configured in active/active mode, where I/O is spread over the paths in a round-robin fashion. In some configurations, DM-Multipath can detect loading on the I/O paths and dynamically re-balance the load.

– Install Device-Mapper Multipath

client-yum-install-multipath

 

– Enable Device-Mapper Multipathing:

  • Method 1: create a configuration file named multipath.conf with the command:

client-mpathconf--enable

 

  • Method 2: copy the file multipath.conf from the documentation

client-cp-multipath

 

 

– Start the multipath server:

client-multipathd-start

 

 

– Verify configuration with multipath:

client-multipath-l-after-start

 

 

 

Note: At this step, the default configuration is:

polling_interval : Specifies the interval between two path checks in seconds. For properly functioning paths, the interval between checks will gradually increase to (4*polling_interval ). The default value is 5.

Verbosity : The default verbosity. Higher values increase the verbosity level. Valid levels are between 0 and 6. The default value is 2.

path_selector : Specifies the default algorithm to use in determining what path to use for the next I/O operation. Possible values include: round-robin 0 :Loop through every path in the path group, sending the same amount of I/O to each.

path_grouping_policy : Specifies the default path grouping policy to apply to unspecified multipaths. Possible values include: failover : 1 path per priority group.

user_friendly_names : f set to yes, specifies that the system should use the /etc/multipath/bindings file to assign a persistent and unique alias to the multipath, in the form of mpath. If set to no, specifies that the system should use the WWID as the alias for the multipath. In either case, what is specified here will be overridden by any device-specific aliases you specify in the multipaths section of the configuration file. The default value is no.

And more… you can find it is this URL.

 

4- Conclusion:

By default, DM-Multipath includes support for the most common storage arrays that support DM-Multipath. The supported devices can be found in the multipath.conf.defaults file.

 

Bookmark the permalink.
Loading Facebook Comments ...

One Response to SAN (iSCSI) and Device-Mapper Multipathing !

  1. Pingback: 2intervention

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.