美文网首页
服务器同步时间篇

服务器同步时间篇

作者: 山间草夫 | 来源:发表于2020-11-01 12:41 被阅读0次

    最近发现自己的服务器时间变成了 EDT , 这个是美国东部夏令时间. 那么如何将服务器的时间变成中国的时间,并且同步呢.

    1. 安装 centos 的时间同步工具
    yum -y install ntp
    
    1. 如果机器的时区不是中国时区需要重新设置时区
    mv /etc/localtime /etc/localtime.bak
    ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
    
    1. 执行同步命令
    同步淘宝的时间服务
    ntpdate ntp1.aliyun.com 
    
    1. 修改服务器映射到我们系统的时间,ok;
    hwclock --systohc
    
    1. 增加定时任务同步时间
    crontab -e  进入定时任务 ,  每隔10分钟同步一次系统时间
    */10 * * * *  /usr/sbin/ntpdate  ntp1.aliyun.com  
    

    路过点赞, 月薪10W

    相关文章

      网友评论

          本文标题:服务器同步时间篇

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