본문 바로가기

Infra/AWS

[AWS] EC2

728x90

EC2는 대표적인 AWS 서버이다.

내 마음대로 세팅하고 설정하기에 좋다.

 

사용자 데이터

- 사용자 데이터를 세팅할 수 있는데, 이는 처음에 EC2를 셋업할 때 도는 스크립트이다.

 

인스턴스 타입

- 많은 타입이 있는데, 시리즈, 세대, 사이즈로 구성된 네이밍을 가지고 있다.

 

방화벽

- 허용 규칙과 보안 그룹을 통해 보호한다. (포트나 IP 규칙 사용)

- 인바운드: 들어오는 요청

- 아웃바운드: 나가는 요청

- 보안 그룹에 의해 요청이 오래 걸리는 지, 거부 당하는 지 잘 파악해야함.

- EC2끼리 통신할 때, IP말고 참조걸어서 보안그룹으로 바로 뚫을 수 있음.

 

포트 정보

 

SSH

- https://developer-mom.tistory.com/5 참고해서 세팅함

- instance connector를 사용하면 웹기반에서 인스턴스에 접근 가능

- IAM 인증 정보를 EC2에 넣지 말기!

 

가격정책


On demand: coming and staying in resort whenever we like, we pay the full price

Reserved: like planning ahead and if we plan to stay for a long time, we may get a good discount.

Savings Plans: pay a certain amount per hour for certain period and stay in any room type (e.g., King, Suite, Sea View, …)

Spot instances: the hotel allows people to bid for the empty rooms and the highest bidder keeps the rooms. You can get kicked out at any time

Dedicated Hosts: We book an entire building of the resort

Capacity Reservations: you book a room for a period with full price even you don’t stay in it

 

데이터베이스 기술을 EC2 인스턴스에 배포하려 합니다. 공급 업체 라이선스는 물리적 코어 및 기반 네크워크 소켓 가시성를 기반으로 비용을 책정합니다. 이 경우, 어떤 EC2 구매 옵션을 사용해야 가시성을 확보할 수 있을까요?

- 전용 호스트

 

스팟 플릿은 한 세트의 스팟 인스턴스로, 선택적 ..............입니다.

- 온디맨드 인스턴스

 

배치 그룹

 Cluster—clusters instances into a low-latency group in a single Availability Zone

Spread—spreads instances across underlying hardware (max 7 instances per group per AZ)

Partition—spreads instances across many different partitions (which rely on different sets of racks) within an AZ. Scales to 100s of EC2 instances per group (Hadoop, Cassandra, Kafka)

300x250

'Infra > AWS' 카테고리의 다른 글

[AWS] ELB & ASG  (0) 2023.09.13
[AWS] EBS & AMI & EFS  (0) 2023.09.12
[AWS] ENI  (0) 2023.09.09
[AWS] Budgets  (0) 2023.09.01
[AWS] IAM  (0) 2023.02.22