7
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Amazon RDS for MySQLでストレージ容量を減らす

Posted at

RDSのストレージ容量は、増やすことは簡単にできますが減らすことはできない1ので、慎重に検討しましょう。
万が一、私のように調子に乗って増やし過ぎてしまった場合は、以下の手順で擬似的にストレージサイズを縮小させることができます。

手順

  1. お好みのストレージ容量で新インスタンスを作成
  2. 旧インスタンスの識別子を変更し、既存のアプリケーションから読み書きが行えない状態にする
  3. データを移行する(mysqldump -h <旧インスタンスのエンドポイント> -u <user> -p<password> | mysql -h <新インスタンスのエンドポイント> -u <user> -p<password>
  4. 新インスタンスの識別子を、旧インスタンスの元の識別子と同じものに変更する
  5. 旧インスタンスを削除

ネタ元

  1. http://docs.aws.amazon.com/ja_jp/AmazonRDS/latest/UserGuide/USER_ModifyInstance.MySQL.html

7
11
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
7
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?