📂 AWS

[AWS/CLI] start-instances / stop-instances

dhyuck 2021. 10. 27. 21:51
반응형

start-instances

  • 기존에 중지되어 있는 EBS기반의 인스턴스 시작

      aws ec2 start-instances --profile {PROFILE_NAME} \
      --instance-ids {INSTANCE_ID}

stop-instances

  • EBS기반의 인스턴스 중지

      aws ec2 stop-instances --profile {PROFILE_NAME} \
      --instance-ids {INSTANCE_ID}

반응형