centos7配置chrony
时间: 2023-10-23 18:10:55 浏览: 143
Chrony 是一款 NTP(Network Time Protocol)客户端,可以用于同步服务器时间。下面是在 CentOS 7 上配置 Chrony 的步骤。
1. 安装 Chrony:
```
yum install chrony
```
2. 配置 Chrony:
编辑 /etc/chrony.conf 文件,添加 NTP 服务器地址。可以添加多个 NTP 服务器,如下所示:
```
server ntp1.example.com iburst
server ntp2.example.com iburst
```
iburst 表示在启动时快速同步时间。
如果你不知道可用的 NTP 服务器,请查找可用的 NTP 服务器列表。
3. 启动 Chrony:
```
systemctl start chronyd
```
4. 设置 Chrony 开机自启:
```
systemctl enable chronyd
```
5. 验证 Chrony 是否正常工作:
```
chronyc sources
```
如果 Chrony 正常工作,会输出类似下面的信息:
```
210 Number of sources = 3
MS Name/IP address Stratum Poll Reach LastRx Last sample
===============================================================================
^+ ntp1.example.com 2 6 77 2 -4ms[ -13ms] +/- 11ms
^* ntp2.example.com 2 6 77 2 +10ms[ -6ms] +/- 11ms
^+ ntp3.example.com 2 6 77 2 +8ms[ -10ms] +/- 13ms
```
其中,^+ 表示 Chrony 正在主动与该服务器同步时间,^* 表示 Chrony 已经同步了该服务器的时间。
以上就是在 CentOS 7 上配置 Chrony 的步骤。
阅读全文