linux设置ntp时间同步

Posted 麦皮虫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux设置ntp时间同步相关的知识,希望对你有一定的参考价值。

NTP时钟同步方式说明
NTP在linux下有两种时钟同步方式,分别为直接同步和平滑同步:
直接同步
使用ntpdate命令进行同步,直接进行时间变更。如果服务器上存在一个12点运行的任务,当前服务器时间是13点,但标准时间时11点,使用此命令可能会造成任务重复执行。因此使用ntpdate同步可能会引发风险,因此该命令也多用于配置时钟同步服务时第一次同步时间时使用。
平滑同步
使用ntpd进行时钟同步,可以保证一个时间不经历两次,它每次同步时间的偏移量不会太陡,是慢慢来的,这正因为这样,ntpd平滑同步可能耗费的时间比较长。

1、安装

ntpyum install ntp

2、设置ntp服务开机启动

systemctl restart ntp.service

3、设置服务器

vi /etc/ntp.conf,内容如下:

driftfile /var/lib/ntp/ntp.drift #草稿文


# 允许内网其他机器同步时间

restrict 192.168.137.0(替换成自己的ip) mask 255.255.255.0 nomodify notrap

# Use public servers from the pool.ntp.org project.


# 中国这边最活跃的时间服务器 :

server 210.72.145.44 perfer   # 中国国家受时中心

server 202.112.10.36             # 1.cn.pool.ntp.org

server 59.124.196.83             # 0.asia.pool.ntp.org  

# allow update time by the upper server


# 允许上层时间服务器主动修改本机时间

restrict 210.72.145.44 nomodify notrap noquery

restrict 202.112.10.36 nomodify notrap noquery

restrict 59.124.196.83 nomodify notrap noquery  


# 外部时间服务器不可用时,以本地时间作为时间服务

server  127.127.1.0     # local clock

fudge   127.127.1.0 stratum 10

以上是关于linux设置ntp时间同步的主要内容,如果未能解决你的问题,请参考以下文章

linux时间不同步会影响挂载吗?

linux系统如何设置时间同步?

使用NTP进行CentOS7时间同步

CentOS7-ntp时间同步服务器

CentOS 7 中使用NTP进行时间同步

搭建的linux ntp服务器设置210.72.245.44为时钟源,服务器同步后开始正常,一段时间后就会有几分钟差距