본문 바로가기

AWS_BASIC7

# CodeDeploy, System Manager (SSM), OpsWorks #CodeDeploy -Also way for deploying application automatically. -Work with EC2 Instances -Work with On-premises servers version 1 -> version 2 (automatically) #System Manger (SSM) -Helps you manage your EC2 and On-Premises system at scale -Another Hybrid AWS service Most important features are -Patching automation for enhanced compliance -Run commands across an entire fleet of servers -Store para.. 2020. 12. 21.
# CloudFormation , Beanstalk #CloudFormation -Declarative way of outlining your AWS Infrastructure(as a code) AWS 에서 사용할 클라우드 서비스를 코드로 정의 하여 템플릿을 만들수 있다. ex --- Resources: MyInstance: Type: AWS::EC2::Instance Properties: AvailabilityZone: us-east-1a ImageId: ami-a4c7edb2 InstanceType: t2.micro 그 템플렛을 사용하면 바로 클라우드 서비스를 적절한 order 로 만들수 있다 또한 언제 EC2 인스턴스를 삭제 할건지도 정할수 있다. View in Designer 를 통해 만들어질 클라우드 구조를 다이어그램으로 확인할수 있다. 전부 .. 2020. 12. 21.
#4 ECS @시작하기 전 Docker 란 무엇인가? Docker is software development platform to deploy apps Apps 은 'containers' 라고 불리는데 저장되고, 어떠한 OS 에서도 실행이 가능하다. Apps are the same, regardless of where they're run. -no compability(호환성) issue. -containers 스케일 조정 매우 쉬움 AWS 에서 Docker를 사용할수 있다. 바로 'ECS' #Elastic Container Service (시험나옴) -Lunch docker container on AWS -사용하기 위해선 EC2 instance 를 먼저 만들어야됨 ----------------------------.. 2020. 12. 19.
#3 Database - Various Amazon DB functions 1.ElasicCache(In memory) "Amazon ElstiCache는 in-memory caching을 관리하고 setup하는 것을 간단하게 만들어주는 웹서비스이다" caching 이란 개념을 모르겠다. 찾아보니 Caches are in-memory database with high performance, low latency " 많은 사람들이 B라는 데이터를 조회한다고 예상했을 때 이 B데이터 조회 결과값을 캐싱(메모리)에 올려놓고 다음 사람이 조회했을 경우 데이터베이스에 직접 가지 않고 결과값을 바로 내려주는 것을 뜻한다." "ElastiCache는 주로 데이터베이스의 처리 결과를 메모리(RAM)에 저장했다가 다음 요청시에 저장된 결과를 반환하는 것을 통해서 에플리케이션을 빠르게 구동할 수.. 2020. 11. 20.