1
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?

EC2 サーバー構築(基本設定)

Last updated at Posted at 2021-02-25

EC2 サーバー構築

概要

EC2インスタンスを初期構築する際に行うことをまとめてみました。
不定期ですが、更新する予定です。

環境

項目
AMI名 al2023-ami-2023.4.20240611.0-kernel-6.1-arm64
インスタンスタイプ t4g.small

システム設定

パッケージ更新

sudo dnf -y update

タイムゾーン・ロケール設定

タイムゾーン確認

timedatectl status

タイムゾーンを日本時間に設定

sudo timedatectl set-timezone Asia/Tokyo

ロケール確認

localectl status

ロケール変更

sudo localectl set-locale LANG=ja_JP.UTF-8

ホスト名設定

現在の設定

[ec2-user@ip-10-0-10-255 ~]$ hostnamectl status --static
ip-10-0-10-255.ap-northeast-1.compute.internal

設定変更

[ec2-user@ip-10-0-10-255 ~]$ sudo hostnamectl set-hostname app01

設定確認

[ec2-user@ip-10-0-10-255 ~]$ hostnamectl status --static
app01

一度SSH接続を切って、再度SSH接続してみてください。
コンソールが指定したものに変わっていればOKです。

[ec2-user@app01 ~]$
1
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
1
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?