x86_128
February 24, 2025, 1:37pm
1
Helllo,
I’ve created ceertificate, but it’s status: PROVISIONING for 2 hours.
gcloud compute ssl-certificates describe mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
creationTimestamp: '2025-02-24T03:17:40.212-08:00'
id: '7909269187352193979'
kind: compute#sslCertificate
managed:
domainStatus:
[app.apis-charlieai-ml.com](http://app.apis-charlieai-ml.com/): FAILED_NOT_VISIBLE
domains:
- [app.apis-charlieai-ml.com](http://app.apis-charlieai-ml.com/)
status: PROVISIONING
name: mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
selfLink: [https://www.googleapis.com/compute/v1/projects/charlie-ai/global/sslCertificates/mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f](https://www.googleapis.com/compute/v1/projects/charlie-ai/global/sslCertificates/mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f)
type: MANAGED
Can you help me?
debolek
February 24, 2025, 2:58pm
2
The FAILED_NOT_VISIBLE status indicates that the domain is not visible to the Google Cloud Certificate Authority. To resolve this issue:
Verify that the DNS records are correctly configured and pointing to the correct IP address.
Check DNS propagation to ensure that the changes have propagated globally.
Verify domain ownership in Google Search Console.
A Record :
CNAME Record (if applicable):
Type : CNAME
Name : www.app.apis-charlieai-ml.com
Value : app.apis-charlieai-ml.comUpdate DNS records if necessary and recreate the SSL certificate.
Here is an example of how to configure the DNS records for your domain:
Use the dig command to verify the DNS configuration: dig app.apis-charlieai-ml.com
Ensure that the output shows the correct IP address.
Recreate the SSL Certificate
If the DNS records were incorrect and you have updated them, you might need to delete the existing SSL certificate and create a new one:
Delete the Existing SSL Certificate:
gcloud compute ssl-certificates delete mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
Crerate a new ssl certificate
gcloud compute ssl-certificates create mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
–domains=app.apis-charlieai-ml.com
I hope this will help
There are a number of possible reasons for this. Refer to the SSL certificate troubleshooting guide: https://cloud.google.com/load-balancing/docs/ssl-certificates/troubleshooting
x86_128
February 24, 2025, 10:48pm
4
DNS records are correct. IP is correct. Checked.
x86_128
February 24, 2025, 10:49pm
5
Everything checked, everything tried, nothing helped.
x86_128
February 24, 2025, 11:47pm
6
The DNS records are correctly configured and pointing to the correct IP
address.
Check DNS propagation to ensure that the changes have propagated globally.
Verify domain ownership in Google Search Console.
A Record:
Type: A Name: app.apis-charlieai-ml.com Value: [Your Load Balancer or VM
IP Address]
CNAME Record (if applicable):
Type: CNAME Name: www.app.apis-charlieai-ml.com Value:
app.apis-charlieai-ml.comUpdate DNS records if necessary and recreate the
SSL certificate.
Here is an example of how to configure the DNS records for your domain:
Use the dig command to verify the DNS configuration: dig
app.apis-charlieai-ml.com Status=
Ensure that the output shows the correct IP address.
5. Recreate the SSL Certificate
If the DNS records were incorrect and you have updated them, you might need
to delete the existing SSL certificate and create a new one:
Delete the Existing SSL Certificate:
gcloud compute ssl-certificates delete
mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
Crerate a new ssl certificate
gcloud compute ssl-certificates create
mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
–domains=app.apis-charlieai-ml.com
Everything is OK, except ‘PROVISIONING’ and ‘FAILED_NOT_VISIBLE’
Nothing helped.