π ~1 min read
Table of contents
Symptom & Impact
Server boots into emergency target and does not reach multi-user mode.
Environment & Reproduction
Occurs after disk replacement or cloning where partition UUIDs changed.
cat /etc/fstab
Root Cause Analysis
One or more mount entries reference non-existent UUIDs, causing boot-time mount failure.
Quick Triage
Compare current block device UUIDs to fstab entries.
blkid
cat /etc/fstab
Step-by-Step Diagnosis
Test fstab mounts manually and inspect boot journal.
mount -a
journalctl -xb | grep -i mount

Solution – Primary Fix
Edit fstab to correct UUID values and add nofail where appropriate.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo vi /etc/fstab
sudo mount -a
sudo systemctl default

Solution – Alternative Approaches
Use LABEL= entries for removable data volumes when UUID churn is expected.
Verification & Acceptance Criteria
System boots cleanly and all required mounts are present.
systemctl is-system-running
findmnt
Rollback Plan
Restore previous fstab from rescue shell backup.
cp /etc/fstab.bak /etc/fstab
Prevention & Hardening
Validate fstab syntax after storage changes and before reboot.
Related Errors & Cross-Refs
Often accompanied by dependency failed for local filesystems and dracut mount warnings.
Related tutorial: View the step-by-step tutorial for rhel-10.
View all rhel-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
RHEL storage and boot troubleshooting documentation.
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.