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: | ||
[[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]] | |||
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:
- yum -y install device-mapper-multipath parted
- For enabling multipath use:
- mpathconf --enable
-
- to create the multipath.conf config file.
- systemctl restart multipathd
- fdisk -l should show /dev/mapper/mpath<a> devices
- 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