centos7搭建NTP服务并实现机器间同步

2020-02-18  本文已影响0人  至爱雅鸿_e631

1.前言

当管理集群服务器时,各个主机之间的时间统一是很有必要的,某些中间件也强依赖于系统的时间,因此研究了NTP服务的搭建。

2.安装NTP服务

2.1机器准备
机器名称 机器ip
授时机器 10.0.0.1
客户端1 10.0.0.2
客户端2 10.0.0.3
2.2各个机器安装NTP

一般机器都是未安装NTP的,所以直接用下面的命令安装
如果机器无法联网需要离线配置yum源参见 [https://www.jianshu.com/p/857e5e6b5db9](https://www.jianshu.com/p/857e5e6b5db9)

yum install -y ntp
2.3授时机器配置

编辑文件 /etc/ntp.conf 将下面的内容直接覆盖原内容记得修改为自己的ip段,或者将源文件备份新建文件

driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -4 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1

## 此处为允许10.0.0网段的机器可以访问授时服务
restrict 10.0.0.0 mask 255.255.255.0 nomodify notr

## 由于机器禁止连接互联网因此将外部授时注释掉,直接从本地获取时间
# restrict time1.aliyun.com nomodify notrap noquery
# restrict ntp1.aliyun.com nomodify notrap noquery

## 表示从本机同步时间
server 127.127.1.0
fudge 127.127.1.0 stratum 8
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys

修改后重启ntp服务 systemctl restart ntpd.service

2.4客户端机器配置

直接编辑自动生成的配置文件 vim /ect/ntp.conf,直接将服务端地址更改为授时机器的ip即可

# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server 10.0.0.1 iburst

修改后重启ntp服务 systemctl restart ntpd.service

2.5检查配置是否成功

使用 ntpstat 命令来检查同步是否成功,成功提示如下:

synchronised to NTP server (10.0.0.1) at stratum 10 
   time correct to within 42 ms
   polling server every 1024 s

同步有一定延迟需要等几分钟,我的方法是重启后如果多次检查仍未同步时间,就再次重启ntp客户端,然后执行检查,一般几十秒内就同步成功了

2.6其他配置和指令

server 10.26.12.2 iburst minpoll 4 maxpoll 6
控制ntp的polling时间间隔,minpoll最小值(下限为4),maxpoll最大值(上线为17),两个值表示为2n次方,即最小是为16s,最大值为36小时。
watch ntpq -np 查看ntp的运行状态

image.png

3.参考文章

centos7.6 实现ntp时间同步服务
ntp的基础知识
ntp的中级知识
【NTP】关于ntp配置详解

上一篇下一篇

猜你喜欢

热点阅读