码迷,mamicode.com
首页 > 其他好文 > 详细

centos7 自动同步时间

时间:2019-12-11 13:13:53      阅读:453      评论:0      收藏:0      [点我收藏+]

标签:同步时间   word   nbsp   key   str   time   start   dev   crontab   

rm -rf /etc/localtime

ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

vim /etc/sysconfig/clock

ZONE="Asia/Shanghai"
UTC=false
ARC=false
 
 
yum install -y ntp
systemctl start ntpd
systemctl enable ntpd
 
vim /etc/rc.d/rc.local
/usr/sbin/ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w
 
crontab -e
0 */1 * * * ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w

centos7 自动同步时间

标签:同步时间   word   nbsp   key   str   time   start   dev   crontab   

原文地址:https://www.cnblogs.com/maxuebin/p/12021706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!