[aws-cli] AWS S3 버킷 생성, 조회, 복사, 이동, 삭제
aws-cli: AWS Command Line Interface reference: https://docs.aws.amazon.com/cli/latest/reference/s3/ 버킷 생성 $ aws s3 mb s3://{bucket-name} 버킷 리스트 조회 $ aws s3 ls 버킷으로 로컬 파일 복사 $ aws s3 cp {local-file-name} s3://{bucket-name} --recursive 옵션 사용시 하위 파일들도 모두 복사 버킷 간 파일 복사 $ aws s3 cp s3://{source-bucket-name}/{file-name} s3://{destination-bucket-name} --recursive 옵션 사용시 하위 파일들도 모두 복사 버킷으로 로컬 폴더 이동 $ aw..
dev/aws
2019. 10. 3. 15:33
[aws-cli] 설치 및 버전 확인, 액세스 키 등록 (MAC)
aws-cli: AWS Command Line Interface Homebrew 이용하여 설치하기 $ brew install awscli 설치 버전 확인하기 $ aws --version 액세스 키 등록하기 $ aws configure AWS Access Key ID [None]: {입력} AWS Secret Access Key [None]: {입력} Default region name [None]: {ap-northeast-2} Default output format [None]:
dev/aws
2019. 10. 3. 15:09