AWS/Amazon Route 53(4)
-
예상치 못한 AWS 인보이스 메일
개요 AWS를 운영하는 중에 매월 초 발생되는 inovoice 메일이 아닌 invoice 메일이 오는 경우가 종종 있다. 그런 상황은 대개 Amazon Registar에서 구매 후 사용중인 도메인이 갱신되서 비용이 발생하고 그 에 따른 invoice 메일이 오는 경우이다. 확인 방법 방법 1 : AWS Route53 >> Domains >> Requests 방법 2 : AWS Route53 >> Registered domains 에서 우측 상단의 Download billing report을 통해 확인이 가능하다. 참고 https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-billing-report.html
2024.02.19 -
transfer domain to another account
- 개요 domain을 다른 AWS Account로 이관하는 방법은 아래 순서로 진행을 해야 한다 - 1. 기존 account >> aws sts get-caller-identity --query "Account" --output text 1234567890 root@ ~ >> aws route53domains list-domains --region us-east-1 { "Domains": [ { "DomainName": "example.com", "AutoRenew": true, "TransferLock": true, "Expiry": "2055-04-05T16:39:07+09:00" } ] } root@ ~ >> aws route53domains transfer-domain-to-another-aws..
2023.01.02 -
route53 dns query logging
- 개요 route53의 DNS 쿼리로그를 남기면 CloudWatch Logs에서 확인이 가능하다. - 설정 방법 https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html - 모니터링 ## cloudwatch loggroup awslogs get --aws-region us-east-1 -S -G --watch
2022.12.06 -
internal domain 못 찾는 경우
- 현상 route53 internal domain 등록된 dns를 특정 vpc에서 못 찾는 경우 - 원인 route53 private hosted zone에 VPC 추가 - 해결 Hosted zone details : Associated VPCs에 VPC 추가 VPC setting : enableDnsHostnames // enableDnsSupport - reference https://docs.aws.amazon.com/vpc/latest/userguide/vpc-dns.html#vpc-dns-updating https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-private.html
2022.11.11