- Newest
- Most votes
- Most comments
I've solved the problem by adjusting Name Servers
Hello.
Have you checked the troubleshooting tips in the following documentation?
First, please check whether you can use the hosted zone you created normally.
As mentioned in the answer for re:Post Agent, start by checking whether the NS record can be resolved normally.
https://repost.aws/knowledge-center/acm-certificate-pending-validation
It's not uncommon for ACM certificate validation to take some time, but 10 hours is indeed longer than usual. Here are some steps you can take to troubleshoot and potentially resolve the issue:
-
Verify DNS propagation: Even though you've created the CNAME record, it may take time to propagate across all DNS servers. Use the 'dig' command to check if the CNAME record is visible:
dig CNAME +short <CNAME_name>
This should return the CNAME value provided by ACM.
-
Check nameservers: Ensure that your domain is using the correct nameservers. You can verify this with:
dig +trace <your_domain_name>
Make sure the nameservers match those of your hosted zone in Route 53.
-
Verify CNAME record: Double-check that the CNAME record in your hosted zone exactly matches the one provided by ACM, including any trailing dots.
-
CAA Records: Check if there are any Certification Authority Authorization (CAA) records that might be blocking ACM from issuing the certificate.
-
Multiple domains: If your certificate covers multiple domain names, ensure you've added the correct CNAME records for all of them.
-
Wait longer: Although unusual, sometimes the validation process can take up to 72 hours. If you've verified all the above points, you may need to wait a bit longer.
-
Region consideration: Ensure you're requesting the certificate in the correct AWS region for your use case.
If the issue persists after checking these points, you may need to delete the current certificate request and start a new one. If problems continue, contacting AWS support might be necessary as there could be an underlying issue with the ACM service or your specific account.
Remember, once successfully validated, ACM certificates are valid for 13 months and are automatically renewed if the DNS records remain in place, so you shouldn't need to repeat this process frequently.
Sources
ACM cert verification keep Pending or failed (.de domain) | AWS re:Post
Certificate Status still pending validation | AWS re:Post
Forever pending Certificate Validation | AWS re:Post
Hi, thank you for answer.
I am using windows so I have checked by nslookup. Here I am sending the results:
nslookup -type=ns domain
Server: UnKnown Address: ...
UnKnown can't find (domain): Server failed
nslookup -type=TXT domain
Server: UnKnown Address: ...
UnKnown can't find (domain): Server failed
nslookup -type=CNAME cname_record
Server: UnKnown Address: ...
UnKnown can't find (cname_record): Server failed
Relevant content
- asked a year ago
The NS record is not resolving properly, so the hosted zone is not available. Are your Route53 NS records set correctly? https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-name-servers-glue-records.html