centos服务器从阿里云同步时间

  1. 安装ntpdate

    yum -y install ntpdate
    
  2. 同步一次时间

    ntpdate ntp1.aliyun.com
    
  3. 使用定时任务同步时间

    编辑定时任务:

    crontab -e
    

    添加定时任务:

    */10 * * * * ntpdate ntp1.aliyun.com
    

    查看定时任务:

    crontab -l
    
  4. 查看当前服务器时间

    date -R
    

你可能感兴趣的:(服务器,centos,阿里云)