1、服务器系统最小化安装,默认是没有multipath,需要自己安装RPM包
首先上传rpm到随便一个目录,我这里上传到/mnt下,然后安装RPM包,rpm -ivh 包名
2、准备好配置文件:multipath.conf 放到位置/etc/multipath.conf
defaults {
polling_interval 10
max_fds 8192
}
devices {
device {
vendor "3PARdata"
product "VV"
no_path_retry 18
features "0"
hardware_handler "0"
path_grouping_policy multibus
getuid_callout "/lib/udev/scsi_id --whitelisted --device=/dev/%n"
path_selector "round-robin 0"
rr_weight uniform
rr_min_io_rq 1
path_checker tur
failback immediate
}
}
将多路径软件multipath设置为开机自启动
#chkconfig --level 2345 multipathd on
检查
#chkconfig --list|grep multipathd
启动multipath服务
#servicemultipathd restart
如果没有配置文件,查看就会提示以下截图内容
加了配置文档后的效果
这是4条路径状态active ready running
本文出自 “勤能补拙” 博客,请务必保留此出处http://504915363.blog.51cto.com/11857554/1827271
原文地址:http://504915363.blog.51cto.com/11857554/1827271