#author("2020-03-20T18:19:47+09:00","default:egashira","egashira") #author("2020-03-20T18:20:00+09:00","default:egashira","egashira") [[CentOS7]] *NTPサーバー(chrony)のインストール [#d79721e4] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# yum -y install chrony &color(lime){← chronyインストール};| **NTPサーバー設定 [#qfee73f7] |BGCOLOR(black):COLOR(white):|c |[root@centos ~]# vi /etc/chrony.conf &color(lime){← ntp設定ファイル編集};| |# Use public servers from the pool.ntp.org project.&br; # Please consider joining the pool (http://www.pool.ntp.org/join.html). &br; &color(lime){↓ 時刻同期先NTPサーバーを変更}; &br; # 日本標準時を提供しているNTPサーバー(stratum 1) &br; server ntp.nict.jp iburst &br; # 上記サーバーと直接同期しているNTPサーバー(stratum 2) &br; server ntp.jst.mfeed.ad.jp iburst &br; &br; # Allow NTP client access from local network. &br; #allow 192.168.0.0/16 &br; allow 192.168.1.0/24 &color(lime){← 内部(例:192.168.1.0/24)からの時刻同期を許可};| **NTPサーバー起動 [#aa7a371f] NTPサーバー起動時に大幅に時刻がずれているとNTPサーバーが起動できないので、いったん、手動で時刻を合わせる |BGCOLOR(black):COLOR(white):|c |[root@centos ~]# chronyc makestep &color(lime){← 手動で時刻を合わせる};| |[root@centos ~]# systemctl restart chronyd &color(lime){← NTPサーバー再起動※CentOS7の場合};| |[root@centos ~]# systemctl enable chronyd &color(lime){← NTPサーバー自動起動設定※CentOS7の場合};| **NTPサーバー確認 [#oc6fba7f] |BGCOLOR(black):COLOR(white):|c |[root@centos ~]# chronyc sources &color(lime){← NTPサーバーへの時刻同期状態確認};| |210 Number of sources = 3 &br; MS Name/IP address Stratum Poll Reach LastRx Last sample &br; ===========================================================&br; ^* ntp-a3.nict.go.jp 1 6 17 26 -38us[ -112us] +/- 4315us &br; ^- ntp3.jst.mfeed.ad.jp 2 6 17 26 -369us[ -369us] +/- 12ms| |210 Number of sources = 3 &br; MS Name/IP address Stratum Poll Reach LastRx Last sample &br; =================================================&br; ^* ntp-a3.nict.go.jp 1 6 17 26 -38us[ -112us] +/- 4315us &br; ^- ntp3.jst.mfeed.ad.jp 2 6 17 26 -369us[ -369us] +/- 12ms|