在 Debian 10 上,無法同步並出現以下錯誤:ntpd [email protected]
kernel reports TIME_ERROR: 0x41: Clock Unsynchronize
這是ntp.conf
:
disable monitor
statsdir /var/log/ntpstats
restrict -4 default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict ::1
server 0.us.pool.ntp.org iburst
server 1.us.pool.ntp.org iburst
server 2.us.pool.ntp.org iburst
server 3.us.pool.ntp.org iburst
server 127.127.1.0
fudge 127.127.1.0 stratum 10
restrict 127.127.1.0
driftfile /var/lib/ntp/drift
ntpq -c sysinfo
:
associd=0 status=0614 leap_none, sync_ntp, 1 event, freq_mode,
system peer: 50-205-57-38-static.hfc.comcastbusiness.net:123
system peer mode: client
leap indicator: 00
stratum: 2
log2 precision: -23
root delay: 70.634
root dispersion: 3.569
reference ID: 50.205.57.38
reference time: e3a0c049.c39d770a Wed, Jan 6 2021 23:03:37.764
system jitter: 0.723169
clock jitter: 1.177
clock wander: 0.000
broadcast delay: -50.000
symm. auth. delay: 0.000
ntpq -c lpeers
:
remote refid st t when poll reach delay offset jitter
==============================================================================
LOCAL(0) .LOCL. 10 l 286 64 20 0.000 0.000 0.000
*50-205-57-38-st .GPS. 1 u 19 64 37 70.631 1.618 1.843
-ns1.backplanedn 173.162.192.156 2 u 14 64 37 84.235 -1.575 2.852
+c-73-239-136-18 74.6.168.73 3 u 11 64 37 48.606 1.598 2.522
+time-d.bbnx.net 252.74.143.178 2 u 14 64 37 92.632 0.623 0.799
timedatectl
:
Local time: Wed 2021-01-06 23:06:44 UTC
Universal time: Wed 2021-01-06 23:06:44 UTC
RTC time: Wed 2021-01-06 23:06:44
Time zone: Etc/UTC (UTC, +0000)
System clock synchronized: no
NTP service: inactive
RTC in local TZ: no
知道可能出什麼問題嗎?
答案1
您的時鐘同步正常。sync_ntp
你的證明了這一點ntpq -c sysinfo
。您所指的核心訊息在ntpd
啟動過程中是暫時的,無需擔心。
我在您的設定中發現的問題:
timedatectl
未正確報告時間同步。解決這個問題的簡單方法是不運行它。 :-) 在我的一台具有相同作業系統和 NTP 版本的伺服器上,timedatectl
根本不會產生任何有用的東西,而是說Failed to create bus connection: No such file or directory
, 因為我不運行dbus
.- 我很驚訝你的配置竟然可以與池伺服器一起使用,因為缺少一條
restrict source ...
線路。 - 您正在使用 LOCL 時鐘驅動程序,該驅動程式已被棄用多年。
- 同樣,您無需
disable monitor
保護自己不被用於反射式 DDoS - 預設restrict
線路可以處理該問題。
您應該恢復到預設的 Debian/etc/ntp.conf
內容 - 它會比您目前的配置工作得更好,並且在升級時會減少問題。這是一份副本,以防您手邊沒有:http://paste.debian.net/1180011/
答案2
我有過一個多秒時間漂移和類似的錯誤訊息,我已經解決了:
systemctl stop ntpd
systemctl start ntpdate # takes some seconds to succeed
systemctl start ntpd
此後,時間漂移就消失了。解決方案取自opensuse 論壇在這裡