Compare commits

..

1 Commits

Author SHA1 Message Date
Eric Gillingham 4fc44838b8
Merge 7bf58e0a6b into 29b110f5e2 2024-05-01 15:06:44 -07:00
1 changed files with 4 additions and 5 deletions

View File

@ -235,14 +235,13 @@ You will still need to configure the SSH connector for listing the ZFS Pools bec
4. Create a `/etc/multipath.conf` with the following defaults block: 4. Create a `/etc/multipath.conf` with the following defaults block:
``` ```
defaults { defaults {
polling_interval 5 polling_interval 5
path_selector "round-robin 0" path_selector "round-robin 0"
path_grouping_policy multibus path_grouping_policy multibus
uid_attribute ID_SERIAL uid_attribute ID_SERIAL
prio sysfs prio alua
detect_prio yes path_checker readsector0
path_checker tur
rr_min_io 100 rr_min_io 100
max_fds 8192 max_fds 8192
rr_weight priorities rr_weight priorities
@ -250,7 +249,7 @@ defaults {
no_path_retry queue no_path_retry queue
user_friendly_names yes user_friendly_names yes
find_multipaths smart find_multipaths smart
} }
``` ```
The key setting here is `find_multipaths` which tells multipath to scan for luns that are avaiable over multiple paths. The key setting here is `find_multipaths` which tells multipath to scan for luns that are avaiable over multiple paths.
*NOTE* You might have to create a `blacklist { ... }` section in `multipath.conf` to exclude your physical scsi drives, the ISCSI_Multipath wiki page above has some guidance for getting the wwids. *NOTE* You might have to create a `blacklist { ... }` section in `multipath.conf` to exclude your physical scsi drives, the ISCSI_Multipath wiki page above has some guidance for getting the wwids.