目的
NTPサーバーと時刻同期する。
設定方針
設定方針を参照する。
前提条件
無し
設定手順
設定ファイル編集
/etc/chrony.conf
デフォルトのままでもCentOSが提供しているNTPサーバーと同期しているが、契約しているISPのNTPサーバーがあればそれを指定したほうが良いと思う。尚、NTPサーバーはできるだけIPアドレスで指定できるものが良いと思う。
[root@centos ~]# vim /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 [xxx.xxx.xxx.xxx] iburst
サービス再起動
[root@centos ~]# systemctl restart chronyd [root@centos ~]# systemctl status chronyd
CentOS7 NTP設定