CentOS 7.x multipath

From Notes_Wiki

Home > CentOS > CentOS 7.x > System Administration > File system management > CentOS 7.x multipath

On CentOS 7.x configure multipath using:

  1. yum -y install device-mapper-multipath parted
  2. For enabling multipath use:
    mpathconf --enable
    to create the multipath.conf config file.
  3. systemctl restart multipathd
  4. fdisk -l should show /dev/mapper/mpath<a> devices
  5. multipath -ll to see various multipath device and their paths

Note that without parted new partitions are not detected via partprobe automatically and require reboot. With parted new partitions are detected immediately and we can avoid reboot.


Refer:


Home > CentOS > CentOS 7.x > System Administration > File system management > CentOS 7.x multipath