场景

Linux(Centos)上使用crontab实现定时任务(定时执行脚本):

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/134576630

Winserver上如何配置和开启NTP客户端进行时间同步:

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/135220767

在Centos上如何进行手动同步时间和定时任务自动同步时间。

注:

博客:
https://blog.csdn.net/badao_liumang_qizhi

实现

1、确保服务上已经安装ntpdate,一般会自带

查找ntpdate的路径

which ntpdate

2、手动进行一次时间同步

/usr/sbin/ntpdate  -u 授时服务器ip

 

其中-u参数用于以UDP方式发送NTP请求,而不是默认的TCP方式,可以避免NTP服务器对TCP端口进行了封锁而无法进行同步。

3、添加到定时任务中定期自动进行时间同步

*/10 * * * * /usr/sbin/ntpdate  -u 授时服务器ip

 

posted on 2024-02-19 10:03  霸道流氓  阅读(155)  评论(0编辑  收藏  举报