chrony 没有在我的 ec2 实例上记录任何内容

chrony 没有在我的 ec2 实例上记录任何内容

我正在尝试从我的 EC 2(Ubuntu 18.04.2 LTS)实例上的 chrony 守护程序收集统计信息。我已按照 aws 的指南进行设置,并且它按预期运行。

我需要比较 aws 和我们使用的另一个服务提供商之间的时间同步差异,这就是我启用 chrony 日志记录的原因。

但它没有在/var/log/chrony文件夹中记录任何内容

这是我的配置:

server 169.254.169.123 prefer iburst

pool ntp.ubuntu.com        iburst maxsources 4
pool 0.ubuntu.pool.ntp.org iburst maxsources 1
pool 1.ubuntu.pool.ntp.org iburst maxsources 1
pool 2.ubuntu.pool.ntp.org iburst maxsources 2

# This directive specify the location of the file containing ID/key pairs for
# NTP authentication.
keyfile /etc/chrony/chrony.keys

# This directive specify the file into which chronyd will store the rate
# information.
driftfile /var/lib/chrony/chrony.drift

# Uncomment the following line to turn logging on.
log tracking measurements statistics

# Log files location.
logdir /var/log/chrony


# Stop bad estimates upsetting machine clock.
maxupdateskew 100.0

# This directive enables kernel synchronisation (every 11 minutes) of the
# real-time clock. Note that it can’t be used along with the 'rtcfile' directive.
rtcsync

# Step the system clock instead of slewing it if the adjustment is larger than
# one second, but only in the first three clock updates.
makestep 1 3

我已经检查了文件夹和所有内容的权限,但没有日志文件。

希望你们能帮助我

答案1

我刚刚通过执行以下操作验证了 chrony 日志记录:

  1. 创建了一个默认的 Ubuntu 18.04 LTS EC2 实例 - AMI id:ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20180912 (ami-07a3bd4944eb120a0)
  2. 已安装 chrony:sudo apt install chrony
  3. 编辑默认配置/etc/chrony/chronyd.conf
    • 添加上面配置中显示的 AWS NTP 源
    • 取消注释该log tracking ...
  4. 重新启动 chrony:sudo service chrony restart
  5. 确认日志记录正常工作:
    root@ip-172-31-1-97:~# ls -la /var/log/chrony/
    total 32
    drwxr-xr-x  2 _chrony _chrony  4096 Mar  7 22:20 .
    drwxrwxr-x 10 root    syslog   4096 Mar  7 22:19 ..
    -rw-r--r--  1 _chrony _chrony 10686 Mar  7 22:22 measurements.log
    -rw-r--r--  1 _chrony _chrony  4797 Mar  7 22:22 statistics.log
    -rw-r--r--  1 _chrony _chrony  1854 Mar  7 22:21 tracking.log
    
  6. 确认 chrony 正在联系其消息来源:
    root@ip-172-31-1-97:~# chronyc -n sources
    210 Number of sources = 9
    MS Name/IP address         Stratum Poll Reach LastRx Last sample               
    ===============================================================================
    ^* 169.254.169.123               3   6   377    48    +16us[  +46us] +/-  300us
    ^- 91.189.94.4                   2   7   241   103   +934us[ +957us] +/-  161ms
    ^- 91.189.91.157                 2   6    35    39  +2471us[+2471us] +/-  153ms
    ^- 91.189.89.199                 2   7    41   167  +1194us[+1203us] +/-  169ms
    ^? 2001:67c:1560:8003::c8        0   6     0     -     +0ns[   +0ns] +/-    0ns
    ^- 129.250.35.250                2   6   377    49   +914us[ +944us] +/-   93ms
    ^- 61.68.38.238                  3   6   377    49  -1395us[-1366us] +/-   59ms
    ^- 203.23.237.200                2   6   377    48  +2176us[+2176us] +/-   41ms
    ^- 150.101.217.196               2   6   377    48  -5039us[-5009us] +/-   76ms
    

因此,我对您的测试和我的测试之间的差异的最佳猜测是:

  1. 您使用了非官方的 Ubuntu 18.04 AMI

  2. 你使用了非官方的 chrony 包,而不是直接安装 Ubuntu 档案中的包

  3. 更改配置后你忘记重启 chrony

答案2

您是否尝试过查看 Chrony 是否正在记录到 systemd?请尝试:

journalctl -u Chronyd.service

相关内容