-
AWS CLI 설치(Linux x86_64)Linux 2025. 6. 23. 17:52
https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/getting-started-install.html
최신 버전의 AWS CLI 설치 또는 업데이트 - AWS Command Line Interface
이전 버전에서 업데이트하는 경우 unzip 명령을 실행하면 기존 파일을 덮어쓸지 묻는 메시지가 표시됩니다. 스크립트 자동화와 같은 경우에 이러한 프롬프트를 건너뛰려면 unzip에 대한 -u 업데이
docs.aws.amazon.com
- AWS CLI 설치
# OS 아키텍처 확인 uname -m # AWS CLI를 설치 파일 다운로드 curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # 압축 해제 (overwrite 옵션으로 덮어쓰기 자동 처리) # replace 확인 메세지가 많아서 -o 함 (ovewrite) unzip -o awscliv2.zip # AWS CLI 설치 (기존 버전이 있으면 --update로 업데이트) sudo ./aws/install --update # AWS CLI 설치 확인 aws --version # AWS 자격 증명 설정(test) aws configure --profile test # 설정된 프로파일 목록 확인 aws configure list-profiles # 설정된 리전 확인 aws configure get region # 현재 자격 증명 상태 확인 (정상 연결 시, 계정 ID와 ARN 반환됨) aws sts get-caller-identity
- 환경 변수로 기본 프로파일처럼 사용
export AWS_PROFILE=test echo $AWS_PROFILE echo 'export AWS_PROFILE=test' >> ~/.bashrc source ~/.bashrc
- 프로파일은 여러 AWS 계정을 사용할 때 유용함 개인용 personal, 회사용 company
# 개인용 aws configure --profile personal # 회사용 aws configure --profile company
'Linux' 카테고리의 다른 글
helm 설치 (0) 2025.06.25 kubectl /eksctl 설치 - Linux(AMD64) (0) 2025.06.24 .vimrc 파일 생성 (0) 2025.06.16 VirtualBox VM 저장 경로 변경하기 (0) 2025.05.15 Apache HTTP 서버 설치 (0) 2025.05.12