1
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?

AWS CLIインストール手順

Last updated at Posted at 2024-04-03

概要

新規にAWS CLIをLinuxサーバ(RHEL8)にインストールする手順。

目次

  • curlコマンドでawscli2.zipダウンロード
  • zip、unzipをインストール
  • awscli2.zipを解凍
  • 解凍したawscli2を実行してインストール
  • バージョン確認

curlコマンドでawscli2.zipダウンロード

以下コマンドを実行してawscli2.zipをダウンロードする。

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

zip、unzipをインストール

以下コマンドを実行してzip、unzipパッケージをインストールする。

sudo dnf install zip unzip

awscli2.zipを解凍

以下コマンドを実行してawscli2.zipファイルを解凍する。

unzip awscliv2.zip

解凍したawscli2を実行してインストール

以下コマンドを実行してAWS CLIをインストールする。

sudo ./aws/install

バージョン確認

以下コマンドを実行して、正常にインストールできていることとインストールされているバージョンを確認する。

aws --version

参考URL

AWS CLI の最新バージョンを使用してインストールまたは更新を行う

1
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
1
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?