그외
AWS S3 버킷 사용하기
체봄
2021. 9. 14. 21:00
S3 버킷 관련 명령어 참조 링크
https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/cli-services-s3-commands.html
1. S3 버킷 생성하기
CLI: $ aws s3 mb 버킷명 입력
GUI: https://docs.aws.amazon.com/ko_kr/AmazonS3/latest/userguide/create-bucket-overview.html 를 따라 생성
2. 관련 설정
패키지 설치 -> $ sudo apt install awscli
버킷 관련 환경 설정 (사전에 받은 Access key ID와 Secret access key 필요) -> $ aws configure
3. 명령어 사용
버킷에 저장된 목록 확인: $ aws s3 ls 버킷명
콘솔 -> 버킷으로 파일 옮기기 : $ aws s3 mv 콘솔경로 s3://버킷명/버킷경로
버킷 -> 콘솔로 파일 옮기기 : $ aws s3 mv s3://버킷명/버킷경로 콘솔경로
- 파일이 아니라 폴더를 옮기려면 aws s3 sync 로 써준다
- 파일 복사를 하려면 aws s3 cp 로 써준다
- 파일 삭제 시에는 aws s3 rm 으로 써준다
버킷 용량 확인 : $ aws s3 ls s3://버킷명/ --recursive --human-readable --summarize
반응형