행위

"AWS 클라우드 서비스 이해와 활용 (2일차)"의 두 판 사이의 차이

라이언의 꿀팁백과

 
(같은 사용자의 중간 판 6개는 보이지 않습니다)
31번째 줄: 31번째 줄:
==== '''스택(Stack)''' ====
==== '''스택(Stack)''' ====
A stack is a collection of AWS resources that you can manage as a single unit. In other words, you can create, update, or delete a collection of resources by creating, updating, or deleting stacks.
A stack is a collection of AWS resources that you can manage as a single unit. In other words, you can create, update, or delete a collection of resources by creating, updating, or deleting stacks.
== '''오후 실습''' ==
=== '''AWS Organization''' ===
조직 단위로 AWS 서비스를 관리하고자 할 때, 이용하는 기능.
=== '''AWS 스토리지 서비스''' ===
==== '''Amazon EBS''' ====
블록 수준 스토리지
[[파일:AmazonEBS.png|프레임없음|1000x1000픽셀]]
[[파일:AmazonEBS 2.png|프레임없음|1000x1000픽셀]]
==== '''Amazon S3''' ====
Amazon Simple Storage Service(S3)는 웹 상의 어디서나 언제든지 원하는 양의 데이터를 저장하고 검색할 수 있는 간편한 웹 서비스. 확장 가능한 Object Storage
[[파일:AmazonS3.png|프레임없음|1000x1000픽셀]]
[[파일:AmazonS3 2.png|프레임없음|1000x1000픽셀]]
[[파일:AmazonS3 Lifecycle Policty.png|프레임없음|1000x1000픽셀]]
===== '''VPC Endpoints(S3)''' =====
S3를 Private 하게 사용하고 싶은 경우 사용하는 기능
[[파일:VPC Endpoints S3.png|프레임없음|1000x1000픽셀]]
실습 링크 : https://catalog.workshops.aws/general-immersionday/ko-KR/basic-modules/60-s3/s3
==== '''Amazon EFS''' ====
NFS라고 생각하면 됨
==== '''Amazon S3 Glacier''' ====
아카이브 스토리지
=== '''AWS 데이터베이스 서비스''' ===
==== '''Amazon RDS''' ====
AWS 에서 제공하는 관계형 DB SaaS로 MariaDB, Oracle, MS-SQL, MySQL, PostgreSQL 등을 사용할 수 있음. RDS는 통상 EC2와 EBS로 구성이 되어있음.
==== '''Amazon Aurora''' ====
AWS 에서 직접 만든 관계형 DB. Aurora는 분산형 저장 아키텍처로 만들어져 있음.
=== '''AWS 모니터링 서비스''' ===
==== '''CloudWatch''' ====
AWS 및 온프레미스에서 실시간으로 인프라 및 리스소를 모니터링하는 기능. Amazon CloudWatch  는 DevOps 엔지니어, 개발자, SRE(사이트 안정성 엔지니어) 및 IT 관리자를 위해 구축된 모니터링 및 관찰 기능 서비스입니다.
[[파일:AWS CloudWatch.png|프레임없음|1000x1000픽셀]]
==== '''CloudTrail''' ====
AWS 인프라 전체에 걸쳐 사용자 활동 및 API 요청을 추적할 수 있는 서비스
[[파일:CloudTrail.png|프레임없음|1000x1000픽셀]]
무료 버전은 최대 90일의 기록을 보관함
[[파일:CloudTrail 2.png|프레임없음|1000x1000픽셀]]
==== '''CloudTrail vs. CloudWatch''' ====
[[파일:CloudTrail vs. CloudWatch.png|프레임없음|1000x1000픽셀]]
==== '''AWS Trusted Advisor''' ====
AWS 환경개선을 위한 실시간 권장사항 받기
[[파일:AWS Trusted Advisor.png|프레임없음|1000x1000픽셀]]
==== '''SNS''' ====
AWS 에서 메시지를 전달하고 받을 수 있는 서비스
[[파일:Amazon SNS.png|프레임없음|1000x1000픽셀]]
=== '''오후 실습''' ===
CloudWatch
https://catalog.workshops.aws/general-immersionday/ko-KR/basic-modules/40-monitoring
[[파일:AWS CloudWatch Email.png|프레임없음|1000x1000픽셀]]
[[파일:AWS SNS Email.png|프레임없음|1514x1514픽셀]]

2024년 5월 9일 (목) 16:34 기준 최신판

1 어제 수업 질문 관련[편집 | 원본 편집]

1.1 AWS GWLB 가 무엇인가요?[편집 | 원본 편집]

Gateway Load Balancer외부에서 유입돼는 트래픽과 외부로 나가는 트래픽을 다른 네트워크(VPC)의 게이트웨이 역할로 가상어플라이언스로 라우팅할 수 있도록 해주는 서비스. 이를 구성하기 위한 필수 구성요소는 아래 세 가지다.

  1. GWLB Endpoint
  2. GWLB Endpoint Service
  3. Ingress Route Table


