Centos7 设置每5分钟同步系统时间

在我们本地电脑使用的虚拟机中,经常电脑睡眠导致系统时间总是不正确,从而导致应用程序的时间不正确

下面简单操作几步,让系统定时同步远程时间

先确保同步时间的软件安装了

yum install ntp   # 安装 ntp
ntpdate ntp3.aliyun.com   # 同步时间,这里以阿里云3号服务器为例,你可以根据需要选择其他服务器
date   # 查看时间

在确认同步器安装了

检查系统是否安装了crond

systemctl status crond

如果显示激活状态就不用执行下面操作了,否则进行安装启动

yum install crontabs
systemctl enable crond
systemctl start crond

然后编辑

vim /etc/crontab

在文件的最下方输入下面代码即可

*/5 * * * * root ntpdate ntp3.aliyun.com

Centos7 设置每5分钟同步系统时间_第1张图片

你可能感兴趣的:(网络问题,linux,运维,服务器)