web-dev-qa-db-ja.com

ntpdが実行されていません

  • 正しいサーバーが/etc/ntp.confに設定されていることを確認しました
  • そのサーバーにpingを実行できます。
  • それは間違いなくntpパッケージを持っています

    /home/admin# dpkg -s ntp Package: ntp Status: install ok installed

  • しかし、デーモンは実行されていません

    /home/admin# ps wax | grep ntp 21959 pts/0    S+     0:00 grep ntp

  • ステータスチェック

    /home/admin# ntpstat Unable to talk to NTP daemon. Is it running?

  • 再起動しようとすると、これが表示されます

    /home/admin# systemctl start ntpd Failed to start ntpd.service: Unit ntpd.service failed to load: No such file or directory.

次に何を試すべきですか?

2
Roger Mungo

ntpのステータスを確認するには、以下を使用する必要があります。

systemctl status ntp

/etc/ntp.confを変更して、次の方法でサービスを再起動する必要があります。

systemctl restart ntp

ntpstatレポートUnable to talk to NTP daemon. Is it running?ntpサービスを開始するには、次のようにします。

systemctl start ntp

起動時にサービスを開始するには:

systemctl enable ntp
4
GAD3R

私のopensuseタンブルウィードシステムでは、

systemctl start ntp
Unit ntp.service could not be found.

私はntpをntpdに置き換えました、そしてすべてがうまくいきました。

systemctl start ntpd
systemctl enabled ntpd
0
codeDr