Centos同步网络时间

centos系统同步网络时间

  • 安装ntpdate程序

    yum install -y ntpdate

  • 同步

    ntpdate cn.pool.ntp.org

  • 设置系统时区为shanghai

    timedatectl set-timezone Asia/Shanghai

  • 可编写为脚本定时执行

    1. 脚本示例(/home/syncTime.sh)
    #!/bin/bash
    
    ntpdate cn.pool.ntp.org
    
    timedatectl set-timezone Asia/Shanghai
    
    1. 赋予可执行权限

    chmod +x /home/syncTime.sh

    1. 创建crontab定时任务 crontab -e
    0 * * * * /home/syncTime.sh  //每月每天每小时的第 0 分钟执行一次同步
    

你可能感兴趣的:(Linux)