π ~1 min read
Table of contents
Symptom & Impact
Workloads show lower throughput and higher latency after host restarts.
Environment & Reproduction
Occurs when tuned service is disabled or profile assignment is overwritten.
tuned-adm active
systemctl status tuned
cat /etc/tuned/active_profile
Root Cause Analysis
Service disablement, missing tuned package, or conflicting profile scripts prevent intended tuning.
Quick Triage
Check profile state and service startup behavior.
tuned-adm list
systemctl is-enabled tuned
journalctl -u tuned -n 50
Step-by-Step Diagnosis
Validate selected profile and effective kernel/sysctl values.
tuned-adm verify
sysctl vm.swappiness
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

Solution – Primary Fix
Enable tuned and apply approved profile persistently.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
dnf install -y tuned
systemctl enable --now tuned
tuned-adm profile throughput-performance

Solution – Alternative Approaches
Use custom tuned profile layered on base template for specific workloads.
mkdir -p /etc/tuned/custom
cp -a /usr/lib/tuned/throughput-performance/* /etc/tuned/custom/
tuned-adm profile custom
Verification & Acceptance Criteria
Profile remains active after reboot and expected tunables are in effect.
tuned-adm active
reboot
tuned-adm active
Rollback Plan
Switch back to prior profile if workload behavior worsens.
tuned-adm profile balanced
systemctl restart tuned
Prevention & Hardening
Track profile drift and validate tuned state in post-boot checks.
systemctl status tuned
tuned-adm recommend
Related Errors & Cross-Refs
Related to cpupower overrides and container runtime cgroup tuning mismatches.
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 tuned profile documentation and performance tuning guide.
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.