/etc/ntp.conf
に設定されていることを確認しましたそれは間違いなく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.
次に何を試すべきですか?
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
私のopensuseタンブルウィードシステムでは、
systemctl start ntp
Unit ntp.service could not be found.
私はntpをntpdに置き換えました、そしてすべてがうまくいきました。
systemctl start ntpd
systemctl enabled ntpd