LoginSignup
3
3

More than 5 years have passed since last update.

【手順】AWS CLIインストール(CentOS7)

Last updated at Posted at 2017-03-03

前提

検証OS: CentOS7.2

AWS CLIとは

AWSサービスを管理するためのツールです。 
コマンドラインから、AWSの様々なサービスを利用することができます。 

できること

  • コマンドラインから、ELBのアクセスログを確認
  • S3との連携(S3にコピーしたり、移動したり)
  • SSL証明書をELBにアップロード
    などなど。。。

手順

1. pip のウェブサイトからインストールスクリプトをダウンロードし実行します。

# curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
# python get-pip.py

2. pip を使用して AWS CLI をインストールします。

# pip install awscli

完了!
aws configureをすると、初期設定ができます。
そして、/root/配下に、.aws/configが作成されます。

3
3
1

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