π ~1 min read
Table of contents
Symptom & Impact
Large clock drift causes TLS, Kerberos, and scheduler failures.
Environment & Reproduction
Seen after VM resume, firewall changes, or disabled time services.
timedatectl status
chronyc tracking 2>/dev/null || true
ntpq -p 2>/dev/null || true
Root Cause Analysis
NTP daemon disabled, unreachable servers, or blocked UDP/123 traffic.
Quick Triage
Determine active time service and current sync state.
systemctl status systemd-timesyncd chrony ntp --no-pager
timedatectl show-timesync --all
ss -ulpn | grep :123
Step-by-Step Diagnosis
Verify NTP reachability and daemon logs.
ping -c 3 pool.ntp.org
chronyc sources -v 2>/dev/null || true
journalctl -u systemd-timesyncd -n 120 --no-pager

Solution – Primary Fix
Enable one NTP service and configure trusted upstream servers.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo apt install -y systemd-timesyncd
sudo timedatectl set-ntp true
sudo systemctl restart systemd-timesyncd
timedatectl status

Solution – Alternative Approaches
Use chrony for better handling of intermittent connectivity.
sudo apt install -y chrony
sudo systemctl enable --now chrony
chronyc tracking
Verification & Acceptance Criteria
System reports synchronized clock with stable offset.
timedatectl status
chronyc tracking 2>/dev/null || true
date -u
Rollback Plan
Disable new time daemon and restore previous service if needed.
sudo systemctl disable --now chrony
sudo systemctl enable --now systemd-timesyncd
Prevention & Hardening
Monitor drift and enforce NTP availability in network policy.
timedatectl show-timesync
journalctl -u systemd-timesyncd --since -24h --no-pager
Related Errors & Cross-Refs
Correlates with certificate not yet valid or expired errors.
Related tutorial: View the step-by-step tutorial for Debian 13.
View all Debian 13 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Debian time synchronization and chrony 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.