AWS
2/9:
Create a user account on IAM.
2/16: S.34
Skip IAM, Jump into EC2 directly.
2/17: S.43
Enalbe a EC2 with userdata, the implement is similiar as openstack.
2/18: S.45
Spot instance
2/21: S.54
3/11 s.68
4/16 s.109
EC2, SMS, SQS, kenisis
coding : python practice : range, lambda, class, map
system design questions : educative system design
Sharp behavior interview questions
——————> ELK
——————> CloudWatch
EKS
LB ——> Route 53 ——> VPC —————— > ECS
(Direct connect)
(可能會接到外面)
——————> RDS
——————> S3
security group = firewall
ELB = load balancer
EBS = ceph
Route53 = DNS
S3 = sotrage –> 當 cache 用
RDS = DB
ECS, EKS = K8S and docker
VPC = Private cloud
SQS = Queue –-> 可以拿來跑測試, 或者是處理大量的 task
CloudWatch = prometheus and alertmanager
lamda ?
Elastic cache ?
Radis ?
SDK = 重要
glacier = ?
Athena = splunk or elastic search ??
Tag = ?
EC2 = VM
DDB = no SQL DB
SNS = 發送訊息到各種裝置
cloudformation = 可以產生 template 快速 clone 一個系統
#!/bin/bash
# Use this for your user data (script from top to bottom)
# install httpd (Linux 2 version)
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo "<h1>Hello World from $(hostname -f)</h1>" > /var/www/html/index.html
/constent