1、安装multipath工具
#yum–yinstalldevice-mapperdevice-mapper-multipath
2、设置开机自启动
#chkconfigmultipathdon
3、开启multipath
#mpathconf--enable
或者使用完整命令:mpathconf --enable --find_multipaths y --with_multipathd y --with_chkconfig y
4、开启服务
#servicemultipathdrestart
5、查看状态
#multipath-ll
出现以下状态表示启动正常
6、创建分区:fdisk /dev/mapper/DATA01 或 parted /dev/mapper/DATA01
7、查看多路径产生的dm盘
#ls-lrt/dev/mapper/
DATA01是盘;DATA01p1是我创建的分区
8、系统默认不是DATA01这样的命名,而是类似于mpathb这样的命名,可以通过修改/etc/multipath.conf来自定义名称
wwid的值可以通过multipath -ll命令获得
原文链接:https://www.f2er.com/oracle/206602.html