在 cron.log 中,我可以看到 ntpdate 是由每天 23:15 运行的 cron 作业触发的
3 月 10 日 23:15:01 seitan /USR/SBIN/CRON[22407]: (root) CMD (/etc/network/if-up.d/ntpdate)
但我似乎找不到导致这些消息填满我的系统日志的 cron 作业
3月10日 23:15:01 seitan ntpdate[22416]: NTP 套接字正在使用中,退出
我猜我需要更改这个 cron 作业以在执行此命令之前停止 ntp 服务,然后重新启动它,但我不知道这是从哪里触发的。我检查了 cron.daily 目录,它只包含一个ntp
似乎只轮换 ntp 统计信息的文件(内容如下):
#!/bin/sh
# The default Debian ntp.conf enables logging of various statistics to
# the /var/log/ntpstats directory. The daemon automatically changes
# to a new datestamped set of files at midnight, so all we need to do
# is delete old ones, and compress the ones we're keeping so disk
# usage is controlled.
statsdir=$(cat /etc/ntp.conf | grep -v '^#' | sed -n 's/statsdir \([^ ][^ ]*\)/\1/p')
if [ -n "$statsdir" ] && [ -d "$statsdir" ]; then
# only keep a week's depth of these
find "$statsdir" -type f -mtime +7 -exec rm {} \;
# compress whatever is left to save space
cd "$statsdir"
ls *stats.???????? > /dev/null 2>&1
if [ $? -eq 0 ]; then
# Note that gzip won't compress the file names that
# are hard links to the live/current files, so this
# compresses yesterday and previous, leaving the live
# log alone. We supress the warnings gzip issues
# about not compressing the linked file.
gzip --best --quiet *stats.????????
return=$?
case $return in
2)
exit 0 # squash all warnings
;;
*)
exit $return # but let real errors through
;;
esac
fi
fi
我从来没有接触过系统中的任何 ntp 配置。
答案1
如果您已经运行并正确配置,则根本ntp
不需要运行。ntpdate
我通常使用它来在安装过程中手动设置时钟。