본문 바로가기

퍼블릭 클라우드

Amazon CloudFront 파일 무효화

반응형

Amazon CloudFront 파일 무효화

AWS CLI를 사용하여 무효화

AWS CLI를 사용하여 CloudFront 파일을 무효화할 수도 있습니다.

  1. AWS CLI가 설치되어 있고 AWS 자격 증명이 구성되어 있어야 합니다.
  2. 다음 명령어를 사용하여 무효화를 실행합니다.
aws cloudfront create-invalidation --distribution-id YOUR_DISTRIBUTION_ID --paths "PATH1" "PATH2"
  • YOUR_DISTRIBUTION_ID를 CloudFront 배포 ID로 대체합니다.
  • PATH1, PATH2는 무효화할 파일의 경로입니다. 예를 들어 /index.html이나 /*처럼 사용할 수 있습니다.

모든 파일을 무효화(--paths "/*")

aws cloudfront create-invalidation --distribution-id distribution_ID --paths "/*"
aws --profile test_profile --region ap-northeast-2 cloudfront create-invalidation --distribution-id 1234567ABCDEF --paths "/*"

CloudFront 콘솔에서 무효화

  1. AWS Management Console에 로그인합니다.
  2. CloudFront 콘솔로 이동합니다.
  3. 무효화할 파일이 있는 **배포(Distribution)**를 선택합니다.
  4. Invalidations 탭을 클릭합니다.
  5. Create Invalidation 버튼을 클릭합니다.
  6. 무효화할 파일의 경로를 입력합니다.
    • 여러 파일을 무효화하려면 각 경로를 한 줄씩 입력합니다.
    • 모든 파일을 무효화하려면 /*를 입력할 수 있습니다.
  7. Invalidate 버튼을 클릭하여 무효화 요청을 제출합니다.

AWS 콘솔 접속 > CloudFront > Distributions > Distribution_ID > Invalidations

Amazon_CloudFront
Amazon_CloudFront
Amazon_CloudFront
Amazon_CloudFront

728x90

무효화 요청 확인

  • 무효화 요청을 제출한 후 요청 상태를 콘솔에서 확인하거나 AWS CLI를 통해 조회할 수 있습니다.

콘솔에서 확인 : Invalidations 탭에서 무효화 요청 목록을 확인할 수 있습니다.

Amazon_CloudFront
Amazon_CloudFront

AWS CLI로 확인

aws cloudfront list-invalidations --distribution-id 1234567ABCDEF

 

참고URL

- 파일 무료화 : https://docs.aws.amazon.com/ko_kr/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html

 

728x90
반응형