centos7 时间同步

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 时间同步相关的知识,希望对你有一定的参考价值。

设置开机自动同步Internet时间,并作定时同步任务
1、修改时区

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

2、安装并设置开机自启

yum install -y ntp
systemctl start ntpd
systemctl enable ntpd

3、配置开机启动校验

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

4、配置定时任务

crontab -e
0 */1 * * * ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w

以上是关于centos7 时间同步的主要内容,如果未能解决你的问题,请参考以下文章

#VSCode保存插件配置并使用 gist 管理代码片段

多线程 Thread 线程同步 synchronized

CentOS7 的时间同步方法

Linux杂记-配置ntp时间同步服务

centos7上使用chrony自动同步时间

canal+kafka实现mysql与redis数据同步(centos7)