1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ELB+EC2で複数台構成の環境を作成してみる(1)

Last updated at Posted at 2024-03-16

流れ

  1. VPCを作成する
  2. サブネットを作成する
  3. インターネットゲートウェイとルートテーブルを利用して、サブネットからインターネットにアクセスできるようにする
  4. サブネット内にEC2を複数台配置する
  5. 上記のEC2をターゲットグループにまとめる
  6. ELBを作成して上記のターゲットグループを設定する

VPCを作成する

demo

IPV4 CIDRは『10.0.0.0/24』にしておく

サブネットを作成する

VPC内に2つのサブネットを作成する(AZも異なるものにしておく)

サブネット1(10.0.0.0/25)
demo

サブネット2(10.0.0.128/25)
demo

インターネットゲートウェイを作成して、VPCにアタッチする

作成
demo

アタッチ
demo

ルートテーブルを作成する

demo
ルートの編集からインターネットゲートウェイのルートを追加する
demo
今回作成したサブネットを明示的なサブネットの関連付けにつけておく
demo

EC2を作成する

名前やキーなどは任意なものを設定して、
ネットワーク設定の部分を下記のようにする
demo
demo

参考記事
https://recipe.kc-cloud.jp/archives/35/
https://dev.classmethod.jp/articles/creation_vpc_ec2_for_beginner_1/#toc-11
https://docs.aws.amazon.com/ja_jp/vpc/latest/userguide/subnet-sizing.html

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?