Amazon S3バケットへのファイルアップ
S3バケットへのファイルアップ(CLI編)
今回はシステムの連携などでコマンドでAmazon S3にファイルを転送する必要がある時に役に立つ情報共有です。
設置
以下の順番で設置してください。
$ wget https://s3.amazonaws.com/aws-cli/awscli-bundle.zip
$ unzip awscli-bundle.zip
$ sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
※aws設定
$ aws configure
上記のコマンドを実行すると以下の入力が必要です。
AWS Access Key ID [None]: xxxxxxxxxx
AWS Secret Access Key [None]: xxxxxxxxxx
Default region name [None]: 入力せずにEnterキー
Default output format [None]: 入力せずにEnterキークリック
aws s3コマンドの実行方法
test.txtファイルをaws s3のbucketに転送
$ aws s3 cp /tmp/foo/test.txt s3://bucket/
これで簡単にAmazon S3バケットへファイル転送ができます。
次回は転送以外のコマンドについて掲載しますので。お楽しみに。。。。
Author And Source
この問題について(Amazon S3バケットへのファイルアップ), 我々は、より多くの情報をここで見つけました https://qiita.com/HavenSpring/items/8776b6a9dd2d067e450b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .