📖 ~1 min read
Table of contents
Symptom & Impact
After an unclean shutdown a filesystem refuses to mount. Application data is unavailable until the filesystem is checked and repaired.
Environment & Reproduction
Occurs to JFS2 filesystems where inline log is dirty after power loss.
mount /appdata 2>&1 | head
oslevel -s
uname -a
Root Cause Analysis
Cause is dirty log state. Mount aborts to prevent further corruption until fsck replays or repairs the structure.
Quick Triage
Run informational fsck before allowing changes.
mount /appdata 2>&1 | head
Step-by-Step Diagnosis
Capture deeper evidence to isolate the failure path.
mount /appdata 2>&1 | head
fsck -p /dev/fslv03
errpt -a | head
lsfs /appdata
lquerylv -L fslv03

Solution – Primary Fix
Apply the proven primary fix in a controlled change window.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
fsck -y /dev/fslv03
mount /appdata
logform /dev/loglv00
mount -a

Solution – Alternative Approaches
Use these alternatives when the primary fix is blocked by environmental constraints.
umount /dev/fslv03
backup; recreate; restore
restore -rqf /backup/appdata.bk
Verification & Acceptance Criteria
Confirm the system meets acceptance criteria after the change.
mount | grep /appdata
df -g /appdata
lssecattr -F /appdata | head
Rollback Plan
Revert cleanly if regressions appear during validation.
umount /appdata
fsck -y /dev/fslv03
mount /appdata
Prevention & Hardening
Reduce recurrence with monitoring and preventive tuning.
errnotify -a 'en_name=jfs2_log_bad'
UPS for power protection
periodic mksysb
Related Errors & Cross-Refs
Related to LVM bad blocks, hdisk MPIO loss, and snapshot interference.
Related tutorial: View the step-by-step tutorial for aix-7.1.
View all aix-7.1 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
IBM AIX 7.2 JFS2 administration, fsck and logform references.
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.