이에 대한 상세 설명은 아래 링크 참고


https://tech.cloud.nongshim.co.kr/2023/03/16/%EC%86%8C%EA%B0%9C-vpc-endpoint%EB%9E%80/

https://kim-dragon.tistory.com/167

2 오전 실습[편집 | 원본 편집]

2.1 IAM[편집 | 원본 편집]

https://catalog.workshops.aws/general-immersionday/ko-KR/basic-modules/30-iam

2.2 오토스케일링[편집 | 원본 편집]

2.2.1 관련자료[편집 | 원본 편집]

https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html

2.3 CloudFormation(클라우드포매이션)[편집 | 원본 편집]

AWS CloudFormation is a service that helps you model and set up your AWS resources so that you can spend less time managing those resources and more time focusing on your applications that run in AWS. You create a template that describes all the AWS resources that you want (like Amazon EC2 instances or Amazon RDS DB instances), and CloudFormation takes care of provisioning and configuring those resources for you. You don't need to individually create and configure AWS resources and figure out what's dependent on what;

2.3.1 스택(Stack)[편집 | 원본 편집]

A stack is a collection of AWS resources that you can manage as a single unit. In other words, you can create, update, or delete a collection of resources by creating, updating, or deleting stacks.

3 오후 실습[편집 | 원본 편집]

3.1 AWS Organization[편집 | 원본 편집]

조직 단위로 AWS 서비스를 관리하고자 할 때, 이용하는 기능.

3.2 AWS 스토리지 서비스[편집 | 원본 편집]

3.2.1 Amazon EBS[편집 | 원본 편집]

블록 수준 스토리지

AmazonEBS.png

AmazonEBS 2.png

3.2.2 Amazon S3[편집 | 원본 편집]

Amazon Simple Storage Service(S3)는 웹 상의 어디서나 언제든지 원하는 양의 데이터를 저장하고 검색할 수 있는 간편한 웹 서비스. 확장 가능한 Object Storage


AmazonS3.png

AmazonS3 2.png

AmazonS3 Lifecycle Policty.png

3.2.2.1 VPC Endpoints(S3)[편집 | 원본 편집]

S3를 Private 하게 사용하고 싶은 경우 사용하는 기능


VPC Endpoints S3.png


실습 링크 : https://catalog.workshops.aws/general-immersionday/ko-KR/basic-modules/60-s3/s3


3.2.3 Amazon EFS[편집 | 원본 편집]

NFS라고 생각하면 됨


3.2.4 Amazon S3 Glacier[편집 | 원본 편집]

아카이브 스토리지


3.3 AWS 데이터베이스 서비스[편집 | 원본 편집]

3.3.1 Amazon RDS[편집 | 원본 편집]

AWS 에서 제공하는 관계형 DB SaaS로 MariaDB, Oracle, MS-SQL, MySQL, PostgreSQL 등을 사용할 수 있음. RDS는 통상 EC2와 EBS로 구성이 되어있음.

3.3.2 Amazon Aurora[편집 | 원본 편집]

AWS 에서 직접 만든 관계형 DB. Aurora는 분산형 저장 아키텍처로 만들어져 있음.


3.4 AWS 모니터링 서비스[편집 | 원본 편집]

3.4.1 CloudWatch[편집 | 원본 편집]

AWS 및 온프레미스에서 실시간으로 인프라 및 리스소를 모니터링하는 기능. Amazon CloudWatch  는 DevOps 엔지니어, 개발자, SRE(사이트 안정성 엔지니어) 및 IT 관리자를 위해 구축된 모니터링 및 관찰 기능 서비스입니다.


AWS CloudWatch.png

3.4.2 CloudTrail[편집 | 원본 편집]

AWS 인프라 전체에 걸쳐 사용자 활동 및 API 요청을 추적할 수 있는 서비스


CloudTrail.png

무료 버전은 최대 90일의 기록을 보관함


CloudTrail 2.png


3.4.3 CloudTrail vs. CloudWatch[편집 | 원본 편집]

CloudTrail vs. CloudWatch.png


3.4.4 AWS Trusted Advisor[편집 | 원본 편집]

AWS 환경개선을 위한 실시간 권장사항 받기


AWS Trusted Advisor.png


3.4.5 SNS[편집 | 원본 편집]

AWS 에서 메시지를 전달하고 받을 수 있는 서비스


Amazon SNS.png

3.5 오후 실습[편집 | 원본 편집]

CloudWatch

https://catalog.workshops.aws/general-immersionday/ko-KR/basic-modules/40-monitoring


AWS CloudWatch Email.png

AWS SNS Email.png