π ~1 min read
Table of contents
Symptom & Impact
Expected dataset path is empty after reboot, causing service startup failures and missing data views.
Environment & Reproduction
Occurs when legacy fstab entries or pre-created directories interfere with ZFS mount semantics.
zfs list -o name,mountpoint,canmount,mounted
cat /etc/fstab
mount | grep zfs
Root Cause Analysis
Mountpoint collision between ZFS property and traditional mounts prevents automatic attach at boot.
Quick Triage
Check canmount and mountpoint inheritance values.
zfs get -r mountpoint,canmount
service zfs status
Step-by-Step Diagnosis
Trace boot mount ordering and identify conflicting path owner.
zpool history | tail -n 40
dmesg -a | grep -i zfs | tail -n 50
ls -ld

Solution – Primary Fix
Remove conflicting fstab line and set canonical ZFS mount properties.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
cp /etc/fstab /etc/fstab.bak
vi /etc/fstab
zfs set canmount=on
zfs set mountpoint=
zfs mount -a

Solution – Alternative Approaches
Use canmount=noauto for staged datasets and mount from service hook.
zfs set canmount=noauto
zfs mount
Verification & Acceptance Criteria
Dataset mounts correctly after reboot and dependent services start cleanly.
mount | grep
service -e | grep
shutdown -r now
Rollback Plan
Restore saved fstab and previous dataset properties if unexpected mount behavior appears.
cp /etc/fstab.bak /etc/fstab
zfs inherit mountpoint
Prevention & Hardening
Keep all ZFS-backed paths out of fstab and codify mountpoint conventions.
zfs get -r mountpoint,canmount
grep -v '^#' /etc/fstab
Related Errors & Cross-Refs
Related to jailed datasets and delegated mount rights.
Related tutorial: View the step-by-step tutorial for FreeBSD 14.
View all FreeBSD 14 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
zfsprops manual and FreeBSD boot sequence documentation for ZFS mounts.
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.