LoginSignup
0
0

More than 1 year has passed since last update.

Linux環境でのAWS Clientのインストール、初期設定

Posted at

AWS Clientのインストール

zipファイルのダウンロード

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"

ダウンロードしたzipファイルの解凍

unzip awscliv2.zip

インストール

sudo ./aws/install

プロファイルの設定

AWSのインストール後、アクセスキーなどを使用するユーザー毎に設定しなければいけない。
下記コマンドを実行し、ユーザー毎にアクセスキーID、シークレットアクセスキーを設定する。

aws configure (--profile ユーザー名)

[default]
aws_access_key_id=アクセスキーID
aws_secret_access_key=シークレットアクセスキー

[user1]
aws_access_key_id=アクセスキーID
aws_secret_access_key=シークレットアクセスキー
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