linux下实现时间同步

ntp方式

1.首先安装时间同步工具

[root@backup ~]# 
[root@backup ~]# yum -y install  ntpdate
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com


2.安装好后执行同步命令

注:采用阿里的时间同步服务器

[root@backup ~]# ntpdate ntp1.aliyun.com

同步完成

3.把同步命令加入定时任务

#每天凌晨12点整完成一次同步
00 00 * * *  ntpdate ntp1.aliyun.com &>/dev/null

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