Good afternoon, I have Proxmox VE 7.1 installed and I want to connect an HPE Nimble AF20 server via multipath. Right now I have the multipath.conf file configured as follows:
With this configuration everything is working. The problem is that quite often a new path appears giving me an error: example:
I think this is due to some configuration that I have wrong in the multipath.conf file, can someone help me.
defaults {
user_friendly_names yes
find_multipaths no
}
blacklist {
devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*"
devnode "^hd[a-z]"
device {
vendor ".*"
product ".*"
}
}
blacklist_exceptions {
device {
vendor "Nimble"
product "Server"
}
}
devices {
device {
vendor "Nimble"
product "Server"
path_grouping_policy group_by_prio
prio "alua"
hardware_handler "1 alua"
path_selector "service-time 0"
path_checker tur
no_path_retry 30
failback immediate
fast_io_fail_tmo 5
dev_loss_tmo infinity
rr_min_io_rq 1
rr_weight uniform
}
}
With this configuration everything is working. The problem is that quite often a new path appears giving me an error: example:
mpathar (2eabaacf386591f4d6c9ce90080dce5ba) dm-189 Nimble,Server
size=1.5T features='1 queue_if_no_path' hwhandler='1 alua' wp=ro
`-+- policy='service-time 0' prio=0 status=enabled
|- 3:0:0:101 sdo 8:224 failed undef running
`- 4:0:0:101 sdp 8:240 failed undef running
I think this is due to some configuration that I have wrong in the multipath.conf file, can someone help me.