0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

株式会社やどかりAdvent Calendar 2024

Day 24

AWSCLIでS3の使用データ量をみてみよう。

Last updated at Posted at 2024-12-23

今使用しているS3のこのバケットで全部でどれくらいデータ量があるかを知りたい!
でもAWSコンソール上じゃ確認できないので接続してターミナルからコマンド打つ必要がある!って時に使います。

まず、Amazon CLI をインストールしましょう。

ここからインストール。
https://docs.aws.amazon.com/ja_jp/cli/latest/userguide/getting-started-install.html

次に、接続したいアカウントの設定をしましょう。

ターミナルで以下を入力。

aws configure

プロンプトに従って入力しよう。

  • AWS Access Key ID: IAM のアクセスキー ID
  • AWS Secret Access Key: IAM のシークレットキー
  • Default region name: 利用するリージョン(例: us-east-1)
  • Default output format: 出力形式(通常は json)

※ここで設定したアクセスキーが「有効」であるかは事前にコンソールから確認すること。
入力した内容に変更されているか確認。
aws configure list
スクリーンショット 2024-12-20 13.48.51.png

コマンドを実行してみる。

コマンド的にはこんな感じ。

aws s3 ls s3://[バケット名]/[フォルダ名]/ --recursive --human --sum

バケット全体のストレージが知りたい場合は、フォルダ名不要です。

こんな感じで出てくる。

スクリーンショット 2024-12-20 13.49.06.png

他にも色々コマンドあるので機会があればぜひ。
https://qiita.com/uhooi/items/48ef6ef2b34162988295

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?