일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- FastAPI
- Python
- IAC
- asgi
- github
- AWS
- asyncio
- IAM
- intervals
- POD
- Deployment
- ansible
- docker
- DevOps
- Service
- K8S
- event loop
- ebs
- elasticsearch
- terraform
- WSGI
- 자바스크립트
- leetcode
- Django
- dockerfile
- YAML
- Kubernetes
- EC2
- EKS
- 쿠버네티스
- Today
- Total
목록EC2 (5)
궁금한게 많은 개발자 노트
[ EC2 Instance Store ] EBS Volume은 좋지만 제한된 성능을 가진 network drive입니다. 이에 더 고성능 hardware disk를 사용하고 싶은 경우 EC2 Instance Store를 이용할 수 있습니다. (즉, 특별한 유형의 EC2 instance는 실제 물리적 서버에 연결된 hardware(hard drive)인 EC2 instance store를 활용) 높은 disk 성능, thoroughput, I/O 성능 개선 중요한 점으로는 EC2 instance store를 가진 EC2 instance를 멈추거나 종료하면 storage는 손실됩니다. 즉, durable long term place에는 적합하지 않고, 임시 저장소로 활용이 됨 (buffer, cache, s..
[ Purchasing Options ] On-Demand Instances:good for short workloads, predictable pricing, pay by second Linux or Windows : 1분이 지나고 매 초마다 지불, 다른 운영체제들은 시간으로 지불 선불 결제가 없는 대신, 높은 금액 지불, No long-term commitment Recommended for short-term and un-interrupted workloads, where you can't predict how the application will behave Reserved Instances (1 & 3 years): run database for a long time, long workloads..
Cloud위에서 동작하는 Server에 접속하는 방법으로는 SSH(Secure Shell)을 사용할 수 있습니다. 컴퓨터에 설치된 OS에 따라 다른 방법으로 SSH를 통해 접속할 수 있습니다. 일반적으로 Mac, Linux, Windows 10버전 이상에서는 SSH가 사용가능하며, Windows 10버전 이하에서는 putty를 사용합니다. AWS 웹상에서 EC2 Instance Connect를 사용할 수도 있습니다. (모든 OS에서 사용 가능) SSH 접속은 EC2 instance의 Security Group의 inbound rule을 SSH접속이 가능하도록 설정해야 합니다. ex) Inbound rule Type:SSH, Protocol:TCP, Port range:22, Source: Anywhere..
Security Groups: AWS내에서 네트워크 보안의 기본이며, 트래픽이 어떻게 EC2 instance들에게 들어오고 나가는지를 제어할 수 있습니다. Security Groups는 오직 allow rules로 구성되어 있습니다.(무엇이 오고 나가는지에 대한 규칙) 또한, Security Groups rules는 IP또는 security group를 참조할 수 있습니다. 서로 참조 가능. firewall과 같은 기능으로, EC2 instance로 들어가고 나가는 트래픽들에 대한 규칙을 적용할 수 있습니다. Security Groups regulate: - Port들에 대한 접근 - 승인된 IP 범위 (IPv4, IPv6) - inbound network 제어 (외부에서 instance로의) - out..
EC2: Elastic Compute Cloud = infrastructure as a Service AWS Service들중 가장 많이 사용되는 service이다. 단지 하나의 서비스인 것이 아니라, 여러 것들의 복합 서비스이다. 주로 다음과 같은 기능들로 구성됩니다. Renting virtual machines (EC2) Stroring data on virtual drives (EBS: Elastic Block Store) Distribute load across machines(ELB: Elastic Load Balancer) Scale service using an auto-scaling group or ASG(Auto Scaling Groups) 즉, EC2를 이해하는 것은 클라우드의 동작 방..