我在 Ubuntu 20.04 LTS 上运行 NTP 服务器。服务器工作正常,客户端正确轮询服务器。但是当我想记录统计信息时,我不断收到权限错误。
我试图在 ntp.conf 中包含以下几行:
statistics rawstats
statsdir /var/log/ntpstats/
filegen rawstats file raw type day link enable
看的时候systemctl ntp status
:
mars 05 09:08:48 RD-NTP ntpd[3534] : can't open /var/log/ntpstats/raw.20210305: Permission denied
mars 05 09:08:50 RD-NTP ntpd[3534] : can't open /var/log/ntpstats/raw.20210305: Permission denied
mars 05 09:08:52 RD-NTP ntpd[3534] : can't open /var/log/ntpstats/raw.20210305: Permission denied
mars 05 09:08:54 RD-NTP ntpd[3534] : can't open /var/log/ntpstats/raw.20210305: Permission denied
但对我来说,该目录具有正确的权限ls -al
:
drwxr-xr-x 2 ntp ntp 4096 april 2 2020 .
在选择默认文件夹之前,我尝试使用我创建的一个并使用此命令在权限中添加 ntp : chmod ntp:ntp /home/ubuntu/ntpstats/
,它不起作用所以我切换到这个,也不起作用。
你知道为什么 ntpd 一直出错,即使 ntp 在文件夹上占了上风吗?