📖 ~1 min read
Table of contents
Symptom & Impact
auditd reports kernel audit messages lost on CentOS Stream 9.
Environment & Reproduction
Compliance-focused hosts with high syscall volume.
cat /etc/os-release
uname -r
rpm -qa | grep
Root Cause Analysis
Audit backlog limit too small or auditd disk_full_action misconfigured.
Quick Triage
Confirm package, network, SELinux and firewall state.
auditctl -s
auditctl -l
df -h /var/log/audit
Step-by-Step Diagnosis
Drill into audit/auditd state and recent journal entries to isolate the failure.
journalctl -u auditd -n 80
ausearch -m DAEMON -ts today

Solution – Primary Fix
Apply the standard remediation for audit/auditd on CentOS Stream 9.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo auditctl -b 16384
sudo sed -i 's/^max_log_file =.*/max_log_file = 100/' /etc/audit/auditd.conf
sudo systemctl restart auditd

Solution – Alternative Approaches
Forward audit events to remote audit collector via audisp-remote.
Verification & Acceptance Criteria
Validate the fix with positive functional checks before closing.
auditctl -s
ausearch -m AVC -ts recent
Rollback Plan
Revert to the previous known-good configuration if the fix regresses.
cp /root/backup/auditd.conf /etc/audit/auditd.conf
systemctl restart auditd
Prevention & Hardening
Codify the fix in configuration management and add monitoring.
Monitor backlog watermark via Prometheus.
Related Errors & Cross-Refs
SELinux AVC denials missing from logs.
Related tutorial: View the step-by-step tutorial for centos-stream-9.
View all centos-stream-9 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
auditd 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.