+4

14 lệnh hay dùng của Amazon AWS EC2 CLI Command (AWS CLI)

Nối tiếp bài trước tổng hợp những lệnh hay gặp của aws cli với s3, sns .., hôm nay minh xin giới thiệu 15 lệnh hay gặp của EC2. Ở bài trước mình đã hướng dẫn cài đặt và config aws cli rồi, nên bàu này mình không hướng dẫn lại nữa.

EC2 là gì ?

Amazon EC2 cung cấp các ứng dụng máy tính ảo hoá có thể mở rộng về khả năng xử lý cùng các thành phần phần cứng ảo như bộ nhớ máy tính (ram), vi xử lý, linh hoạt trong việc lựa chọn các phân vùng lưu trữ dữ liệu ở các nền tảng khác nhau và sự an toàn trong quản lý dịch vụ bởi kiến trúc ảo hoá đám mây mạnh mẽ của AWS. Hay nói gắn gọn nó chính là một vps để chúng ta cài source code lên đó.

Tham khảo: https://viblo.asia/p/tim-hieu-ve-amazon-ec2-maGK7jRe5j2

Command

  1. Xem status của 1 Instance
aws ec2 describe-instances
aws ec2 describe-instances --filter Name=tag:Name,Values=dev-server # filter
  1. Start 1 instance
aws ec2 start-instances --instance-ids i-dddddd70
aws ec2 start-instances --instance-ids i-5c8282ed i-44a44ac3 # start nhiều instance cùng lúc

i-dddddd70 chính là instance id, bạn có thể lấy nó ở lệnh 1.

  1. Stop 1 instance
aws ec2 stop-instances --instance-ids i-5c8282ed
aws ec2 stop-instances --instance-ids i-5c8282ed i-e5888e46 # stop nhiều instance
aws ec2 stop-instances --force --instance-ids i-dddddd70 # force stop, not cache filesystem
  1. Xoá instance
aws ec2 terminate-instances --instance-ids i-44a44ac3
  1. Thêm tên hoặc tag cho instance
aws ec2 create-tags --resources i-dddddd70 --tags Key=Department,Value=Finance
  1. Khởi chạy một instance mới
aws ec2 run-instances --image-id ami-22111148 --count 1 --instance-type t1.micro --key-name stage-key --security-groups my-aws-security-group

Lệnh này sẽ tạo một instance mới đựa vào một instance đã có sẵn và khởi chạy chúng.

  1. Restart instance
aws ec2 reboot-instances --instance-ids i-dddddd70
  1. Thay đổi Instance Type
  • Lấy thông tin instance:
aws ec2 describe-instances

"InstanceId": "i-44a44ac3",
..
"InstanceType": "t1.micro",
  • Stop instance and change type
aws ec2 stop-instances --instance-ids i-44a44ac3
aws ec2 modify-instance-attribute --instance-id i-44a44ac3 --instance-type "{\"Value\": \"m1.small\"}"

thay đổi từ t1.micro lên m1.small

  1. Tạo một image
aws ec2 create-image --instance-id i-44a44ac3 --name "Dev AMI" --description "AMI for development server"
{
    "ImageId": "ami-2d574747"
}

Kiểm tra:

aws ec2 describe-images --image-ids ami-2d574747

{
 "Images": [
  {
   "VirtualizationType": "paravirtual",
   "Name": "Dev AMI",
   "Hypervisor": "xen",
   ...
}
  1. Xoá image
aws ec2 deregister-image --image-id ami-2d574747
aws ec2 delete-snapshot --snapshot-id snap-4e665454
  1. Bật Instance Termination Protection

Mặc định khi chạy lệnh xoá instance aws sẽ khoá ngay, khi bật bảo vệ không cho xoá thì sẽ không bị xoá khi lỡ tay:

aws ec2 modify-instance-attribute --instance-id i-44a44ac3 --disable-api-termination

Tắt đi bằng lệnh:

aws ec2 modify-instance-attribute --instance-id i-44a44ac3 --no-disable-api-termination
  1. Xem log xem log system của 1 instance chạy lệnh sau:
aws ec2 get-console-output --instance-id i-44a44ac3
  1. Enable Cloudwatch Monitoring for an Instance
aws ec2 monitor-instances --instance-ids i-44a44ac3
{
 "InstanceMonitorings": [
     {
         "InstanceId": "i-44a44ac3",
         "Monitoring": {
             "State": "enabled"
         }
     }
 ]
}

để disable:

aws ec2 unmonitor-instances --instance-ids i-44a44ac3
{
 "InstanceMonitorings": [
     {
         "InstanceId": "i-44a44ac3",
         "Monitoring": {
             "State": "disabled"
         }
     }
 ]
}
  1. AWS EC2 Key Pairs

Xem key pairs:

aws ec2 describe-key-pairs
{
"KeyPairs": [
 {
   "KeyName": "prod-key",
   "KeyFingerprint": "61:7c:f1:13:53:b0:3a:01:dd:dd:6c:90"
 },
 {
   "KeyName": "stage-key",
   "KeyFingerprint": "41:6c:d1:23:a3:c0:2a:0a:dc:db:60:4c"
 }
]
}

Tạo:

aws ec2 create-key-pair --key-name dev-servers
{
  "KeyName": "dev-servers",
  "KeyMaterial": "-----BEGIN RSA PRIVATE KEY-----\n
  dYXbKYMRlI59J5XKyPgC/67GL8\nXg
  ....
  n-----END RSA PRIVATE KEY-----",
  "KeyFingerprint": "3d:c2:c8:7f:d2:ee:1d:66"
}

để xoá:

aws ec2 delete-key-pair --key-name dev-servers

Tham khảo:

  1. https://docs.aws.amazon.com/cli/latest/userguide/cli-services-ec2.html
  2. https://www.thegeekstuff.com/2016/04/aws-ec2-cli-examples/

All rights reserved

Viblo
Hãy đăng ký một tài khoản Viblo để nhận được nhiều bài viết thú vị hơn.
Đăng kí