NTPサーバー設定(NTPd)
NTPd をインストールして、時刻同期します。
[root@www ~]# yum install ntp
NTPdを設定します。
[root@www ~]# vi /etc/ntp.conf
18行目: 時刻同期を許可する範囲を追記します。
restrict 192.168.1.1 mask 255.255.255.0 nomodify notrap
行頭に「#」を追記してコメント解除し、時刻同期する NTP サーバーを追加します。
#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 ntp1.jst.mfeed.ad.jp iburst server ntp2.jst.mfeed.ad.jp iburst
起動します。
[root@www ~]# systemctl start ntpd
自動起動を設定します。
[root@www ~]# systemctl enable ntpd
作動確認します。
[root@www ~]# ntpq -p remote refid st t when poll reach delay offset jitter ============================================================================== *ntp-a3.nict.go. .NICT. 1 u 47 64 1 20.070 -2.057 0.466 ntp1.jst.mfeed. 133.243.236.17 2 u 47 64 1 21.888 -0.893 0.547 ntp2.jst.mfeed. 133.243.236.17 2 u 47 64 1 24.095 -1.190 0.362
コメント