- 正しいサーバーが構成されていることを確認しました。
/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.
次は何を試すべきですか?
ベストアンサー1
状態を確認するには、以下を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