Difference between revisions of "CentOS 7.x multipath"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>CentOS_7.x_file_system_management|CentOS 7.x file system management</yambe:breadcrumb> =CentOS 7.x multipath= On CentOS 7.x configure multipath using: # yum...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb>CentOS_7.x_file_system_management|CentOS 7.x file system management</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x system administration|System Administration]] > [[CentOS 7.x file system management|File system management]] > [[CentOS 7.x multipath]]
=CentOS 7.x multipath=


On CentOS 7.x configure multipath using:
On CentOS 7.x configure multipath using:
Line 18: Line 17:
Refer:
Refer:
* https://www.centos.org/docs/5/html/5.2/DM_Multipath/setup_procedure.html
* https://www.centos.org/docs/5/html/5.2/DM_Multipath/setup_procedure.html
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x system administration|System Administration]] > [[CentOS 7.x file system management|File system management]] > [[CentOS 7.x multipath]]

Latest revision as of 06:49, 25 August 2022

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