AWS

AWS CLI : 로컬 폴더와 S3 폴더 동기화 (싱크, sync)

Kyle79 2019. 6. 12. 09:53

https://ngee.tistory.com/1137

 

AWS CLI : 로컬 폴더와 S3 폴더 동기화 (싱크, sync)

제목과 같이 로컬에 존재하는 폴더와 S3 폴더를 동기화하는 방법은 아래 URL에 잘 나와 있네요 !! https://aws.amazon.com/ko/getting-started/tutorials/backup-to-s3-cli/ 간단한 사항 몇 가지만 따로 기록해둡..

ngee.tistory.com

 

aws s3 sync ./report  s3://insight-media-row/backup --acl public-read --delete --cache-control max-age=31536000 --no-verify-ssl

 

aws s3 cp ./report  s3://insight-media-row/backup --recursive

 

find /ml/03.CRAWLER/dw-fire/download/report -name *$(date -d 'yesterday' +'%Y%m%d')* -exec ls -l {} \;

'AWS' 카테고리의 다른 글

서비스 등록 (#시작서비스, #자동시작)  (0) 2019.06.24
AWS EC2 에 Jenkins 서버 구축하기  (0) 2019.06.24
Lambda 와 Aurora 연동  (0) 2019.05.30
AWS Glue - Data lake 사례  (0) 2019.05.20
AWS Elasticache 를 사용해보자  (0) 2019.05.14