84

我想将运行 Ubuntu Linux 的 Amazon EC2 实例中设置的时区更改为本地时间?

我的问题

如何更改 Amazon EC2 中的时区?

4

12 回答 12

87

它应该与您的桌面 Ubuntu 进程没有什么不同。看这里

  1. SSH 到您的 EC2 服务器
  2. 执行以下(将时区设置为Australia/Adelaide

    $ echo "Australia/Adelaide" | sudo tee /etc/timezone
    Australia/Adelaide
    $ sudo dpkg-reconfigure --frontend noninteractive tzdata
    
    Current default time zone: 'Australia/Adelaide'
    Local time is now:      Sat May  8 21:19:24 CST 2010.
    Universal Time is now:  Sat May  8 11:49:24 UTC 2010.
    

更新

您可以使用tzselect实用程序浏览。见这里: http: //manpages.ubuntu.com/manpages/precise/man1/tzselect.1.html

这是一个交互式软件。我的 Ubuntu (11.10) 有它。

您也可以参考这篇维基百科文章

巴西

Brazil/Acre
Brazil/DeNoronha
Brazil/East
Brazil/West
于 2012-08-13T09:55:58.593 回答
71

另一种更改时间的方法(这是在 Amazon EC2 Linux 实例上完成的)

删除本地时间文件

sudo rm /etc/localtime

将目录更改为 ZoneInfo

cd /usr/share/zoneinfo

此文件夹包含所有时区信息。然后,您只需软链接到适当的区域。

创建到 /etc/localtime 的软链接

sudo ln -s /usr/share/zoneinfo/GB /etc/localtime

这会将您的服务器时区更改为 GB

于 2013-05-31T07:58:15.670 回答
58

通过以下方式检查您当前的时区

$ date

要更改它,请运行

$ sudo dpkg-reconfigure tzdata

这将显示地理区域列表。选择以缩小可用时区的范围。接下来选择城市/时区。而且您已将系统更改为新时区。

于 2016-05-20T19:12:50.247 回答
18

aws文档中提供了有关更改 ec2 机器中时区的信息。请在下面找到详细信息:

更改时区

Amazon Linux 实例默认设置为 UTC(协调世界时)时区,但您可能希望将实例上的时间更改为本地时间或网络中的另一个时区。

更改实例的时区

1.确定要在实例上使用的时区。/usr/share/zoneinfo 目录包含时区数据文件的层次结构。浏览该位置的目录结构以查找您所在时区的文件。

[ec2-user ~]$ ls /usr/share/zoneinfo
Africa      Chile    GB         Indian       Mideast   posixrules  US
America     CST6CDT  GB-Eire    Iran         MST       PRC         UTC
Antarctica  Cuba     GMT        iso3166.tab  MST7MDT   PST8PDT     WET
Arctic      EET      GMT0       Israel       Navajo    right       W-   SU
...

此位置的某些条目是目录(例如 America),这些目录包含特定城市的时区文件。查找要用于实例的城市(或您所在时区的城市)。在此示例中,您可以使用洛杉矶的时区文件 /usr/share/zoneinfo/America/Los_Angeles。

2.使用新时区更新 /etc/sysconfig/clock 文件。

a. 使用您喜欢的文本编辑器(例如 vim 或 nano)打开 /etc/sysconfig/clock 文件。您需要在编辑器命令中使用 sudo,因为 /etc/sysconfig/clock 归根用户所有。

b.找到 ZONE 条目,并将其更改为时区文件(省略路径的 /usr/share/zoneinfo 部分)。例如,要更改为洛杉矶时区,请将 ZONE 条目更改为以下内容。

ZONE="America/Los_Angeles"

c.保存文件并退出文本编辑器。

3.在/etc/localtime和你的时区文件之间建立一个符号链接,以便实例在引用本地时间信息时找到时区文件。

[ec2-user ~]$ sudo ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime

4.重新启动系统以在所有服务和应用程序中获取新的时区信息。

[ec2-user ~]$ sudo reboot
于 2015-10-02T04:33:12.890 回答
11

上述步骤都不适合我,所以想在这里写下这个新答案

# Delete any existing localtime link
sudo rm /etc/localtime
# Update time clock file with ZONE property
sudo vi /etc/sysconfig/clock
#Update the ZONE property to what you want say
ZONE="America/Los_Angeles"
sudo ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
sudo reboot
于 2014-06-01T03:52:09.017 回答
8

Ubuntu 16.04 的更新答案:

做:

sudo timedatectl set-timezone America/New_York

更新您的时区。

要列出您可以执行的所有可用时区:

timedatectl list-timezones
于 2018-07-03T00:26:08.517 回答
7

来自 RHEL 7 管理员指南

似乎这可能是 REDHAT7 上的命令

timedatectl set-timezone "Europe/Stockholm"

要获取所有可用时区类型:

timedatectl list-timezone

有关更多信息,请使用

man timedatectrl
于 2017-04-26T07:28:51.270 回答
7

在目录中找到您的时区/usr/share/zoneinfo/

例如更改多伦多的时区/usr/share/zoneinfo/America/Toronto

将您的时区符号链接到/etc/localtime例如多伦多:

sudo ln -sf /usr/share/zoneinfo/America/Toronto /etc/localtime

重启完成

reboot
于 2018-04-08T18:20:39.330 回答
1

在下面的链接中有很好的描述

https://askubuntu.com/questions/3375/how-to-change-time-zone-settings-from-the-command-line/594186#594186?s=8f7d09598b2246629a70bb1928501f52

e:g- sudo timedatectl set-timezone Asia/Kolkata

于 2019-11-02T05:41:01.620 回答
0

注意:这是指应在您的 AWS 启动配置“用户数据”下使用 linux 机器(在我的实例中为 debian)。

如果您打算在下面的实例引导上设置 TIMEZONE(就像魅力一样),请使用您自己的国家/城市而不是“澳大利亚/悉尼”。

#!/bin/bash

/bin/rm -f /etc/localtime; /bin/ln -s /usr/share/zoneinfo/Australia/Sydney /etc/localtime
于 2017-05-02T04:02:40.937 回答
0

当您创建一个新的 EC2 实例并选择“Amazon Linux 2 AMI (HVM)”作为 Amazon 系统映像 (AMI) 时,您可以在“用户数据”部分插入这些行。根据您所在的地区,将第二行更改为适合您的时区。我在中欧时间 (CET)。请记住,此引导代码以 root 身份执行,并且仅在创建实例时执行一次。

#!/bin/bash
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/CET /etc/localtime

如果您想查看所有其他可用时区,请 ssh 到一个实例并运行:

ls /usr/share/zoneinfo
于 2019-07-17T08:26:24.347 回答
0

对于红帽或 CentOS:

检查时间:

timedatectl status

列出所有可用的时区:

timedatectl list-timezones

设置您的时区:

sudo timedatectl set-timezone Europe/Paris

于 2022-02-28T13:56:16.140 回答