将本地Debian时间与亚马逊Debian实例(RDS)MDT同步到UTC

时间:2014-04-27 11:31:02

标签: shell datetime amazon-web-services debian

它在我的亚马逊Debian实例上尝试了这个命令

    root@ip-:~# date
    Sun Apr 27 11:26:34 UTC 2014

在我当地的debain实例中,它就像这样

  root@debian:~# date
  Sun Apr 27 16:56:56 MDT 2014

所以现在如何让我的本地debain机器时间与亚马逊实例时间相同

转换

   Sun Apr 27 16:56:56 MDT 2014 ->(to) Sun Apr 27 11:26:34 UTC 2014 this

在我当地的debain machinee

1 个答案:

答案 0 :(得分:1)

手头的时差有两个问题:

  1. 时区 - 您的本地Debian系统正在使用您的本地时区运行,而EC2实例正在使用Coordinated Universal Time (UTC)运行。后者几乎是常态和分别。服务器的最佳做法,您可以通过sudo dpkg-reconfigure tzdata调整本地系统(请参阅Ynhockey对How do I permanently reset the time zone in Debian?的回答)。
  2. 精确度 - 您的一个或两个系统对UTC表现出明显的时钟偏差(两个时间在减去时区偏移后应相同)。如Debian的Network Time Protocol (NTP)中所解释的那样,通过向Set the time automatically安装DateTime守护程序可以轻松解决这个问题,该问题归结为sudo apt-get install ntp并编辑/etc/ntp.conf定位更多local NTP server sources以获得最佳效果。