美文网首页
Linux下配置自动更新时间

Linux下配置自动更新时间

作者: 程序员的自我修养 | 来源:发表于2020-05-27 08:52 被阅读0次

    1,修正本地时区及ntp服务

    [root@VM_0_13_centos~]# yum -y install ntp

    [root@VM_0_13_centos~]# rm -rf /etc/localtime

    [root@VM_0_13_centos~]# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

    [root@VM_0_13_centos~]# /usr/sbin/ntpdate -upool.ntp.org

    2,自动同步时间

    #添加下面一段#表示每10分钟同步一次

    [root@VM_0_13_centos~]# crontab -e

    */10 * * * * /usr/sbin/ntpdate-upool.ntp.org>/dev/null2>&1

    [root@VM_0_13_centos~]# service crond restart #重启

    [root@VM_0_13_centos~]# date #查看时间

    相关文章

      网友评论

          本文标题:Linux下配置自动更新时间

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