1

CentOS 7, set it up about 3 years ago, so I might not remember every decision I made...

Once an hour, something does a time update. I don't have ntp installed, only ntpdate. Don't have chrony installed either.

There's nothing in /etc/crontab, /etc/cron.hourly. There's no /etc/ntp.conf file.

timedatectl says NTP Enabled: n/a NTP Synchronized: No

But something is reaching out and touching 10 time servers every hour.

Suggestions on how to find it?

2 Answers2

1

I manage the server using Webmin mostly, but command line too.

user1686 asked questions that led me to the System Time scheduled function in Webmin.

Turned that off, and it stopped! Woohoo!

Thanks for giving me pointers that led to the answer.

-Michele

0
  1. The system log (either a file in /var/log, or the journalctl ... command) will usually have messages corresponding to every periodic job.

  2. Many cron daemons also read additional jobs from /etc/cron.d.

  3. Root has a per-user crontab, accessible via crontab -l and crontab -e, which is separate from the system-wide /etc/crontab.

  4. You might have created a systemd "timer" to run ntpdate. Use systemctl list-timers and check the files present in /etc/systemd/system (plus symlinks in the timers.target.wants/ subdirectory).

  5. It might be something else than ntpdate, such as systemd-timesyncd or another SNTP client.

grawity
  • 501,077