LoginSignup
0
2

More than 5 years have passed since last update.

[RDS]コマンドでRDSをstart stopしてみた

Posted at

コマンドでRDSをstart stopしてみた

RDSに「停止」が追加となった。
http://dev.classmethod.jp/cloud/aws/start-stop-db-instance-for-rds/

コマンドラインを確認したところコマンドが追加されていたので早速実行してみた。

start

aws rds rds start-db-instance --db-instance-identifier ${id}

stop

スナップショットを取得してから停止
http://docs.aws.amazon.com/cli/latest/reference/rds/stop-db-instance.html

aws rds stop-db-instance \
  --db-instance-identifier ${id} \
  --db-snapshot-identifier ${snapshotId}

CopyTagsToSnapshotがtrueなのにsnapshotにタグが付かないので付与

snapshotARN="arn:aws:rds:ap-northeast-1:${AWSID}:snapshot:${snapshotId}"
aws rds add-tags-to-resource \
  --resource-name ${snapshotARN} \
  --tags "Key=k,Value=v"
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2