linux 6 NTP 微调模式配置

1、编辑两节点的时钟服务器

vi /etc/ntp.conf  
server  11.111.111.111 prefer  # 添加首选的时钟服务器  

2、编辑两节点的ntpd参数

 [root@node1 ~]# vi /etc/sysconfig/ntpd  
SYNC_HWCLOCK=yes      #此选项用于自动校准系统时钟与硬件时钟  
OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"   #其中 -x表示为微调模式

3、配置ntp自启动服务

[root@node1 ~]# chkconfig ntpd on  
service ntpd restart  

4、查看ntp状态

[root@whchip1 ~]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*10.xxx.xxx.xxx   xx.xxx.0.xx      2 u   50   64  377   37.948  -76946.  78.985

Related Posts