サーバーが常に正常な時刻で動作するようにNTPサーバーをインストール
※CentOS7関連のインストール・設定については「CentOSで自宅サーバー様」を参考に自分の環境に合わせて設定しています。
●CentOS7用のNTPサーバー「chrony」インストール
# yum -y install chrony
●chrony設定
# vi /etc/chrony.conf
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
↓
server ntp.nict.jp iburst
server ntp.jst.mfeed.ad.jp iburst
server 利用しているISPのNTPサーバー名 iburst
Allow NTP client access from local network.
# allow 192.168/16
↓
# allow 192.168.1.0/24 (内部IPアドレスが192.168.1.xの場合)
●サーバー機の時刻合わせ
# ntpdate ntp.nict.jp
●chronyd起動
# systemctl start chronyd
●chronyd自動起動設定
# systemctl enable chronyd
●chronyd動作確認(chronyd起動数分後)
# chronyc sources
(上記で設定したNTPサーバー名の行頭に「*」または「+」が表示されればOK)