如何创建多路径设备

如何创建多路径设备

运行 Red Hat Enterprise Linux Server 版本 6.6。

创建新的 LUN,重新扫描总线,在新创建的 4 个设备之一上创建 PV,然后在同一个设备上创建 VG-LV。LUN 是多路径的,但我忘记修改 multipah.conf 中的 blacklist_exceptions 和 LUN 的多路径部分。所以我最终得到:

PV Name               /dev/sdbq

/dev/disk/by-id

lrwxrwxrwx 1 root root 10 Oct 13 17:56 scsi-360002ac00000000055000b01000071a6 -> ../../sdbq
lrwxrwxrwx 1 root root 10 Oct 13 17:56 wwn-0x60002ac00000000055000b01000071a6 -> ../../sdbq

/dev/disk/by-path

lrwxrwxrwx 1 root root 10 Oct 13 17:52 pci-0000:04:00.1-fc-0x20210002ac0071a6-lun-16 -> ../../sdbn
lrwxrwxrwx 1 root root 10 Oct 13 17:34 pci-0000:04:00.1-fc-0x21210002ac0071a6-lun-16 -> ../../sdbo
lrwxrwxrwx 1 root root 10 Oct 13 17:34 pci-0000:07:00.1-fc-0x24220002ac0071a6-lun-16 -> ../../sdbp
lrwxrwxrwx 1 root root 10 Oct 13 17:56 pci-0000:07:00.1-fc-0x25220002ac0071a6-lun-16 -> ../../sdbq

那么,此时我该如何创建指向 LUN 的 mpath 设备?以及如何将多路径设备与 PV 关联?

答案1

  • 创建multipath.conf条目0x60002ac00000000055000b01000071a6
  • 下面的条目alias将给出/dev/mapper/name

  • 重新运行多路径

    echo reconfigure | multipath -k
    
  • 这将保持sdbq

  • 运行pvscan这个应该会创建链接/dev/mapper

相关内容