The _globalsign-domain-verification TXT record is a DNS record used to verify domain ownership before issuing an SSL/TLS certificate from GlobalSign, a Certificate Authority (CA).
When you apply for an SSL certificate, GlobalSign requests you to add this TXT record to your DNS settings as part of the Domain Control Validation (DCV) process.
This verification method ensures that only the legitimate domain owner can obtain an SSL certificate, preventing unauthorized access.
Once the TXT record is successfully added and detected by GlobalSign, they will proceed with the SSL certificate issuance.
After requesting an SSL certificate, GlobalSign provides a unique TXT verification record.
_globalsign-domain-verification=abcdef1234567890abcdef1234567890
This is the exact value you must enter in your DNS settings. Do not modify or change the format of the record.
Before adding the record, confirm where your domain's DNS settings are managed.
Replace example.com with your actual domain.
Use online tools like:
The output will show your authoritative name servers (DNS provider). You will need to log in to this provider to add the TXT record.
If you manage your own BIND DNS server, open the zone file:
Add this entry:
_globalsign-domain-verification IN TXT "abcdef1234567890abcdef1234567890"
Save the file and reload the DNS service:
Below is an example diagram of how the TXT record is structured:
| Name | Type | Value |
|---|---|---|
| _globalsign-domain-verification | TXT | "abcdef1234567890abcdef1234567890" |
_globalsign-domain-verification (This is the identifier provided by GlobalSign).After adding the TXT record, verify that it is correctly published.
Run:
If the correct value appears, the record is correctly configured.
Use external tools:
If verification is urgent, reduce the TTL (Time to Live) before making changes.
$TTL 300
(This reduces the waiting time to 5 minutes.)
Once the TXT record is detected, GlobalSign will automatically validate it. If verification does not complete within 24 hours:
| Issue | Solution |
|---|---|
| TXT record not found | Ensure it is added in the correct zone file and DNS is reloaded. |
| Incorrect TXT value | Copy the exact value provided by GlobalSign, ensuring no typos. |
| DNS record not propagating | Lower TTL and wait up to 48 hours for propagation. |
| Query returns old data | Clear the local cache using systemctl restart nscd. |
| External queries fail | Verify firewall settings to allow external DNS queries. |
| Step | Action |
|---|---|
| 1 | Obtain the _globalsign-domain-verification TXT record from GlobalSign. |
| 2 | Find where the domain's DNS is managed. |
| 3 | Edit the DNS zone file and add the TXT record. |
| 4 | Reload the DNS service to apply changes. |
| 5 | Verify the record using dig or nslookup. |
| 6 | Ensure proper DNS propagation. |
| 7 | Wait for GlobalSign to detect the record and issue the SSL certificate. |
By following this detailed guide, a system administrator can successfully add the _globalsign-domain-verification TXT record and complete the domain verification process for SSL certificate issuance.
This method ensures secure, automated verification for SSL certificates while preventing unauthorized access.
