0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AWS EC2サーバ AMIでタイムゾーンをUTCからJSTへ変更する。

Last updated at Posted at 2022-06-08

サーバータイムの確認

# date

clockファイルが存在するか確認

# ls /usr/share/zoneinfo/

localtime変更

# cp -p /usr/share/zoneinfo/Japan /etc/localtime

# vim /etc/sysconfig/clock
ZONE="Asia/Tokyo"
UTC=False

ZONE=システムクロックタイムゾーンを指定
UTC=ハードウェアクロック(ハードウェアに内蔵されている時計)をUTCにするか否かを指定。true→ハードウェアクロックがUTCになります。 false→ハードウェアクロックがローカルタイムになります。

確認

# date

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?