RHEL7 -- 使用Chrony设置时间与时钟服务器同步

Posted

tags:

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

chrony是两个用来维持计算机系统时钟准确性的程序,这两个程序命名为chronydchronycchronyd是一个在系统后台运行的守护进程。他根据网络上其他时间服务器时间来测量本机时间的偏移量从而调整系统时钟。对于孤立系统,用户可以手动周期性的输入正确时间(通过chronyc)。在这两种情况下,chronyd决定计算机快慢的比例,并加以纠正。chronyd实现了NTP协议并且可以作为服务器或客户端。chronyc是用来监控chronyd性能和配置其参数的用户界面。他可以控制本机及其他计算机上运行的chronyd进程。

>>Chrony 的优势包括:

  • 更快的同步只需要数分钟而非数小时时间,从而最大程度减少了时间和频率误差,这对于并非全天 24 小时运行的台式计算机或系统而言非常有用。

  • 能够更好地响应时钟频率的快速变化,这对于具备不稳定时钟的虚拟机或导致时钟频率发生变化的节能技术而言非常有用。

  • 在初始同步后,它不会停止时钟,以防对需要系统时间保持单调的应用程序造成影响。

  • 在应对临时非对称延迟时(例如,在大规模下载造成链接饱和时)提供了更好的稳定性。

  • 无需对服务器进行定期轮询,因此具备间歇性网络连接的系统仍然可以快速同步时钟。

>>使用chronyc

               accheck - 检查NTP访问是否对特定主机可用

               activity - 该命令会显示有多少NTP源在线/离线

              add server - 手动添加一台新的NTP服务器。

               clients - 在客户端报告已访问到服务器

               delete - 手动移除NTP服务器或对等服务器

               settime - 手动设置守护进程时间

               tracking - 显示系统时间信息

       输入help命令可以查看更多chronyc的交互命令。


[[email protected] ~]# chronyc sources -v             //查看时间同步源

210 Number of sources = 1


  .-- Source mode  ‘^‘ = server, ‘=‘ = peer, ‘#‘ = local clock.

 / .- Source state ‘*‘ = current synced, ‘+‘ = combined , ‘-‘ = not combined,

| /   ‘?‘ = unreachable, ‘x‘ = time may be in error, ‘~‘ = time too variable.

||                                                 .- xxxx [ yyyy ] +/- zzzz

||                                                /   xxxx = adjusted offset,

||         Log2(Polling interval) -.             |    yyyy = measured offset,

||                                  \            |    zzzz = estimated error.

||                                   |           |                         

MS Name/IP address         Stratum Poll Reach LastRx Last sample

===============================================================================

^* dns.sjtu.edu.cn               3   6    37    31     +0ns[-44183h] +/-  450ms


[[email protected] ~]# chronyc sourcestats -v            //查看时间同步源状态

210 Number of sources = 1

                             .- Number of sample points in measurement set.

                            /    .- Number of residual runs with same sign.

                           |    /    .- Length of measurement set (time).

                           |   |    /      .- Est. clock freq error (ppm).

                           |   |   |      /           .- Est. error in freq.

                           |   |   |     |           /         .- Est. offset.

                           |   |   |     |          |          |   On the -.

                           |   |   |     |          |          |   samples. \

                           |   |   |     |          |          |             |

Name/IP Address            NP  NR  Span  Frequency  Freq Skew  Offset  Std Dev

==============================================================================

dns.sjtu.edu.cn             5   3   257   -503.214  43434.559    -25ms    12ms


>>配置Chrony
当Chrony启动时,它会读取/etc/chrony.conf配置文件中的设置

# cat /etc/chrony.conf 

# 该参数可以多次用于添加时钟服务器,必须以"server "格式使用。一般而言,你想添加多少服务器,就可以添加多少服务器。

server 0.rhel.pool.ntp.org iburst

server 1.rhel.pool.ntp.org iburst

server 2.rhel.pool.ntp.org iburst

server 3.rhel.pool.ntp.org iburst


# Ignore stratum in source selection.

# stratumweight指令设置当chronyd从可用源中选择同步源时,每个层应该添加多少距离到同步距离。默认情况下,设置为0,让chronyd在选择源时忽略源的层级。

stratumweight 0


# Record the rate at which the system clock gains/losses time.

# chronyd程序的主要行为之一,就是根据实际时间计算出计算机增减时间的比率,将它记录到一个文件中是最合理的,它会在重启后为系统时钟作出补偿,甚至可能的话,会从时钟服务器获得较好的估值。

driftfile /var/lib/chrony/drift


# Enable kernel RTC synchronization.

# rtcsync指令将启用一个内核模式,在该模式中,系统时间每11分钟会拷贝到实时时钟(RTC)。

rtcsync


# In first three updates step the system clock instead of slew

# if the adjustment is larger than 10 seconds.

通常,chronyd将根据需求通过减慢或加速时钟,使得系统逐步纠正所有时间偏差。在某些特定情况下,系统时钟可能会漂移过快,导致该调整过程消耗很长的时间来纠正系统时钟。该指令强制chronyd在调整期大于某个阀值时步进调整系统时钟,但只有在因为chronyd启动时间超过指定限制(可使用负值来禁用限制),没有更多时钟更新时才生效。

makestep 10 3


# Allow NTP client access from local network.

# 这里你可以指定一台主机、子网,或者网络以允许或拒绝NTP连接到扮演时钟服务器的机器。

#allow 192.168.56.6

#deny 192.168/16


# Listen for commands only on localhost.

# 该指令允许你限制chronyd监听哪个网络接口的命令包(由chronyc执行)。该指令通过cmddeny机制提供了一个除上述限制以外可用的额外的访问控制等级。

bindcmdaddress 127.0.0.1

bindcmdaddress ::1


# Serve time even if not synchronized to any NTP server.

#local stratum 10


keyfile /etc/chrony.keys


# Specify the key used as password for chronyc.

commandkey 1


# Generate command key if missing.

generatecommandkey


# Disable logging of client accesses.

noclientlog


# Send a message to syslog if a clock adjustment is larger than 0.5 seconds.

logchange 0.5


logdir /var/log/chrony

#log measurements statistics tracking


>>Command Keys

在/etc/chrony.conf配置文件中,参数generatecommandkey指定了产生一个SHA1或MD5加密的密码,存放在/etc/chrony.keys中:

# cat /etc/chrony.keys1 MD5 HEX:BD359B2633CD6105AB8820E47A8D8EAB

密码是"HEX:BD359B2633CD6105AB8820E47A8D8EAB",包含了前缀"HEX:"

可以自己指定密码,比如:

# cat/etc/chrony.keys
1   xyzzy

在/etc/chrony.conf配置文件中,参数commandkey指定了密码文件中那一条被使用。默认是1

>>在客户端配置时间同步服务器
1.使用命令行工具:chronyc
2.图形界面工具:system_config_date


以上是关于RHEL7 -- 使用Chrony设置时间与时钟服务器同步的主要内容,如果未能解决你的问题,请参考以下文章

详解:Linux Chrony 设置服务器集群同步时间

【chrony】CentOS7.2 上chrony的安装与配置

CentOS 7.6安装配置Chrony同步系统时钟

chrony软件

chrony时钟同步

chrony概念详解