1、环境准备
1.1、演示的主机
Chrony-server 192.168.10.24 Chrony-client 192.168.10.25
2、Chrony安装
2.1、配置文件与命令名字介绍
主配置文件:/etc/chrony.conf 客户端程序:/usr/bin/chronyc 服务端程序:/usr/sbin/chronyd
2.2、服务端
2.2.1、安装
yum install chrony -y
2.2.2、配置文件介绍
[root@server ~]# cat /etc/chrony.conf # 使用同步的远程时钟源,理论上可以同步无限个 server 0.centos.pool.ntp.org iburst server 1.centos.pool.ntp.org iburst server 2.centos.pool.ntp.org iburst server 3.centos.pool.ntp.org iburst # 根据实际时间计算出服务器增减时间的比率,然后记录到一个文件中,在系统重启后为系统做出最佳时间补偿调整 driftfile /var/lib/chrony/drift # 如果系统时钟的偏移量大于1秒,则允许系统时钟在前三次更新中步进 makestep 1.0 3 # 启用实时时钟(RTC)的内核同步 rtcsync # 通过使用hwtimestamp 指令启用硬件时间戳 #hwtimestamp * #增加调整所需的可选择源的最小数量 #minsources 2 # Allow NTP client access from local network. allow 192.168.10.0/24 #默认情况下本地服务器无法同步互联网时间时,可能会出现不精确,所以会拒绝提供授时服务;#开启此选项,则表示允许接受不精确时间,继续为客户端提供授时服务; #local stratum 10 #指定包含NTP身份验证密钥的文件 #keyfile /etc/chrony.keys # 日志文件 logdir /var/log/chrony # 选择日志文件要记录的信息 #log measurements statistics tracking
2.2.3、服务端的配置
[root@server ~]# vi /etc/chrony.conf # 设定外部时间服务器 server ntp.aliyun.com iburst # 允许内网同步此服务端 allow 192.168.10.0/24 # 设置断网继续同步 local stratum 10
2.3、启动服务
systemctl restart chronyd systemctl enable chronyd
3、客户端
3.1、安装
yum install ntpdate chrony -y
3.2、配置文件
3.2.1、修改
[root@client ~]# vi /etc/chrony.conf server 192.168.10.24 iburst
3.2.2、启动服务
systemctl restart chronyd systemctl enable chronyd
3.3、测试是否通
3.3.1、ntpdate
[root@client ~]# ntpdate 192.168.10.24 11 Mar 01:29:49 ntpdate[3518]: adjust time server 192.168.10.24 offset 0.000701 sec
3.3.2、chronyc
[root@client ~]# chronyc -a makestep 200 OK
3.4、查看时间同步是否正常
[root@nginx02 ~]# 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 || Reachability register (octal) -. | xxxx = adjusted offset, || Log2(Polling interval) --. | | yyyy = measured offset, || \ | | zzzz = estimated error. || | | \ MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^* 192.168.10.24 3 6 75 49 -141ns[ -350us] +/- 19ms
标签:服务,chrony,192.168,server,Chrony,iburst,10.24,root From: https://www.cnblogs.com/ygbh/p/17205111.html