728x90
728x90

AWS CLI(Command Line Interface) 설치하기

들어가며

  • PC에 AWS CLI(Command Line Interface)를 설치하는 방법을 간단하게 정리해본다.

 

방법

서맃하기

  • 아래 링크에서 자신의 OS에 맞는 설치법을 따라 진행한다.
 

AWS CLI 버전 2의 이전 릴리스 설치 - AWS Command Line Interface

설치 관리자의 아무 위치에서나 Cmd+L을 눌러 설치에 대한 디버그 로그를 볼 수 있습니다. 이렇게 하면 로그를 필터링하고 저장할 수 있는 로그 창이 열립니다. 로그 파일도 /var/log/install.log에 자

docs.aws.amazon.com

 

설치 확인

  • 터미널에 아래 명령을 실행하여 설치되어 있는지 확인한다.
$ aws --version

 

(참고) Git Bash에서 사용하기 (Windows)
# 설치 여부 확인
$ ls "/c/Program Files/Amazon/AWSCLIV2/aws.exe"

# 설치 되어 있을 경우 bashrc 파일에 등록
$ echo 'export PATH="$PATH:/c/Program Files/Amazon/AWSCLIV2"' >> ~/.bashrc
$ source ~/.bashrc

 

참고 사이트

 

What is the AWS Command Line Interface? - AWS Command Line Interface

What is the AWS Command Line Interface? The AWS Command Line Interface (AWS CLI) is an open source tool that enables you to interact with AWS services using commands in your command-line shell. With minimal configuration, the AWS CLI enables you to start r

docs.aws.amazon.com

 

AWS CLI

AWS Command Line Interface(AWS CLI)는 AWS 서비스를 관리하는 통합 도구입니다. 도구 1개만 다운로드하여 구성하면 여러 개의 AWS 서비스를 명령줄에서 제어하고 스크립트를 통해 자동화할 수 있습니다.

aws.amazon.com

 

728x90
728x90