centos7 時間自動同步

設置開機自動同步Internet時間,並做定時同步任務
一、修改時區java

rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
vim /etc/sysconfig/clock
ZONE="Asia/Shanghai"
UTC=false
ARC=false

二、安裝並設置開機自啓vim

yum install -y ntp
systemctl start ntpd
systemctl enable ntpd

三、配置開機啓動校驗blog

vim /etc/rc.d/rc.local
/usr/sbin/ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w

四、配置定時任務crontab

crontab -e
0 */1 * * * ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w
相關文章
相關標籤/搜索