1、LINUX 多路径软件安装1. 首先确认系统中是否已经安装了 device-mapper 工具查看是否安装了 device-mapper 工具rootmailMx1 # rpm -qa|grep devicedevice-mapper-multipath-0.4.7-17.el5device-mapper-multipath-lib-0.4.7-17.el5device-mapper-event-1.02.24-1.el5device-mapper-1.02.24-1.el5安装命令:rpm -ivh device-mapper-multipath-lib-0.4.7-17.el52. 将多路
2、径工具启动脚本添加到启动列表如下所示:#chkconfig -level 35 multipathd on 验证它的设置是否正确:#chkconfig -list | grep multipathmultipathd 0:off 1:off 2:off 3:on 4:off 5:on 6:off3. 创建 multipath.conf 配置文件#cp /usr/share/doc/device-mapper-multipath-0.4.9/multipath.conf /etc/4. 加载模块 #modprobe dm-multipath #modprobe dm-round-robin启动 multipathd 服务 :#service multipathd start5. 生成多路径设备 #multipath -v26. 查看路径结果 #multipath ll7. 重启动系统#init 68. 格式化分区#mkfs.ext4 /dev/mapper/mpath* (硬盘设备地址)