My server is an Oracle Enterprise Linux 5.4 (RHEL5) on an hp blade (x64) with qlogic HBAs connected to an EMC clariion SAN.
We are migrating from multipath to powerpath, because emc and the company storage team will not support multipath.
Currently my 3 lvm volume groups are using the /dev/dm-X devices that device mapper/multipath creates:
- vg01 is one whole disk partition on a 25GB lun
- vg02 is 3 16 gb luns, no partitions
- vg03 is one 1tb lun, no partitions.
(experiment 1) I turn off multipathd and disable it in the check config then add the following filter to the lvm.conf
.
filter = [ "a|/dev/emc.*|", "a|/dev/cciss.*|", "r/.*/" ]
and when I reboot:
- vg01 is undetectable
- vg02 detected successfully
- vg03 detected successfully
vg01 is undetected on its emcpower disk, even though I can see the lvm header stuff on there with dd. The other two VGs are detected just fine. also all the dm-X devices are still in /dev/.
(2) So I delete the filter and enable the everything blacklist in multipath.conf
:
blacklist {
devnode "*"
}
now on reboot there are no more dm-X devices in /dev/ and vg02 and vg03 are found on their emcpower devices but vg01 is still undetectable.
(3) I reboot with both the filter and the blacklist and results are that vg01 is undetectable but vg02 and vg03 are fine.
Can anyone help me to figure out why this volume group seems to be undetectable without device-mapper/multipath?
And can someone explain what the relationship between lvm, device-mapper, and multipath is/are?