2019独角兽企业重金招聘Python工程师标准>>>

1. NTP时钟同步方式说明

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

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

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. 检查服务是否安装

  • 使用rpm检查ntp包是否安装
[root@localhost kevin]# rpm -q ntp
ntp-4.2.6p5-19.el7.centos.3.x86_64
  • 如果已经安装则略过此步,否则使用yum进行安装,并设置系统开机自动启动并启动服务
[root@localhost kevin]# yum -y install ntp
[root@localhost kevin]# systemctl enable ntpd
[root@localhost kevin]# systemctl start ntpd

4. 设置ntp服务器: 192.168.11.212

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

  • 修改/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  # 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.0.0.1 # local clock fudge 127.0.0.1 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服务器,同时显示客户端和每个服务器的关系


使用ntpstat 命令查看时间同步状态,这个一般需要5-10分钟后才能成功连接和同步。所以,服务器启动后需要稍等下: 
刚启动的时候,一般是:

# ntpstat
unsynchronisedtime server re-startingpolling server every 64 s

连接并同步后:

# ntpstat
synchronised to NTP server (202.112.10.36) at stratum 3time correct to within 275 mspolling server every 256 s
  • 1
  • 2
  • 3
  • 4

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.0.0.1 fudge 127.0.0.1 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很快就可以同步上。

如果 systemctl restart ntpd  命令没有用,使用service ntpd start

转载于:https://my.oschina.net/sniperLi/blog/683402

CentOS7使用NTP进行时间同步相关推荐

  1. 配置NTP服务时间同步(suse)

    为了确保集群内时间一致,需要配置NTP 时间同步服务器,本文使用中国国家授时中心的时钟同步服务器,p地址210.72.145.44.因此集群中每台机器和210.72.145.44时钟服务器进行同步即可 ...

  2. 配置NTP服务器时间同步

    配置NTP服务器时间同步 ntp服务端:192.168.200.175 [root@es-0003 user1]# yum install -y ntp #安装ntp #修改/etc/ntp.conf ...

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

    2019独角兽企业重金招聘Python工程师标准>>> CentOS 7 中使用NTP进行时间同步 [日期:2015-11-07] 来源:Linux社区  作者:scorpio3k ...

  4. 西门子PLC如何设NTP网络时间同步(全解)

    西门子PLC如何设NTP网络时间同步(全解) 西门子PLC如何设NTP网络时间同步(全解) 1.支持NTP的产品 网络时间协议(NTP,network time protocol)是通过基于数据包的通 ...

  5. 《常见NTP客户端时间同步配置》

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 常见NTP客户端时间同步说明 前言 一.AIX系统时间配置 二. Linux系统时间同步配置 三. Windows 2003系统时间同 ...

  6. centos7 ntp设置 时间同步

    一 应用场景 公司分配给你两台服务器,要求你使他们时间同步,有人问为什么要时间同步?如果一个集群中,时间相差很大,那么会出现很多诡异的问题,你也不想在一个无法解决的问题上浪费几天时间吧!总之,设置服务 ...

  7. CentOS7 中使用NTP进行时间同步

    1. NTP时钟同步方式说明 NTP在linux下有两种时钟同步方式,分别为直接同步和平滑同步: 直接同步 使用ntpdate命令进行同步,直接进行时间变更.如果服务器上存在一个12点运行的任务,当前 ...

  8. Linux时间同步(Centos7、NTP)

    目录 前言 一.NTP是什么? 二.服务端使用步骤 1.服务端安装 2.服务端配置 三.客户端使用步骤 1.方法一:ntpdate+crontab 2.方法二:配置成NTP服务器的下一层NTP服务器 ...

  9. Centos7部署ntp服务器同步时间以及直接将本地时间同步为北京时间

    一.查看配置 查看时区列表: timedatectl list-timezones|grep Asia 查看当前时间: date 查看当前设置: [root@localhost ~]# timedat ...

最新文章

  1. 为什么爬虫用python不用java_为什么常用Python,Java做爬虫,而不是C#C++等
  2. SAP ByD 期末结账步骤简化(不完整)方法
  3. [SourceInsight].SI自动添加函数注释
  4. ubuntu上Nginx的配置
  5. 华为服务器停止响应,windows服务器停止工作
  6. java 控制jsp_JSP学习之Java Web中的安全控制实例详解
  7. Qt之QProcess(一)运行cmd命令
  8. SpringBoot集成Editor.md 流程详细
  9. UC浏览器电脑版怎么开启免费WiFi
  10. 开源SPL,ORM的终结者?
  11. 移动硬盘无法休眠了?
  12. linux关闭的时候出现异常: java.net.ConnectException: 拒绝连接 (Connection refused)
  13. RouterOS安装以及搭建DHCP PPPoE PPTP L2TP服务
  14. java定时器quartz
  15. matlab FCM算法实现
  16. 输入一个大写或者小写,输出其相反的大小写。(c语言)
  17. CENTOS上的时间/时区设定
  18. Office 365禁用所有宏,且不通知
  19. nvme固态硬盘安装win10填坑记
  20. 2016年8月30日 星期二 --出埃及记 Exodus 16:31

热门文章

  1. 安卓 加载网络图片并下载本地
  2. oracle dcd设置,oracle DCD
  3. appearance: none;的使用
  4. 单例模式懒汉式和饿汉式入门详解
  5. PHP爬虫音乐缓存,爬取网易云音乐热评[附上音乐下载]
  6. 简简单单使用Unity打包项目到安卓平台(一)
  7. 【阿里天池算法学习赛】测测你的一见钟情指数/机器学习/深度学习/数据处理/Python基础
  8. qemu-kvm savevm/loadvm 流程
  9. 虚拟机Ubuntu与开发板的局域网设置
  10. CS-Script简介