Ubuntu Serverのタイムゾーンを日本時間(JST)に変更する

これはなに Link to this heading

Ubuntu Serverのタイムゾーンを日本時間(JST)に変更する方法のメモ。

環境 Link to this heading

  • Ubuntu Server 24.04.3 LTS

設定手順 Link to this heading

現在のタイムゾーンは以下コマンドで確認できる。

timedatectl

出力例は以下のとおり。初期設定ではUTCになっている。

$ timedatectl
               Local time: Thu 2025-08-14 03:35:56 UTC
           Universal time: Thu 2025-08-14 03:35:56 UTC
                 RTC time: Thu 2025-08-14 03:35:56
                Time zone: Etc/UTC (UTC, +0000)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no

日本時間(JST)に変更するには、以下のコマンドを実行する。

sudo timedatectl set-timezone Asia/Tokyo

実行した後、設定されたかを以下のコマンドで確認する。

timedatectl

出力例は以下のとおり。きちんと日本時間(JST)になっている。

$ timedatectl
               Local time: Thu 2025-08-14 12:36:07 JST
           Universal time: Thu 2025-08-14 03:36:07 UTC
                 RTC time: Thu 2025-08-14 03:36:07
                Time zone: Asia/Tokyo (JST, +0900)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no
Licensed under CC BY-NC-SA 4.0
最終更新 8月 24, 2025
Hugo で構築されています。
テーマ StackJimmy によって設計されています。