ntp时间服务器搭建

linux时间服务器的搭建

我在学习过程中经常遇到服务器时间不一致导致很多故障,经过了很多次麻烦的经历之后决定写出来,以便于自己以后需要再来拿出来用,也希望可以帮到需要的人

搭建过程

yum install -y ntp ntpdate

备份配置文件

cp /etc/ntp.conf /etc/ntp.conf.bak

将注释掉的去掉,新建配置文章

egrep -v "^$|#" /etc/ntp.conf.bak >/etc/ntp.conf

编辑配置文件

ftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
#允许内网其他机器同步时间
restrict 172.16.1.0 mask 255.255.255.0 nomodify notr
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
#定义使用的上游 ntp服务器,将原来的注释
server ntp1.aliyun.com
server time1.aliyun.com
#允许上层时间服务器主动修改本机时间
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 10
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys

启动时间服务器并测试

systemctl start ntpd
ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 120.25.115.20   10.137.53.7      2 u    8   64    1   32.515    2.672   0.000
 203.107.6.88    10.137.38.86     2 u    7   64    1   24.061    4.179   0.000
*LOCAL(0)        .LOCL.          10 l    6   64    1    0.000    0.000   0.000

最后进行客户端测试

[root@web01 ~]#  date -s 20190825    #更改时间
Sun Aug 25 00:00:00 CST 2019
[root@web01 ~]# ntpdate 172.16.1.61   #同步测试
2 Oct 09:22:40 ntpdate[1606]: adjust time server 172.16.1.61 offset 0.001950 sec

你可能感兴趣的:(时间优化)