NTPD没有更新CENTOS的时间日期


0

我在CENTOS上设置了ntpd,我试图让它从Windows域控制器中抽出时间

如果我运行命令:

ntpdate dc3.mydomaain.local 

这工作正常,并使用正确的时间更新主机

但是在/etc/ntp.conf中我设置了:

server dc3.mydomain.local 

但是时间永远不会更新,它总是保持在不正确的时间(似乎是在重新启动时从ESXi主机上拉动时间,除非我用ntpdate设置它)我已经取消选中该框来从主机获取时间。

NTPD正在运行

-bash-3.2# service ntpd status
 ntpd (pid  4182) is running...

任何方式我可以检查为什么ntpd不拉动时间,当ntpdate工作正常?

关于如何让我的中央盒子从我的DC拉出时间的任何其他提示?

更新: 这是输出:

ntpq -pcrv

请注意,ip地址show是DC1的ip,但DC3是ntp.conf中列出的唯一ntp服务器

ntpq -pcrv


-bash-3.2# ntpq -pcrv
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 dc3.domai 10.1.1.2        2 u   29   64  377    0.567  -4263.4  10.392
assID=0 status=c011 sync_alarm, sync_unspec, 1 event, event_restart,
version="ntpd 4.2.2p1@1.1570-o Mon Dec  9 14:38:21 UTC 2013 (1)",
processor="i686", system="Linux/3.10.23-xxxx-std-ipv6-32", leap=11,
stratum=16, precision=-20, rootdelay=0.000, rootdispersion=2356.905,
peer=0, refid=INIT,
reftime=00000000.00000000  Thu, Feb  7 2036 17:28:16.000, poll=6,
clock=d81ce655.d5ce975b  Mon, Nov 24 2014 10:03:49.835, state=1,
offset=0.000, frequency=-0.140, jitter=0.001, noise=0.001,
stability=0.000, tai=0

-bash-3。3#date


您可以使用 ntpqntpstat 检查状态 ntpd
pabouk

发布输出 ntpq -pcrv 当框已启动并且ntpd正在运行且无法正常工作时。
dfc

Answers:


1

你能发布你的ntp.conf文件吗?

您提供的信息已经脱颖而出......

DC3将显示ip 10.1.1.2 就像DC3配置(或获取)时间一样。

抵消太大了 - -4263.4,你也表明 sync_alarm 和一个巨大的 rootdispersion=2356.905refid=INIT

在你的时间设置中看起来有些东西被打破了。我会检查其他2个盒子DC1& 3,以确保他们得到正确的时间。我还会在配置文件中添加至少3个ntp服务器,以确保稳定性和可靠性。 NTP需要多台服务器进行比较,投票并选择“最佳”时间源。如果这是一个虚拟服务器,那么还需要做其他事情来保持对Linux的ntp检查。

这里的例子是我的输出 ntpq -pcrv (服务器数据匿名)

 remote           refid          st t when poll reach   delay   offset  jitter
==============================================================================
 PRIVATE         .STEP.          16 u    - 1024    0    0.000    0.000   0.000
-PRIVATE1        .GPS.            1 u   55   64  377   29.585    0.071   0.312
-PRIVATE2        .GPS.            1 u   40   64  377    9.468    0.209   0.129
-PRIVATE3        1.1.1.1          2 u   12   64  377    6.943   -0.270   0.142
-PRIVATE5        .PPS.            1 u   20   64  377   16.383   -0.531   0.197
+PRIVATE6        .DCFa.           1 u   22   64  377    8.661   -0.036   0.126
-ISP1            2.2.2.2          2 u   36   64  377   11.720   -0.027   0.280
#PRIVATE7        .GPS.            1 u   47   64  377   24.781   -1.405   1.118
+ISP2            .PPS.            1 u    4   64  377    6.012    0.062   0.154
-ISP3            .PPS.            1 u   14   64  377   13.993   -0.463   0.206
-ISP4            .CDMA.           1 u   57   64  377   71.712   -0.109   0.249
 ntp.mcast.net   .MCST.          16 u    -   64    0    0.000    0.000   0.002
 LOCAL(0)        .LOCL.          10 l  69d   64    0    0.000    0.000   0.000
xSHM(0)          .GPS.            0 l    9   16  377    0.000  -25.278   7.907
*SHM(1)          .PPS.            0 l   11   16  377    0.000   -0.030   0.060
associd=0 status=0488 leap_none, sync_uhf_radio, 8 events, no_sys_peer,
version="ntpd 4.2.6p5@1.2349-o Sat Nov 23 18:21:48 UTC 2013 (1)",
processor="x86_64", system="Linux/3.13.3-1.el6.elrepo.x86_64", leap=00,
stratum=1, precision=-19, rootdelay=0.000, rootdisp=0.435, refid=PPS,
reftime=d81f71b3.9b5a018c  Tue, Nov 25 2014 21:22:59.606,
clock=d81f71be.1f3892d4  Tue, Nov 25 2014 21:23:10.121, peer=28309, tc=4,
mintc=3, offset=-0.021, frequency=-69.212, sys_jitter=0.031,
clk_jitter=0.145, clk_wander=0.031

看一下关于的文档 ntp网页

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.