美文网首页
Linux 配置时间校准服务器

Linux 配置时间校准服务器

作者: 小肥肥哒 | 来源:发表于2018-09-01 13:43 被阅读0次

    1. yum install -y ntp

    2. /usr/sbin/ntpdate -u 10.199.XXX.XXX && /sbin/clock --systohc

        如果在ntpdate同步时间的时候出现“the NTP socket is in use, exiting”错误,需要执行/etc/init.d/ntpd stop

    3. 加入定时任务

        crontab -e 写入 30 5 * * * root /usr/sbin/ntpdate -u 10.199.XXX.XXX && /sbin/clock --systohc

    #每天5点半同步时间,clock --systohc是硬盘时间同步系统时间的意思。

    相关文章

      网友评论

          本文标题:Linux 配置时间校准服务器

          本文链接:https://www.haomeiwen.com/subject/ccdewftx.html