centos7 查看启动ntp服务命令
1. 查看ntp服务命令:
systemctl status ntpd
可以看到状态为:inactive,也就是没有启动ntp服务
2. 启动ntp服务命令并查看状态:
systemctl start ntpd
systemctl status ntpd
可以看到此时ntp状态为active,也就是成功启动了ntp服务
3. 设置开启自启动ntp服务:
systemctl enable ntpd
systemctl status ntpd
可以看到状态为:inactive,也就是没有启动ntp服务
systemctl start ntpd
systemctl status ntpd
可以看到此时ntp状态为active,也就是成功启动了ntp服务
systemctl enable ntpd