Ntpd
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.
接下來應該嘗試什麼?
要檢查
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.
我用ntpd替換了ntp,一切正常。
systemctl start ntpd systemctl enabled ntpd