Cloudera Manager 5問題のNTP問題
14919 ワード
Clouderaの公式提案に従って、すべてのCDHノードとCloudea Managerノードはntpdサービスを開始する必要があります.1)このロールのホストの動作が不良であることを示すエラーが発生します.以下の運転状況テスト不良:クロック偏差.2)The host’s NTP service is not synchronized to any remote server.
解決策は、まず1台のNTPサービスを構成し、その後、すべてのCDHノードがこのNTPサービスのクライアントとして機能します.1,NTPDサービス,10.51.120.12,この機械は外部ネットワークのNTPDサービスと標準時間を同期して、そしてローカルエリアネットワーク内のNTPDサーバーとする.2,NTPDクライアント,10.51.120.64〜10.51.120.68,これらの機器はNTPDサービスと同期する時間である.
一、イントラネットNTP-Server(10.51.120.12)1を配置し、/etc/ntpを配置する.confファイル.
次のセクションは、追加セクションです.
プロファイルの変更が完了し、保存が終了しました.2、ntpdサービスを開始します.
chkconfig–level 35 ntpd onコマンドを実行し、起動を開始します.
3サービス接続とリスニングの表示
最初の行を見ると、接続と傍受が正しく、UDP方式を採用していることを示します.
4,ntpq-pネットワーク内のNTPサーバを表示し、クライアントと各サーバの関係を表示する
5,ntpstatコマンドは時間同期状態を表示します.これは一般的に5-10分後に接続と同期に成功する必要があります.そのため、サーバーが起動したら少し待つ必要があります.起動したばかりの頃は、一般的には:
接続および同期後:
二、イントラネットNTP-Clients 1を配置し、/etc/ntpを配置する.confファイル.server 10.51.120.12 preferが保存し、終了する構成を追加します.
2、chkconfig ntpd onを実行し、起動を設定します.
3サービスntpd startを実行してntpdサービスを開始します.
4,同期NTP-Server時間ntpdate-u 10.51.120.12
5,hwclock–systohcを実行し,システム時間をハードウェアBIOSに同期する.
構成が完了しました.CDHを再起動します.
解決策は、まず1台のNTPサービスを構成し、その後、すべてのCDHノードがこのNTPサービスのクライアントとして機能します.1,NTPDサービス,10.51.120.12,この機械は外部ネットワークのNTPDサービスと標準時間を同期して、そしてローカルエリアネットワーク内のNTPDサーバーとする.2,NTPDクライアント,10.51.120.64〜10.51.120.68,これらの機器はNTPDサービスと同期する時間である.
一、イントラネットNTP-Server(10.51.120.12)1を配置し、/etc/ntpを配置する.confファイル.
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).
driftfile /var/lib/ntp/drift
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
# Permit all access over the loopback interface. This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 127.0.0.1
restrict -6 ::1
# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# : http://www.pool.ntp.org/zone/cn
server 0.cn.pool.ntp.org
server 0.asia.pool.ntp.org
server 3.asia.pool.ntp.org
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
#broadcast 192.168.1.255 autokey # broadcast server
#broadcastclient # broadcast client
#broadcast 224.0.1.1 autokey # multicast server
#multicastclient 224.0.1.1 # multicast client
#manycastserver 239.255.254.254 # manycast server
#manycastclient 239.255.254.254 autokey # manycast client
# allow update time by the upper server
#
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 0.asia.pool.ntp.org nomodify notrap noquery
restrict 3.asia.pool.ntp.org nomodify notrap noquery
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
# ,
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
# Enable public key cryptography.
#crypto
includefile /etc/ntp/crypto/pw
# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography.
keys /etc/ntp/keys
# Specify the key identifiers which are trusted.
#trustedkey 4 8 42
# Specify the key identifier to use with the ntpdc utility.
#requestkey 8
# Specify the key identifier to use with the ntpq utility.
#controlkey 8
# Enable writing of statistics records.
#statistics clockstats cryptostats loopstats peerstats
次のセクションは、追加セクションです.
# : http://www.pool.ntp.org/zone/cn
server 0.cn.pool.ntp.org
server 0.asia.pool.ntp.org
server 3.asia.pool.ntp.org
# allow update time by the upper server
#
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 0.asia.pool.ntp.org nomodify notrap noquery
restrict 3.asia.pool.ntp.org nomodify notrap noquery
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
# ,
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
プロファイルの変更が完了し、保存が終了しました.2、ntpdサービスを開始します.
#service ntpd start
chkconfig–level 35 ntpd onコマンドを実行し、起動を開始します.
3サービス接続とリスニングの表示
[root@grc-cdh03 ~]# netstat -tlunp | grep ntp
udp 0 0 10.51.120.12:123 0.0.0.0:* 19265/ntpd
udp 0 0 127.0.0.1:123 0.0.0.0:* 19265/ntpd
udp 0 0 0.0.0.0:123 0.0.0.0:* 19265/ntpd
udp 0 0 ::1:123 :::* 19265/ntpd
udp 0 0 fe80::3a63:bbff:fe45:92b:123 :::* 19265/ntpd
udp 0 0 :::123 :::* 19265/ntpd
最初の行を見ると、接続と傍受が正しく、UDP方式を採用していることを示します.
4,ntpq-pネットワーク内のNTPサーバを表示し、クライアントと各サーバの関係を表示する
[root@grc-cdh03 ~]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
dns.sjtu.edu.cn .INIT. 16 u - 1024 0 0.000 0.000 0.000
linode.dev.fawo .INIT. 16 u - 1024 0 0.000 0.000 0.000
112.220.115.166 .INIT. 16 u - 1024 0 0.000 0.000 0.000
dns1.synet.edu. .INIT. 16 u - 1024 0 0.000 0.000 0.000
news.neu.edu.cn .INIT. 16 u - 1024 0 0.000 0.000 0.000
gus.buptnet.edu .INIT. 16 u - 1024 0 0.000 0.000 0.000
*LOCAL(0) .LOCL. 10 l 25 64 377 0.000 0.000 0.000
5,ntpstatコマンドは時間同期状態を表示します.これは一般的に5-10分後に接続と同期に成功する必要があります.そのため、サーバーが起動したら少し待つ必要があります.起動したばかりの頃は、一般的には:
# ntpstat
unsynchronised
time server re-starting
polling server every 64 s
接続および同期後:
[root@grc-cdh03 ~]# ntpstat
synchronised to local net at stratum 11
time correct to within 11 ms
polling server every 64 s
二、イントラネットNTP-Clients 1を配置し、/etc/ntpを配置する.confファイル.server 10.51.120.12 preferが保存し、終了する構成を追加します.
2、chkconfig ntpd onを実行し、起動を設定します.
3サービスntpd startを実行してntpdサービスを開始します.
4,同期NTP-Server時間ntpdate-u 10.51.120.12
5,hwclock–systohcを実行し,システム時間をハードウェアBIOSに同期する.
構成が完了しました.CDHを再起動します.