Centos 7配置ntp时间同步

摘要:
2) 平滑同步使用ntpd进行时钟同步,这可以确保一个时间不会经过两次,并且每个同步时间的偏移不会太陡,这很慢。因此,ntpd平滑同步可能需要很长时间。因此,服务器启动后,需要等待片刻:刚启动时,一般为:连接并同步后:5。设置ntp客户端:172.16.248.129|130|131

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

标准时钟同步服务
http://www.pool.ntp.org/zone/cn网站包含全球的标准时间同步服务,也包括对中国时间的同步,对应的URL为cn.pool.ntp.org,在其中也描述了ntp配置文件中的建议写法:

Centos 7配置ntp时间同步第1张

 

2. 环境情况
准备四台电脑,分别为:

 

IP

 

用途

 

192.168.11.212

ntpd服务器,用于与外部公共ntpd同步标准时间

172.16.248.129

ntpd客户端,用于与ntpd同步时间

172.16.248.130

ntpd客户端,用于与ntpd同步时间

172.16.248.131

ntpd客户端,用于与ntpd同步时间

3. 检查服务是否安装

1)使用rpm检查ntp包是否安装

Centos 7配置ntp时间同步第2张

2)如果已经安装则略过此步,否则使用yum进行安装,并设置系统开机自动启动并启动服务(每个节点都要安装)

[root@hadoop1 ~]# yum -y install ntp

[root@ hadoop1 ~]# systemctl enable ntpd(设置开机自启动)

[root@ hadoop1 ~]# systemctl start ntpd(启动ntp服务)

3)查看是否设置为开机自启动

 Centos 7配置ntp时间同步第3张

4. 设置ntp服务器: 192.168.11.212

配置前先使用命令:ntpdate -u 0.asia.pool.ntp.org,同步服务器

1)修改/etc/ntp.conf文件

# For more information about this file, see the man pages

# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

driftfile /var/lib/ntp/drift

# Permit time synchronization with our time source, but do not

# permit the source to query or modify the service on this system.

restrict default nomodify notrap nopeer noquery

# Permit all access over the loopback interface.  This could

# be tightened as well, but to do so would effect some of

# the administrative functions.

restrict 127.0.0.1

restrict ::1

# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

restrict 172.16.248.0 mask 255.255.255.0 nomodify notrap

只允许192.168.2.0网段的客户机进行时间同步

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

# Please consider joining the pool (http://www.pool.ntp.org/join.html).

#server 0.centos.pool.ntp.org iburst

server 2.cn.pool.ntp.org

server 1.asia.pool.ntp.org

server 2.asia.pool.ntp.org

#broadcast 192.168.1.255 autokey        # broadcast server

#broadcastclient                        # broadcast client

#broadcast 224.0.1.1 autokey            # multicast server

#multicastclient 224.0.1.1              # multicast client

#manycastserver 239.255.254.254         # manycast server

#manycastclient 239.255.254.254 autokey # manycast client

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

restrict 2.cn.pool.ntp.org nomodify notrap noquery

restrict 1.asia.pool.ntp.org nomodify notrap noquery

restrict 2.asia.pool.ntp.org nomodify notrap noquery

server    127.127.1.0     # local clock

fudge     127.127.1.0 stratum 10

# Enable public key cryptography.

#crypto

includefile /etc/ntp/crypto/pw

# Key file containing the keys and key identifiers used when operating

# with symmetric key cryptography.

keys /etc/ntp/keys

# Specify the key identifiers which are trusted.

#trustedkey 4 8 42

# Specify the key identifier to use with the ntpdc utility.

#requestkey 8

# Specify the key identifier to use with the ntpq utility.

#controlkey 8

# Enable writing of statistics records.

#statistics clockstats cryptostats loopstats peerstats

# Disable the monitoring facility to prevent amplification attacks using ntpdc

# monlist command when default restrict does not include the noquery flag. See

# CVE-2013-5211 for more details.

# Note: Monitoring will not be disabled with the limited restriction flag.

disable monitor
修改完成后重启ntpd服务systemctl restart ntpd

使用ntpq -p 查看网络中的NTP服务器,同时显示客户端和每个服务器的关系
Centos 7配置ntp时间同步第4张 使用ntpstat 命令查看时间同步状态,这个一般需要5-10分钟后才能成功连接 和同步。所以,服务器启动后需要稍等下: 刚启动的时候,一般是: Centos 7配置ntp时间同步第5张 连接并同步后: Centos 7配置ntp时间同步第6张5. 设置ntp客户端: 172.16.248.129|130|131 安装ntp服务并设置为自动启动,和前面的设置方式相同。然后编辑/etc/ntp.conf文件。
# For more information about this file, see the man pages

# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

driftfile /var/lib/ntp/drift

# Permit time synchronization with our time source, but do not

# permit the source to query or modify the service on this system.

restrict default nomodify notrap nopeer noquery

# Permit all access over the loopback interface.  This could

# be tightened as well, but to do so would effect some of

# the administrative functions.

restrict 127.0.0.1

restrict ::1

# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

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

# Please consider joining the pool (http://www.pool.ntp.org/join.html).

#server 0.centos.pool.ntp.org iburst

server 172.16.248.1

restrict 172.16.248.1 nomodify notrap noquery

server    127.127.1.0     # local clock

fudge     127.127.1.0 stratum 10

#broadcast 192.168.1.255 autokey        # broadcast server

#broadcastclient                        # broadcast client

#broadcast 224.0.1.1 autokey            # multicast server

#multicastclient 224.0.1.1              # multicast client

#manycastserver 239.255.254.254         # manycast server

#manycastclient 239.255.254.254 autokey # manycast client

# Enable public key cryptography.

#crypto

includefile /etc/ntp/crypto/pw 

# Key file containing the keys and key identifiers used when operating

# with symmetric key cryptography.

keys /etc/ntp/keys  

# Specify the key identifiers which are trusted.

#trustedkey 4 8 42

# Specify the key identifier to use with the ntpdc utility.

#requestkey 8

# Specify the key identifier to use with the ntpq utility.

#controlkey 8

# Enable writing of statistics records.

#statistics clockstats cryptostats loopstats peerstats

# Disable the monitoring facility to prevent amplification attacks using ntpdc

# monlist command when default restrict does not include the noquery flag. See

# CVE-2013-5211 for more details.

# Note: Monitoring will not be disabled with the limited restriction flag.

disable monitor
重启ntpd服务

#systemctl restart ntpd

启动后,查看同步情况

# ntpq -p

# ntpstat

因为是内网,一般ntpstat很快就可以同步上。

免责声明:文章转载自《Centos 7配置ntp时间同步》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇(四)Maven中的仓库ArcGIS矢量数据批量合并工具下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

Ntp服务器的搭建

在搭建Ntp服务器的过程中,试过两种方案,具体如下: 方案一: 到ntp官网获取源码编译,失败   下载源码ntp-4.2.8 -> ./configure -> make 无法通过;  ps,在ubuntu12.02上源码无法编译通过。不过在Fedora上这种方案是可行的。所以,不同系统结果是不一样的。     方案二:成功   在线安装,s...

linux同步windows的时间

找了很多的资料,都没有windows做时间服务,linux同步windows的时间的,最后自己找了一些软件,终于搞定了,写出来给大家共享,以免大家多走弯路   首先在http://www.meinberg.de/english/sw/index.htm   下载了一个windows的NTP服务程序:ntp4171.zip   windows 192.168...

通过NTP协议进行时间同步

最近发现手机的时间不是很准了,便到网上下了一个同步时间的小程序,简单了看了一下它的原理,是通过NTP协议来实现校时的,就顺便学习了一下NTP协议,用C#写了个简单的实现。 NTP(Network Time Protocol,网络时间协议)是由RFC 1305定义的时间同步协议,用来在分布式时间服务器和客户端之间进行时间同步。 NTP工作原理 NTP的基本工...

linux虚拟机时间同步

在搭建集群环境时,需要各个节点的主机时间是一致的,否则会出现问题,连接时间相应不对。要进行是时间同步。 使用yum 云进行下载时间同步服务。 下载之后如何验证: 如何进行具体的操作: 第一种:a、cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime  b、ntpdate pool.ntp.org  如上...

ntp配置中的tinker参数

今天就ntp的tinker来做专项学习。此处的tinker指的是ntp.conf配置文件中的一个配置指令名。它还有相关的配置选项 经过查看官方文档其中对ntp.conf中的tinker是如下描述的: 官方文档:http://doc.ntp.org/4.2.6/miscopt.html 意思是这个tinker指令是改变由时钟纪律算法使用的某些系统变量,这些...

阿里云内网和公网NTP服务器和其他互联网基础服务时间同步服务器

阿里云为云服务器ECS提供了内网NTP服务器,对于阿里云以外的设备,阿里云同时提供了 公网NTP服务器,供互联网上的设备使用。 内网和公网NTP服务器 以下为阿里云提供的内网和公网NTP服务器列表。 经典网络 VPC网络 公网 ntp1.cloud.aliyuncs.com ntp7.cloud.aliyuncs.com ntp1.aliyun...