I have a PVE node on a Dell PowerEdge R550 connected to a MD1400 array using redundant connection. The controller is a Dell HBA355e. The disks show twice in the OS; I guess I must setup multipathing but I have very little experience with this. I followed some guides I could google for, but get stuck at this point: `multipath -ll` shows nothing.
An easy way is to use only 1 cable to connect the md1400 array, but it would be nice if I can make use of this redundancy.
Any hint please?
Here is a summary of what I did:
An easy way is to use only 1 cable to connect the md1400 array, but it would be nice if I can make use of this redundancy.
Any hint please?
Here is a summary of what I did:
Code:
apt-get install multipath-tools
modprobe dm_multipath
cat /etc/multipath.conf
defaults {
user_friendly_names yes
}
# the Dell HBA355e uses mpt3sas driver:
lsmod|grep mpt3sas
mpt3sas 299008 0
raid_class 16384 1 mpt3sas
scsi_transport_sas 45056 2 ses,mpt3sas
systemctl status multipath-tools.service
● multipathd.service - Device-Mapper Multipath Device Controller
Loaded: loaded (/lib/systemd/system/multipathd.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2022-04-21 14:48:44 IST; 24min ago
TriggeredBy: ● multipathd.socket
Process: 125396 ExecStartPre=/sbin/modprobe -a scsi_dh_alua scsi_dh_emc scsi_dh_rdac dm-multipath (code=exited, status=0/SUCCESS)
Main PID: 125397 (multipathd)
Status: "up"
Tasks: 7
Memory: 11.0M
CPU: 79ms
CGroup: /system.slice/multipathd.service
└─125397 /sbin/multipathd -d -s
Apr 21 14:48:44 teima systemd[1]: Starting Device-Mapper Multipath Device Controller...
Apr 21 14:48:44 teima multipathd[125397]: --------start up--------
Apr 21 14:48:44 teima multipathd[125397]: read /etc/multipath.conf
Apr 21 14:48:44 teima multipathd[125397]: failed to increase buffer size
Apr 21 14:48:44 teima multipathd[125397]: path checkers start up
Apr 21 14:48:44 teima systemd[1]: Started Device-Mapper Multipath Device Controller.