Linux时间同步

Linux Distribution:Fedora19

使用ntpdate命令从网络上同步时间至本地服务器

ntpdate - set the date and time via NTP(Network Time Protocol)

需要注意的是ntpdate命令需要root权限

[root@fedora1 ~]# ntpdate asia.pool.ntp.org
25 Jul 21:59:36 ntpdate[2048]: adjust time server 157.7.154.23 offset -0.001600 sec

将该命令加入crontab定时任务,即可定时进行时间同步

[root@fedora1 ~]# crontab -l
* * * * * /usr/sbin/ntpdate asia.pool.ntp.org >> /root/syn_time.log
[root@fedora1 ~]# cat syn_time.log 
25 Jul 22:39:09 ntpdate[4191]: adjust time server 27.114.150.11 offset -0.010689 sec

 

你可能感兴趣的:(linux,linux时间同步)