CentOS 7 での NTP Client の設定方法のメモ。
- /etc/chrony.conf を編集します。
以下を入力します。
nano /etc/chrony.conf
編集前の chrony.conf。server から始まる設定を全部削除します
# Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). server 0.centos.pool.ntp.org iburst server 1.centos.pool.ntp.org iburst server 2.centos.pool.ntp.org iburst server 3.centos.pool.ntp.org iburst # Record the rate at which the system clock gains/losses time. driftfile /var/lib/chrony/drift
編集後の chrony.conf。
xxx.xxx.xxx.xxx は同期したい時刻サーバーのアドレスです。(IP でも FQDN でもどちらでも可)# Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). server xxx.xxx.xxx.xxx iburst # Record the rate at which the system clock gains/losses time. driftfile /var/lib/chrony/drift
- chronyd を再起動します。
systemctl restart chronyd.service
- 更なる設定
ここがくわしそうです。> https://qiita.com/yunano/items/7883cf295f91f4ef716b