2017年10月30日月曜日

ntpクライアント導入と設定について

OS:Centos7.x
対象のntpサーバー:192.168.10.107


1)ntpクライアントをインストールする。
# yum -y install chrony

2)ntpdサービスは不要なので停止する。
# systemctl stop ntpd.service
# systemctl disable ntpd.service

3)chronyd.serviceを起動する。
# systemctl start chronyd.service
  

4)chrony.confの編集を行う。
# vi /etc/chrony.conf
==========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

②対象のntpサーバーを追記する。
server 192.168.10.107 iburst

③ネットワーク範囲を指定する。
# Allow NTP client access from local network.

allow 192.168.10.0/24
====================================


5)chronyd.serviceを再起動する。
# systemctl restart chronyd.service


6)以下のコマンドを投入して、"^*"が表示されているば同期完了
# chronyc sources
210 Number of sources = 1
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
======================================================
^* xymon                         2   6   377    10  +2762ns[+7233ns] +/-   53ms

0 件のコメント:

コメントを投稿

helm( kube-prometheus-stack)とlokiの連携

helm経由で、 kube-prometheus-stackとloki stackを入れるだけだと連携ができないので 追加で以下の手順を進める必要がある。 1)Loki stackの導入を実施 helm install loki grafana/loki-stack --name...