2019-04-09 11:50:35 +08:00
|
|
|
|
[#]: collector: (lujun9972)
|
2019-04-23 10:08:26 +08:00
|
|
|
|
[#]: translator: (arrowfeng)
|
2019-05-06 14:57:17 +08:00
|
|
|
|
[#]: reviewer: (wxy)
|
2019-04-09 11:50:35 +08:00
|
|
|
|
[#]: publisher: ( )
|
|
|
|
|
[#]: url: ( )
|
|
|
|
|
[#]: subject: (How To Install And Configure Chrony As NTP Client?)
|
|
|
|
|
[#]: via: (https://www.2daygeek.com/configure-ntp-client-using-chrony-in-linux/)
|
|
|
|
|
[#]: author: (Magesh Maruthamuthu https://www.2daygeek.com/author/magesh/)
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
如何安装和配置 Chrony 作为 NTP 客户端?
|
2019-04-09 11:50:35 +08:00
|
|
|
|
======
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
NTP 服务器和 NTP 客户端可以让我们通过网络来同步时钟。之前,我们已经撰写了一篇关于 [NTP 服务器和 NTP 客户端的安装与配置][1] 的文章。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
如果你想看这些内容,点击上述的 URL 访问。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
### Chrony 客户端
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
Chrony 是 NTP 客户端的替代品。它能以更精确的时间和更快的速度同步时钟,并且它对于那些不是全天候在线的系统非常有用。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
chronyd 更小、更节能,它占用更少的内存且仅当需要时它才唤醒 CPU。即使网络拥塞较长时间,它也能很好地运行。它支持 Linux 上的硬件时间戳,允许在本地网络进行极其准确的同步。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-04 21:29:45 +08:00
|
|
|
|
它提供下列两个服务。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
* `chronyc`:Chrony 的命令行接口。
|
|
|
|
|
* `chronyd`:Chrony 守护进程服务。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
### 如何在 Linux 上安装和配置 Chrony?
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-04 21:29:45 +08:00
|
|
|
|
由于安装包在大多数发行版的官方仓库中可用,因此直接使用包管理器去安装它。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 Fedora 系统,使用 [DNF 命令][2] 去安装 chrony。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo dnf install chrony
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 Debian/Ubuntu 系统,使用 [APT-GET 命令][3] 或者 [APT 命令][4] 去安装 chrony。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo apt install chrony
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对基于 Arch Linux 的系统,使用 [Pacman 命令][5] 去安装 chrony。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo pacman -S chrony
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 RHEL/CentOS 系统,使用 [YUM 命令][6] 去安装 chrony。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo yum install chrony
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 openSUSE Leap 系统,使用 [Zypper 命令][7] 去安装 chrony。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo zypper install chrony
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-04 21:29:45 +08:00
|
|
|
|
在这篇文章中,我们将使用下列设置去测试。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
* NTP 服务器:主机名:CentOS7.2daygeek.com,IP:192.168.1.5,OS:CentOS 7
|
|
|
|
|
* Chrony 客户端:主机名:Ubuntu18.2daygeek.com,IP:192.168.1.3,OS:Ubuntu 18.04
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
服务器的安装请访问 [在 Linux 上安装和配置 NTP 服务器][1] 的 URL。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
我已经在 CentOS7.2daygeek.com 这台主机上安装和配置了 NTP 服务器,因此,将其附加到所有的客户端机器上。此外,还包括其他所需信息。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
`chrony.conf` 文件的位置根据你的发行版不同而不同。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对基于 RHEL 的系统,它位于 `/etc/chrony.conf`。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对基于 Debian 的系统,它位于 `/etc/chrony/chrony.conf`。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# vi /etc/chrony/chrony.conf
|
|
|
|
|
|
|
|
|
|
server CentOS7.2daygeek.com prefer iburst
|
|
|
|
|
keyfile /etc/chrony/chrony.keys
|
|
|
|
|
driftfile /var/lib/chrony/chrony.drift
|
|
|
|
|
logdir /var/log/chrony
|
|
|
|
|
maxupdateskew 100.0
|
|
|
|
|
makestep 1 3
|
|
|
|
|
cmdallow 192.168.1.0/24
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
更新配置后需要重启 Chrony 服务。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 sysvinit 系统。基于 RHEL 的系统需要去运行 `chronyd` 而不是 `chrony`。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
2019-05-04 21:29:45 +08:00
|
|
|
|
# service chronyd restart
|
|
|
|
|
# chkconfig chronyd on
|
2019-04-09 11:50:35 +08:00
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
对于 systemctl 系统。 基于 RHEL 的系统需要去运行 `chronyd` 而不是 `chrony`。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
2019-05-04 21:29:45 +08:00
|
|
|
|
# systemctl restart chronyd
|
|
|
|
|
# systemctl enable chronyd
|
2019-04-09 11:50:35 +08:00
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
使用像 `tacking`、`sources` 和 `sourcestats` 这样的子命令去检查 chrony 的同步细节。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
去检查 chrony 的追踪状态。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# chronyc tracking
|
|
|
|
|
Reference ID : C0A80105 (CentOS7.2daygeek.com)
|
|
|
|
|
Stratum : 3
|
|
|
|
|
Ref time (UTC) : Thu Mar 28 05:57:27 2019
|
|
|
|
|
System time : 0.000002545 seconds slow of NTP time
|
|
|
|
|
Last offset : +0.001194361 seconds
|
|
|
|
|
RMS offset : 0.001194361 seconds
|
|
|
|
|
Frequency : 1.650 ppm fast
|
|
|
|
|
Residual freq : +184.101 ppm
|
|
|
|
|
Skew : 2.962 ppm
|
|
|
|
|
Root delay : 0.107966967 seconds
|
|
|
|
|
Root dispersion : 1.060455322 seconds
|
|
|
|
|
Update interval : 2.0 seconds
|
|
|
|
|
Leap status : Normal
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
运行 `sources` 命令去显示当前时间源的信息。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# chronyc sources
|
|
|
|
|
210 Number of sources = 1
|
|
|
|
|
MS Name/IP address Stratum Poll Reach LastRx Last sample
|
|
|
|
|
===============================================================================
|
|
|
|
|
^* CentOS7.2daygeek.com 2 6 17 62 +36us[+1230us] +/- 1111ms
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
`sourcestats` 命令显示有关 chronyd 当前正在检查的每个源的漂移率和偏移估计过程的信息。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# chronyc sourcestats
|
|
|
|
|
210 Number of sources = 1
|
|
|
|
|
Name/IP Address NP NR Span Frequency Freq Skew Offset Std Dev
|
|
|
|
|
==============================================================================
|
|
|
|
|
CentOS7.2daygeek.com 5 3 71 -97.314 78.754 -469us 441us
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
当 chronyd 配置为 NTP 客户端或对等端时,你就能通过 `chronyc ntpdata` 命令向每一个 NTP 源发送/接收时间戳模式和交错模式的报告。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# chronyc ntpdata
|
|
|
|
|
|
|
|
|
|
Remote address : 192.168.1.5 (C0A80105)
|
|
|
|
|
Remote port : 123
|
|
|
|
|
Local address : 192.168.1.3 (C0A80103)
|
|
|
|
|
Leap status : Normal
|
|
|
|
|
Version : 4
|
|
|
|
|
Mode : Server
|
|
|
|
|
Stratum : 2
|
|
|
|
|
Poll interval : 6 (64 seconds)
|
|
|
|
|
Precision : -23 (0.000000119 seconds)
|
|
|
|
|
Root delay : 0.108994 seconds
|
|
|
|
|
Root dispersion : 0.076523 seconds
|
|
|
|
|
Reference ID : 85F3EEF4 ()
|
|
|
|
|
Reference time : Thu Mar 28 06:43:35 2019
|
|
|
|
|
Offset : +0.000160221 seconds
|
|
|
|
|
Peer delay : 0.000664478 seconds
|
|
|
|
|
Peer dispersion : 0.000000178 seconds
|
|
|
|
|
Response time : 0.000243252 seconds
|
|
|
|
|
Jitter asymmetry: +0.00
|
|
|
|
|
NTP tests : 111 111 1111
|
|
|
|
|
Interleaved : No
|
|
|
|
|
Authenticated : No
|
|
|
|
|
TX timestamping : Kernel
|
|
|
|
|
RX timestamping : Kernel
|
|
|
|
|
Total TX : 46
|
|
|
|
|
Total RX : 46
|
|
|
|
|
Total valid RX : 46
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
最后运行 `date` 命令。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# date
|
|
|
|
|
Thu Mar 28 03:08:11 CDT 2019
|
|
|
|
|
```
|
|
|
|
|
|
2019-05-06 14:57:17 +08:00
|
|
|
|
为了立即跟进系统时钟,绕过任何正在进行的缓步调整,请以 root 身份运行以下命令(以手动调整系统时钟)。
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# chronyc makestep
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://www.2daygeek.com/configure-ntp-client-using-chrony-in-linux/
|
|
|
|
|
|
|
|
|
|
作者:[Magesh Maruthamuthu][a]
|
|
|
|
|
选题:[lujun9972][b]
|
2019-05-04 21:29:45 +08:00
|
|
|
|
译者:[arrowfeng](https://github.com/arrowfeng)
|
2019-05-06 14:57:17 +08:00
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2019-04-09 11:50:35 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]: https://www.2daygeek.com/author/magesh/
|
|
|
|
|
[b]: https://github.com/lujun9972
|
2019-05-06 14:57:17 +08:00
|
|
|
|
[1]: https://linux.cn/article-10811-1.html
|
2019-04-09 11:50:35 +08:00
|
|
|
|
[2]: https://www.2daygeek.com/dnf-command-examples-manage-packages-fedora-system/
|
|
|
|
|
[3]: https://www.2daygeek.com/apt-get-apt-cache-command-examples-manage-packages-debian-ubuntu-systems/
|
|
|
|
|
[4]: https://www.2daygeek.com/apt-command-examples-manage-packages-debian-ubuntu-systems/
|
|
|
|
|
[5]: https://www.2daygeek.com/pacman-command-examples-manage-packages-arch-linux-system/
|
|
|
|
|
[6]: https://www.2daygeek.com/yum-command-examples-manage-packages-rhel-centos-systems/
|
|
|
|
|
[7]: https://www.2daygeek.com/zypper-command-examples-manage-packages-opensuse-system/
|