我在 syslog 中查找音频问题,看到大量征求池服务器 ntp 守护进程消息。我过去运行过其他 Linux,但从来不记得看到过这么多 ntp 日志消息。这可能是由于新的网络问题造成的,这对于 Mint 来说很常见吗?如果“常见”,有没有办法让他们闭嘴?
从那时起我已经更换了运营商和路由器硬件,所以我不排除我的网络中存在某些问题。我在访问互联网或玩在线游戏等方面没有任何问题。
答案1
这些消息意味着您的 ntpd 服务器正在寻找更多时间源来同步。预计会看到其中几个,特别是在中断或重新启动后重新连接到网络后,但如果您的 ntpd 和网络连接运行顺利,那么您每天应该不会看到超过几个。如果每隔几分钟就有几个,这可能是一个问题。
您的 ntpd 是否成功连接到对等点并同步时间?您可以使用 进行检查ntpq
。查看 中的对等点列表ntpq -c pe
以及 中报告的层和 reftime ntpq -c rv
。层数 16 意味着“不同步”。
这:
user@localhost $ ntpq -c pe
remote refid st t when poll reach delay offset jitter
==============================================================================
de.pool.ntp.org .POOL. 16 p - 64 0 0.000 0.000 0.002
user@localhost $ ntpq -c rv
associd=0 status=c016 leap_alarm, sync_unspec, 1 event, restart,
version="ntpd [email protected] Tue Jun 20 08:08:18 UTC 2017 (1)",
processor="x86_64", system="Linux", leap=11, stratum=16,
precision=-23, rootdelay=0.000, rootdisp=0.090, refid=INIT,
reftime=00000000.00000000 Thu, Feb 7 2036 7:28:16.000,
clock=dde6bdf4.dec8453b Fri, Dec 22 2017 0:10:44.870, peer=0, tc=3,
mintc=3, offset=0.000000, frequency=4.981, sys_jitter=0.000000,
clk_jitter=0.000, clk_wander=0.000
意味着你的 NTP 实际上不起作用(在这种情况下,因为我刚刚启动它),而:
user@localhost $ ntpq -c pe
remote refid st t when poll reach delay offset jitter
==============================================================================
cz.pool.ntp.org .POOL. 16 p - 64 0 0.000 0.000 0.002
+mail.nettel.cz 195.113.144.201 3 u 4 64 377 5.215 -0.842 0.332
*fedecks.wuji.cz 195.113.144.238 2 u 61 64 377 2.121 -2.005 0.171
-lx.ujf.cas.cz .GPS. 1 u 62 64 177 2.662 -0.714 0.215
-pyrrha.fi.muni. 195.113.144.238 2 u 63 64 177 7.445 -0.697 0.340
-host-81-200-57- 192.168.3.246 2 u 55 64 177 15.792 0.098 1.160
cz.inthouse.clo 147.231.2.6 2 u 47 64 17 5.338 -0.266 0.461
user@localhost $ ntpq -c rv
associd=0 status=0615 leap_none, sync_ntp, 1 event, clock_sync,
version="ntpd [email protected] Sat Jul 29 07:38:14 UTC 2017 (1)",
processor="ppc", system="Linux", leap=00, stratum=2,
precision=-19, rootdelay=2.652, rootdisp=4.409, refid=147.231.100.5,
reftime=dde6be4a.f90912d6 Fri, Dec 22 2017 0:12:10.972,
clock=dde6be4d.12f27b56 Fri, Dec 22 2017 0:12:13.074, peer=10703, tc=6,
mintc=3, offset=-0.387828, frequency=-254.539, sys_jitter=1.572660,
clk_jitter=0.456, clk_wander=0.098
表示您的 NTP 工作正常。
如果它不同步并且长时间保持这种状态,则可能存在网络或配置问题。查看man 5 ntp.conf
帮助并查看有关配置的 NTP.org 支持页面举些例子。就我而言,无休止的“请求池服务器”垃圾邮件的原因是该nopeer
指令,对于池服务器必须关闭该指令。
答案2
对我来说,NTP 似乎正在完成它的工作:从 NTP 服务器请求时间数据,然后将其发布到系统日志中。完全不用担心。