zoukankan      html  css  js  c++  java
  • 利用chrony和ntp搭建时间同步服务器

    利用chrony和ntp搭建时间同步服务器

    环境说明

    系统版本    CentOS 6.9 x86_64

    Network Time Protocol(NTP,网络时间协议)用于同步它所有客户端时钟的服务。NTP服务器将本地系统的时钟与一个公共的NTP服务器同步然后作为时间主机提供服务,使本地网络的所有客户端能同步时钟。

    同步时钟最大的好处就是相关系统上日志文件中的数据,如果网络中使用中央日志主机集中管理日志,得到的日志结果就更能反映真实情况。在同步了时钟的网络中,集中式的性能监控、服务监控系统能实时的反应系统信息,系统管理员可以快速的检测和解决系统错误。

    利用chrony搭建步骤

    1、安装

    1. [root@m01 ~]# yum install chrony –y  

     

    2、配置

    修改默认配置,设置上游时间服务器地址、允许同步时间的客户端ip地址范围

    1. [root@m01 ~]# vim /etc/chrony.conf  
    2. # Use public servers from the pool.ntp.org project.  
    3. # Please consider joining the pool (http://www.pool.ntp.org/join.html).  
    4. server ntp1.aliyun.com iburst       #上游时间服务器的地址  
    5. server ntp2.aliyun.com iburst  
    6. server ntp3.aliyun.com iburst  
    7. server ntp4.aliyun.com iburst  
    8. # Ignore stratum in source selection.  
    9. stratumweight 0  
    10.     
    11. # Record the rate at which the system clock gains/losses time.  
    12. driftfile /var/lib/chrony/drift  
    13.     
    14. # In first three updates step the system clock instead of slew  
    15. # if the adjustment is larger than 10 seconds.  
    16. makestep 10 3  
    17.     
    18. # Enable kernel synchronization of the real-time clock (RTC).  
    19. rtcsync  
    20.     
    21. # Allow NTP client access from local network.  
    22. allow 192.168.1.0/24            #允许同步时间的ip范围  

     

    3、启动

    1. [root@m01 ~]# /etc/init.d/chronyd start  
    2. Starting chronyd:                                          [  OK  ]  
    3. [root@m01 ~]# netstat -lntup|grep 123       #本地会启用123端口  
    4. udp        0      0 0.0.0.0:123                 0.0.0.0:*                               21133/chronyd  

     

    4、测试

    4.1、服务端测试

    修改时间同步服务器的时间,等待片刻再查看时间

    1. [root@m01 ~]# date -s 20170514  
    2. Sun May 14 00:00:00 CST 2017  
    3. [root@m01 ~]# date  
    4. Tue May 15 17:52:39 CST 2018  

    4.2、在其他机器测试

    修改db01的时间,执行命令ntpdate 192.168.1.61(即自己搭建的时间同步服务器的内网ip)同步时间

    1. [root@db01 ~]# date -s 20170501  
    2. Mon May  1 00:00:00 CST 2017  
    3. [root@db01 ~]# ntpdate 192.168.1.61  
    4. 15 May 17:55:18 ntpdate[2414]: step time server 192.168.1.61 offset 32810061.803564 sec  
    5. [root@db01 ~]# date  
    6. Tue May 15 17:55:21 CST 2018  

     

    利用ntp搭建步骤

    1、安装

    1. [root@m01 ~]# yum install ntp ntpdate -y

     

    2、配置

    1. [root@m01 ~]# vim /etc/ntp.conf  
    2. # For more information about this file, see the man pages  
    3. # ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).  
    4.     
    5. driftfile /var/lib/ntp/drift  
    6.     
    7. # Permit time synchronization with our time source, but do not  
    8. # permit the source to query or modify the service on this system.  
    9. restrict default kod nomodify notrap nopeer noquery           
    10. #restrictdefault定义默认访问规则,nomodify禁止远程主机修改本地服务器(默认即可)  
    11. restrict -6 default kod nomodify notrap nopeer noquery  
    12. #配置,notrap拒绝特殊的ntpdq捕获消息,noquery拒绝btodq/ntpdc查询(默认即可)  
    13. # Permit all access over the loopback interface.  This could  
    14. # be tightened as well, but to do so would effect some of  
    15. # the administrative functions.  
    16. restrict 127.0.0.1  
    17. restrict -6 ::1  
    18. restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap  
    19. #指定的192.168.1.0--192.168.1.254的服务器都可以使用ntp服务器来同步时间  
    20. server 192.168.1.61     #指定本机作为局域网中的ntp服务器  
    21. # Hosts on local network are less restricted.  
    22. #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap  
    23.     
    24. # Use public servers from the pool.ntp.org project.  
    25. # Please consider joining the pool (http://www.pool.ntp.org/join.html).  
    26. server ntp1.aliyun.com iburst           #指定上游时间服务器  
    27. server ntp2.aliyun.com iburst  
    28. server ntp3.aliyun.com iburst  
    29. server ntp4.aliyun.com iburst  
    30. 后面内容省略  

     

    3、启动

    1. [root@m01 ~]# /etc/init.d/ntpd start        #启动  
    2. Starting ntpd:                                             [  OK  ]  
    3. [root@m01 ~]# netstat -lntup|grep 123   #检查,默认使用123端口  
    4. udp        0      0 192.168.1.61:123            0.0.0.0:*                               21345/ntpd            
    5. udp        0      0 10.0.0.61:123               0.0.0.0:*                               21345/ntpd            
    6. udp        0      0 127.0.0.1:123               0.0.0.0:*                               21345/ntpd            
    7. udp        0      0 0.0.0.0:123                 0.0.0.0:*                               21345/ntpd            
    8. udp        0      0 fe80::20c:29ff:fe1b:6ae:123 :::*                                    21345/ntpd            
    9. udp        0      0 fe80::20c:29ff:fe1b:6b8:123 :::*                                    21345/ntpd            
    10. udp        0      0 ::1:123                     :::*                                    21345/ntpd            
    11. udp        0      0 :::123                      :::*                                    21345/ntpd    

     

    4、测试

    4.1、服务端执行ntpq -p检查

    1. [root@m01 ~]# ntpq -p  
    2.      remote           refid      st t when poll reach   delay   offset  jitter  
    3. ==============================================================================  
    4.  192.168.1.61    .INIT.          16 u    -   64    0    0.000    0.000   0.000  
    5. *time5.aliyun.co 10.137.38.86     2 u   59   64    3   23.174   15.665   9.655  
    6. +120.25.115.19   10.137.53.7      2 u   58   64    3   52.023   14.674   9.927  
    7. +203.107.6.88    10.137.55.181    2 u   57   64    3   39.007    4.241   0.497  

    当所有远程服务器(不是本地服务器)的jitter值都为4000,并且reach和dalay的值是0时,就表示时间同步有问题。可能原因有2个:

      1)服务器端的防火墙设置,阻断了123端口(可以用 iptables -t filter -A INPUT -p udp --destination-port 123 -j ACCEPT 解决)

    2)每次重启ntp服务器之后,大约3-5分钟客户端才能与服务端建立连接,建立连接之后才能进行时间同步,否则客户端同步时间时会显示

    若遇到no server suitable for synchronization found的报错信息,稍等片刻再测试即可

    4.2、在其他机器测试

    修改db01的时间,执行命令ntpdate 192.168.1.61(即自己搭建的时间同步服务器的内网ip)同步时间

    1. [root@db01 ~]# date -s 20170501  
    2. Mon May  1 00:00:00 CST 2017  
    3. [root@db01 ~]# ntpdate 192.168.1.61  
    4. 15 May 17:55:18 ntpdate[2414]: step time server 192.168.1.61 offset 32810061.803564 sec  
    5. [root@db01 ~]# date  
    6. Tue May 15 17:55:21 CST 2018  

     

     

    博主原创文章,转载请务必注明出处

  • 相关阅读:
    [转] word2vec
    跨平台踩的一个大坑!
    在C 与 C++混编中, 出现error LNK2019: 无法解析的外部符号 "int __cdecl main_(int,char * *)" (?main_@@YAHHPEAPEAD@Z),该符号在函数 main 中被引用
    opencv2corecuda.hpp(106): error C2059: 语法错误:“常量”
    opencv2flannmatrix.h(69): error C2059: 语法错误:“,”
    C调用C++, C++调用C方法
    python与C,在写程序时踩过的坑!
    VS2015 + OPENCV + CUDA 安装流程
    CC++学习笔记 3
    CC++学习笔记 2
  • 原文地址:https://www.cnblogs.com/ssgeek/p/9223403.html
Copyright © 2011-2022 走看看