# This is a basic configuration file with some examples, for device mapper
# multipath.
# For a complete list of the default configuration values, see
# /usr/share/doc/device-mapper-multipath-0.4.9/multipath.conf.defaults
# For a list of configuration options with descriptions, see
# /usr/share/doc/device-mapper-multipath-0.4.9/multipath.conf.annotated
#
# REMEMBER: After updating multipath.conf, you must run
#
# service multipathd reload
#
# for the changes to take effect in multipathd ## By default, devices with vendor = "IBM" and product = "S/390.*" are
## blacklisted. To enable mulitpathing on these devies, uncomment the
## following lines.
#blacklist_exceptions {
# device {
# vendor "IBM"
# product "S/390.*"
# }
#} ## Use user friendly names, instead of using WWIDs as names.
defaults {
user_friendly_names yes
}
##
## Here is an example of how to configure some standard options.
##
#
#defaults {
# udev_dir /dev
# polling_interval 10
# path_selector "round-robin 0"
# path_grouping_policy multibus
# getuid_callout "/lib/udev/scsi_id --whitelisted --device=/dev/%n"
# prio alua
# path_checker readsector0
# rr_min_io 100
# max_fds 8192
# rr_weight priorities
# failback immediate
# no_path_retry fail
# user_friendly_names yes
#}
##
## The wwid line in the following blacklist section is shown as an example
## of how to blacklist devices by wwid. The 2 devnode lines are the
## compiled in default blacklist. If you want to blacklist entire types
## of devices, such as all scsi devices, you should use a devnode line.
## However, if you want to blacklist specific devices, you should use
## a wwid line. Since there is no guarantee that a specific device will
## not change names on reboot (from /dev/sda to /dev/sdb for example)
## devnode lines are not recommended for blacklisting specific devices.
##
#blacklist {
# wwid 26353900f02796769
# devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*"
# devnode "^hd[a-z]"
#}
#multipaths {
# multipath {
# wwid 3600508b4000156d700012000000b0000
# alias yellow
# path_grouping_policy multibus
# path_checker readsector0
# path_selector "round-robin 0"
# failback manual
# rr_weight priorities
# no_path_retry 5
# }
# multipath {
# wwid 1DEC_____321816758474
# alias red
# }
#}
#devices {
# device {
# vendor "COMPAQ "
# product "HSV110 (C)COMPAQ"
# path_grouping_policy multibus
# getuid_callout "/lib/udev/scsi_id --whitelisted --device=/dev/%n"
# path_checker readsector0
# path_selector "round-robin 0"
# hardware_handler "0"
# failback 15
# rr_weight priorities
# no_path_retry queue
# }
# device {
# vendor "COMPAQ "
# product "MSA1000 "
# path_grouping_policy multibus
# }
#}

最新文章

  1. [Android Pro] Dangerous permissions and permission groups.
  2. ucenter的单点登录
  3. C/C++ 如何来自动优雅的涮别银家的贴子
  4. PopupWindow错误:PopupWindow$1.onScrollChanged 出现 NullPointerException和PopupViewContainer.dispatchKeyEvent 出现 NullPointerException
  5. 使用git上传项目
  6. JavaWeb学习记录(二十五)——权限管理总结
  7. TemplateBinding vs TemplatedParent【PluraSight】
  8. Headfirst设计模式的C++实现——外观模式(Facade)
  9. Sublime Text使用心得(一)
  10. windows 与Linux 互传文件
  11. ASP.NET MVC 实现与SQLSERVER的依赖缓存
  12. 解决Windows 7/win8 使用VMware虚拟机的NAT 不能上网
  13. git将本地项目添加到github远程仓库
  14. 大约PF_RING/Intel 82599/透明VPN一些事
  15. 【Windows 10 应用开发】跟随系统主题颜色
  16. 0711HTML初体验
  17. 初学者易上手的SSH-hibernate02 三种查询方式
  18. 最大流模版 EK
  19. splay详解(一)
  20. 搭建Hadoop

热门文章

  1. spark精华面试题
  2. struts.xml中package标签的子标签及顺序
  3. performance面板使用,以及解决动画卡顿
  4. Oracle VM VirtualBox 安装 Centos7 并配置静态IP
  5. 【版本控制工具】 Git基础
  6. 构建docker基本镜像
  7. 生产者消费者问题--synchronized
  8. mysql自增字段AUTO_INCREMENT重排或归零
  9. magento简化url多级分类去掉父目录
  10. 文件操作相关函数(POSIX 标准 open,read,write,lseek,close)