Chrony 服务安装及配置流程
简介
Chrony 是一个时钟同步程序。
软件安装和配置
服务端
可以按照如下样例进行配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| 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
makestep 1.0 3
rtcsync
allow <area>
logdir /var/log/chrony
|
注:此处的 area 需要调整为目标网段,例如: 192.168.1.0/24。
1 2
| systemctl enable chronyd systemctl restart chronyd
|
1 2
| firewall-cmd --permanent --add-service=ntp firewall-cmd --reload
|
注:此命令的结果列表即是目标服务器列表,如发现问题请及时修改。
客户端
然后填入如下内容
注:此处的 IP 需要填写之前配置服务端的 IP 地址。
1 2
| systemctl enable chronyd systemctl restart chronyd
|
注:此命令的结果列表即是目标服务器列表,如发现问题请及时修改。
测试
在服务端和客户端都可以使用如下命令确定服务运行情况:
如果发现下面两项内容则证明服务正常:
1 2
| NTP enabled: yes NTP synchronized: yes
|