- 已确认配置了正确的服务器
/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
答案2
在我的 opensuse tumbleweed 系统上,我得到
systemctl start ntp
Unit ntp.service could not be found.
我用 ntpd 替换了 ntp,一切正常。
systemctl start ntpd
systemctl enabled ntpd