美文网首页
linux同步网络时间

linux同步网络时间

作者: 平面小狮子 | 来源:发表于2019-07-24 19:21 被阅读0次
  • 下载安装ntpdate,执行以下命令
    yum -y install ntpdate

  • 手工同步网络时间,执行以下命令,将从指定的服务器上同步时间
    ntpdate 0.asia.pool.ntp.org

    如果不行的话,换以下地址试试。
    time.nist.gov

    time.nuri.net

    0.asia.pool.ntp.org

    1.asia.pool.ntp.org

    2.asia.pool.ntp.org

    3.asia.pool.ntp.org

  • 使用crontab计划任务定时更新网络时间,修改crontab文件,在末尾增加
    * */1 * * * ntpdate 0.asia.pool.ntp.org
    每隔1小时同步一次时间。
    编辑命令 vim /etc/crontab

修改crontab
  • 使用date命令查看
    [root@localhost ~]# date
    2019年 07月 24日 星期三 19:13:29 CST
  • 系统时间同步到硬件,防止系统重启后时间被还原
    hwclock --systohc

相关文章

网友评论

      本文标题:linux同步网络时间

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