π ~1 min read
Table of contents
Symptom & Impact
SAN devices are missing at boot, resulting in unavailable filesystems and application downtime.
Environment & Reproduction
Observed on hosts connected to FC/iSCSI SAN when multipath config or startup order changed.
multipath -ll
lsblk
systemctl status multipathd
Root Cause Analysis
Invalid blacklists, outdated WWIDs, or services not starting early enough prevent mapper device creation.
Quick Triage
Check daemon and kernel discovery messages.
journalctl -u multipathd -b --no-pager | tail -n 80
dmesg | grep -Ei 'sd[a-z]|dm-|multipath'
systemctl is-enabled multipathd
Step-by-Step Diagnosis
Validate multipath config syntax and detected WWIDs.
multipath -t
cat /etc/multipath.conf
cat /etc/multipath/wwids

Solution – Primary Fix
Correct config, rebuild initramfs if needed, and restart multipath daemon.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo mpathconf --enable --with_multipathd y
sudo systemctl enable --now multipathd
sudo multipath -r
sudo dracut -f

Solution – Alternative Approaches
Add explicit devices section for vendor/product-specific quirks.
sudo vi /etc/multipath.conf
sudo systemctl restart multipathd
multipath -ll
Verification & Acceptance Criteria
Expected `dm-*` maps appear and filesystems mount correctly.
multipath -ll
ls /dev/mapper
mount -a
Rollback Plan
Restore previous multipath config and boot with known-good kernel if needed.
sudo cp /etc/multipath.conf.bak /etc/multipath.conf
sudo systemctl restart multipathd
Prevention & Hardening
Version-control SAN host configs and test failover paths quarterly.
multipathd show paths
multipathd show maps
Related Errors & Cross-Refs
Related to missing FC zoning, stale iSCSI sessions, and udev timeout tuning issues.
Related tutorial: View the step-by-step tutorial for oracle-linux-10.
View all oracle-linux-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
RHEL DM-Multipath and SAN best-practice guides for enterprise storage deployments.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.