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?

More than 3 years have passed since last update.

macOS AWS CLI v2アンインストール

Posted at

AWS CLI v2だと、以下のコマンドがエラーになる。

$ aws ecr get-login

既存のシステムで上記を含むシェルスクリプトがエラーになった。
それを直す時間などないので、aws-cliをバージョンダウンした。

AWS CLI バージョン 2 のアンインストール

macOS での AWS CLI バージョン 1 のインストール、更新、アンインストール

curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws

バージョンの確認

% aws --version
aws-cli/1.19.9 Python/2.7.16 Darwin/20.3.0 botocore/1.20.9

よしよし、ちゃんと1.19.9になってる。

aws ecr get-loginの動作確認

% aws ecr get-login
docker login -u AWS -p ey(略) -e none \
https://nnnnnnnnnnnn.dkr.ecr.ap-northeast-1.amazonaws.com

OK!

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?