본문 바로가기
AWS/AWS CLI

AWS CLI v2 설치 및 설정

by 준섭이 2023. 12. 23.
728x90

### Download

cd /usr/local/src

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

 

### 설치

unzip awscliv2.zip

./aws/install

* unzip이 없을 경우, yum install -y unzip

 

 

### 설정

aws configure

AWS Access Key ID : ACCESS KEY 입력

AWS Secret Access Key : SECRET KEY 입력

Default region name  :  ap-northeast-2 (Seoul Region)

Default output format [None]:  엔터

 

여러개로 분리를 할 경우 --profile로

aws configure --profile s3

 

확인 : aws s3 ls   <- AWS IAM에서 권한이 있는지 확인

 

'AWS > AWS CLI' 카테고리의 다른 글

aws cli를 통한 Security Group Inbound 설정  (0) 2024.01.21
AWS CLI S3 명령어  (0) 2023.12.23
AWS CLI 로 EC2 IMAGE 생성 및 IMAGE 삭제  (0) 2020.06.02
AWS CLI 설치  (0) 2020.06.02