64s。你可用ntpq -p来看。
[root@rac2 ~]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
*clock.fmt.he.ne .CDMA. 1 u 33 64 77 206.257 144.250 7.449
[root@rac2 ~]#
但是,ntpd不粗暴地调整本地时间。要做到立即调整,需要停止ntpd服务,并使用ntpdate来同步。然后再启动ntpd服务:
[root@hchendb log]# service ntpd stop
Shutting down ntpd: [ OK ]
[root@hchendb log]# ntpdate clock.fmt.he.net
27 Apr 05:46:58 ntpdate[9013]: adjust time server 66.220.9.122 offset -0.008354 sec
[root@hchendb log]# date
Sat Apr 27 05:47:02 GMT 2013
[root@hchendb log]# service ntpd start
Starting ntpd: [ OK ]
[root@hchendb log]# date
Sat Apr 27 05:53:00 GMT 2013
[
30分钟