ntp时间同步

若ntp客户端在同步服务端出现:
ntpdate[4686]: no server suitable for synchronization found
在ntp客户端用ntpdate -d serverIP查看,如果有Server dropped: strata too high和stratum 16,
这是因为ntp服务端自身时间没有同步。因为stratum的值的正常范围是0-15,所以要在ntp服务端做如
下修改:
vim /etc/ntp.conf
server 127.127.1.0
fudge 127.127.1.0 stratum 8

重启ntp服务,ntp服务端修改后重启,自身时间同步需要一定的时间,大概5分钟。

在ntp服务端下查看ntp的情况:
会先出现:
localhost.localdomain: timed out, nothing received
                                                  ***Request timed out
然后出现:
Every 2.0s: ntpq -p                              
     remote           refid  st t when poll reach   delay   offset  jitter
==============================================================================
*LOCAL(0)        .LOCL.           8 l   48   64  377    0.000    0.000   0.001

这个时候说明ntp服务端自身时间已经同步。

客服端需要关闭ntp服务,同步时间:ntpdate serverIP。


你可能感兴趣的:(server,for,synchronization,found,No,suitable)