Multipath in Linux : Quick view


The Below post will help you on how to check the multipath information on a linux server. 


Multipath Package Version

#rpm -qa | grep multipath


Multipath Service Status


#chkconfig --list multipathd


Multipath Devices Basic Information


#/sbin/multipath -v2 -d -ll


Multipath Devices Detailed Information


#/sbin/multipath -v3 -d -ll

#grep -vE '^#|^ *$' /etc/multipath.conf

Device Mapper Files
 

#for MultiPath in $(/sbin/multipath -v1 -d -l); do ls -l /dev/mapper/${MultiPath}; done


Multipath Bindings


#cat /var/lib/multipath/bindings



Post a Comment

0 Comments