π ~1 min read
Table of contents
Symptom & Impact
Clock skew breaks TLS validation, Kerberos, and token-based auth.
Environment & Reproduction
Often seen after VM resume or blocked NTP egress.
timedatectl
chronyc tracking 2>/dev/null || true
date -u
Root Cause Analysis
NTP synchronization disabled or unreachable time sources.
Quick Triage
Inspect sync service state and peers.
timedatectl show-timesync --all
systemctl status systemd-timesyncd
chronyc sources 2>/dev/null || true
Step-by-Step Diagnosis
Validate NTP reachability and drift magnitude.
timedatectl
ntpq -pn 2>/dev/null || true
ping -c 3 time.cloudflare.com

Solution – Primary Fix
Enable network time sync and restart sync daemon.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo timedatectl set-ntp true
sudo systemctl restart systemd-timesyncd
timedatectl status

Solution – Alternative Approaches
Use chrony for stricter time management on servers.
sudo apt install -y chrony
sudo systemctl enable --now chrony
chronyc tracking
Verification & Acceptance Criteria
System reports synchronized clock and low offset.
timedatectl | grep -E 'System clock synchronized|NTP service'
chronyc tracking 2>/dev/null || true
Rollback Plan
Return to previous time service if chrony rollout fails.
sudo systemctl disable --now chrony
sudo systemctl enable --now systemd-timesyncd
Prevention & Hardening
Allow NTP egress and monitor drift continuously.
timedatectl show-timesync --all
systemctl is-enabled systemd-timesyncd
journalctl -u systemd-timesyncd --since -24h --no-pager
Related Errors & Cross-Refs
Often surfaces as certificate not yet valid or expired errors.
Related tutorial: View the step-by-step tutorial for Ubuntu 24.04 LTS.
View all Ubuntu 24.04 LTS tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu time synchronization and chrony deployment guidance.
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.