Hi, i'm trying to configure LVM over iSCSI connection for 3 different nodes.
These are the portal for each of my iSCSI, both target to the same storage:
Portal 1
192.168.10.20
Portal 2
192.168.20.20
These are the ip interface for each vm that is connected to the portal.
VM1
192.168.10.201
192.168.20.201
VM2
192.168.10.202
192.168.20.202
VM3
192.168.10.203
192.168.20.203
I have created two LVM for portal 1 and portal 2.
In each node, i have configure multipath.conf, with the same configuration, including the world id
``
After restarting multipath, everything works. But after some time, the shared LVM status across every node becomes unknown. What did i do wrong?
These are the portal for each of my iSCSI, both target to the same storage:
Portal 1
192.168.10.20
Portal 2
192.168.20.20
These are the ip interface for each vm that is connected to the portal.
VM1
192.168.10.201
192.168.20.201
VM2
192.168.10.202
192.168.20.202
VM3
192.168.10.203
192.168.20.203
I have created two LVM for portal 1 and portal 2.
In each node, i have configure multipath.conf, with the same configuration, including the world id
``
Code:
defaults {
polling_interval 2
path_selector "round-robin 0"
path_grouping_policy multibus
uid_attribute ID_SERIAL
rr_min_io 100
failback immediate
no_path_retry queue
user_friendly_names yes
}
blacklist {
wwid .*
}
blacklist_exceptions {
wwid "[id 1]"
wwid "[id 2]"
}
multipaths {
multipath {
wwid "[id 1]"
alias mpath0
}
multipath {
wwid "[id 2]"
alias mpath1
}
}
After restarting multipath, everything works. But after some time, the shared LVM status across every node becomes unknown. What did i do wrong?