web-dev-qa-db-ja.com

NTPサービスが正常に終了するのはなぜですか?

Windows 8Hyper-Vで実行されている仮想Debian8マシンで、日時の停止に関する問題が繰り返し発生します。インストール後の構成はあまり行っていません。意図的にVanillaをインストールしていて、凝ったものはありません。ボックスを自己完結型のPOSIX環境として使用し、SSH経由でPuTTYでログインします。

ホストがスリープ状態になると日付が「フリーズ」するようで、1日ほど後にホストラップトップの蓋を開けた後に目を覚まします。 Windows上のPuTTYからVMへのSSHセッションは常にそのまま残ります。 Linux用のHyper-V固有の時刻同期サービスをいじくり回したくありませんでした。NTPの使用に満足しています。 NTPはapt-get install ntpとともにインストールされ、最初はsystemctl status ntpで次のようになりました。

● ntp.service - LSB: Start NTP daemon
   Loaded: loaded (/etc/init.d/ntp)
   Active: active (running) since Mon 2017-08-14 23:16:55 CEST; 20h ago
  Process: 1167 ExecStop=/etc/init.d/ntp stop (code=exited, status=0/SUCCESS)
  Process: 1175 ExecStart=/etc/init.d/ntp start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/ntp.service
           └─1184 /usr/sbin/ntpd -p /var/run/ntpd.pid -g -u 108:115

今日、ラップトップを起動し、昨日からの「凍結」日付を再度観察した後、上記と同じコマンドで、サービスが終了したことがわかります。

● ntp.service - LSB: Start NTP daemon
   Loaded: loaded (/etc/init.d/ntp)
   Active: active (exited) since Mon 2017-08-14 21:28:57 CEST; 1h 43min ago
  Process: 450 ExecStart=/etc/init.d/ntp start (code=exited, status=0/SUCCESS)

サービスが自然に終了するように見えるのはなぜですか?どうやら、ホストがスリープ/ハイバネーションから解凍するとすぐに終了します。そして、すべてのものの0/SUCCESSを使用して、エラーが発生することなく、設計上、そのように動作すると信じさせてください。

systemctl restart ntpすると、プロセスはスケジュールされたプロセス間で戻り、日付が同期されます。 systemctl start ntpを実行しても、同じ効果はありません(おそらく、すでに「ロード」/「アクティブ」になっているためです)。

どうしたの? NTPは常に実行されているはずではなく、ドリフト時に必要に応じて定期的にクロックを同期しますか?これは、仮想マシンでNTPを使用しないというMicrosoftの推奨事項を採用しているカーネル内のHyper-V関連モジュールですか、それともネットワークスタックによってNTPがベイルしますか? UDPであり、VMへのSSHでさえも持続しますが、なぜそれが問題になるのでしょうか。

/etc/ntp.conf、自分で編集したことはありません:

# /etc/ntp.conf, configuration for ntpd; see ntp.conf(6) for help

driftfile /var/lib/ntp/ntp.drift


# Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/

statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable


# You do need to talk to an NTP server or two (or three).
#server ntp.your-provider.example

# pool.ntp.org maps to about 1000 low-stratum NTP servers.  Your server will
# pick a different set every time it starts up.  Please consider joining the
# pool: <http://www.pool.ntp.org/join.html>
server 0.debian.pool.ntp.org iburst
server 1.debian.pool.ntp.org iburst
server 2.debian.pool.ntp.org iburst
server 3.debian.pool.ntp.org iburst


# Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for
# details.  The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>
# might also be helpful.
#
# Note that "restrict" applies to both servers and clients, so a configuration
# that might be intended to block requests from certain clients could also end
# up blocking replies from your own upstream servers.

# By default, exchange time with everybody, but don't allow configuration.
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery

# Local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1

# Clients from this (example!) subnet have unlimited access, but only if
# cryptographically authenticated.
#restrict 192.168.123.0 mask 255.255.255.0 notrust


# If you want to provide time to your local subnet, change the next line.
# (Again, the address is an example only.)
#broadcast 192.168.123.255

# If you want to listen to time broadcasts on your local subnet, de-comment the
# next lines.  Please do this only if you trust everybody on the network!
#disable auth
#broadcastclient
1
amn

デフォルトでは、システム時刻が計算された時刻から離れすぎている場合、ntpdは終了します。 (使用する終了コードがわかりません。)構成ディレクティブを追加できますtinker panic 0それが終了するのを防ぐため。

3
Paul Gear