aws
-
AWS solutions Architect Associate 시험 오답노트 5aws 2021. 3. 30. 23:17
1. AWS Lambda - max execution time of 900 seconds(15 minutes) 2. AWS Batch : is used for running large numbers of batch computing jobs on AWS. AWS Batch dynamically provisions the EC2 instances. This is not a good solution for an ad-hoc use case such as this one where you just need to run a single script a few times a week. 3. VPC endpoint(Gateway endpoint) There are two different types of VPC e..
-
AWS Elastic Beanstalk 배포 방법 정리aws 2021. 3. 25. 14:16
Elastic Beanstalk Deploymemt Modes All at once(deploy all in one go) fastest, but instances aren't available to serve traffic for a bit(downtime) Great for quick iterations in development environment 가장 빠르다. 잠깐 서버 다운타임이 생긴다. Rolling update a few instances at a time(bucket), and then move onto the next bucket once the first bucket is healthy Application is running below capacity can set the b..
-
AWS solutions Architect Associate 시험 오답노트 4aws 2021. 3. 16. 23:12
1. io1 Provisioned IOPS SSD(io1) volume: I/O-intensive 작업에 최적화됨. particularly database workloads, that are sensitive to storage performance and consistency 2. two types of actions of S3 Lifecycle 1). Transition actions: 특정 기간 지나면 다른 클래스로 보내기 2). Expiration actions: 객체 지우기 3. KDS(Amazon Kinesis Data Streams) - massively scalable and durable real-time data streaming service. - stream에 더해진 다음 24시간 ..
-
AWS solutions Architect Associate 시험 오답노트 3aws 2021. 2. 27. 10:18
1. SCP(Service control policies) organizaion 권한 관리하는 기능. SCPs offer central control over the maximum available permissions for all accounts in your organization AWS services, resources, individual API actions 에 관한 권한도 관리할 수 있다. organization 내의 user or role 이 특정 IAM permission 을 부여받았어도, SCP가 이를 금지한다면 해당 행동은 금지된다. root user도 SCP의 영향을 받는다. service-linked role은 scp의 영향을 받지 않는다.2. S3 Glacier vault, v..
-
AWS solutions Architect Associate 시험 오답노트 2aws 2021. 2. 21. 16:42
1. EC2 에서 user data, meta data, public-ipv4 가져오는 방법 user data: curl http://169.254.169.254/latest/user-data/ meta data: curl http://169.254.169.254/latest/meta-data/ public-piv4: http://169.254.169.254/latest/meta-data/public-ipv4 2. AWS GLUE AWS Glue is a fully managed extract, transform, and load (ETL) service that makes it easy for customers to prepare and load their data for analytics. Glue ..
-
AWS EC2( Amazon Linux 2)에 git, miniconda 설치하기aws 2021. 2. 15. 15:57
1. git 설치 yum을 이용해서 설치합니다. 딱 두 명령어면 됩니다. yum: Yellow dog Updater. RPM 기반의 시스템을 위한 자동 업데이트 및 패키지 설치/관리 도구 sudo yum update -y sudo yum install git -y 설치한 후에 git version을 입력했을 때, git version 2.23.3 이런 버전 정보가 나오면 잘 설치된 것입니다. 2. miniconda 설치 1) miniconda 공식 사이트(docs.conda.io/en/latest/miniconda.html)에 들어가서 Linux installers를 찾는다. 2) 받으려는 버전에 마우스 우 클릭 해서 '링크 주소 복사'를 한다. 3) wget으로 설치해준다. 아래 명령어를 치면 새로운 ..
-
AWS solutions Architect Associate 오답노트 1aws 2021. 2. 14. 18:25
1. ALB based health check vs EC2 based health check ALB는 ALB based health check만 할 수 있는 반면, ASG는 ALB based health check와 EC2 based health check 둘다 할 수 있다. ALB과 ASG 둘 다 ALB based health check를 사용하길 권장된다. 둘이 다를 경우(ASG가 EC2 based health check를 사용할 경우) 문제가 발생할 수 있다. (ALB는 ec2가 unhealthy하다 판단해서 제외했는데, 정작 ASG는 해당 ec2가 건강하다 생각해서 새로운 ec2를 런칭하지 않는 문제) 2. EBS vloume types EBS volume types는 두 종류로 나뉜다. 1) S..
-
코린이의 AWS Solutions Architect Associate 자격증 취득 발자취aws 2021. 2. 14. 17:41
1. 백그라운드 비전공자 출신 주니어 개발자. EC2, RDS가 뭔지 몰랐고, VPC, IAM 같은건 더더욱 몰랐던 상태에서 부트캠프를 통해 EC2, RDS정도만 얕게 배웠다. 스타트업에 취업해 직접 aws인프라를 다뤄야 하다 보니 필요에 의해 공부 시작. 내친 김에 SAA자격증까지 따보자! 결심하고 본격적으로 시작한지 1주차. 유데미의 아래 강의를 통해 공부중이며, 예전부터 필요한 부분은 짬짬히 들어놓은 상태(50% 정도). www.udemy.com/course/aws-certified-solutions-architect-associate-saa-c02/learn/lecture/18078391?start=75#overview 2. 첫 번째 모의 시험(21.02.14) 오늘 첫 모의 테스트를 봤고 결과는..