LoginSignup
10
11

More than 5 years have passed since last update.

AWS EC2のAmazon Linuxでの時刻設定メモ

Posted at

参考: http://hivecolor.com/id/2

初期状態は

$ data
2015年  7月  9日 木曜日 8:41:12 UST

USTです。9時間前になってます。

これを日本時間にします。

/usr/share/zoneinfo/Japan/etc/localtimeに上書き

$ cp /usr/share/zoneinfo/Japan ./
$ mv Japan localtime
$ sudo mv ./localtime /etc/localtime

確認

$ date
2015年  7月  9日 木曜日 17:41:12 JST

JSTになってます。

10
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11