Checking a domain name on Firebase

I developed the application using the Firebase database and hosting, and after I bought a domain name at names.co.uk (2 days ago). I added two TXT entries as Firebase asks, but still this message shows:

Current Status: The TXT Records at your DNS Provider do not match the values below. 

Does anyone know that everything is in order, and I just need to wait more time, or I did something wrong, and this may be the reason why verification takes so long?

This is how it looks in my control panel

+5
source share
2 answers

So it looks like you put your TXT records on tennispredictions.eu.tennispredictions.eu - each DNS host is different, and you think you need to leave the first field blank to put the TXT record in the root domain:

dig -t txt +noall +answer tennispredictions.eu.tennispredictions.eu

If you just delete all of the first text fields on lines 3 and 4, you should be set.

+3
source

Firebase hosting servers essentially run this command to check the TXT records for your domain:

 dig -t txt +noall +answer tennispredictions.eu 

If I run this command right now, I get no results. If Firebase servers see the same in their DNS query, they will not be able to continue.

You can also use mcheoolbox to query DNS: http://mxtoolbox.com/SuperTool.aspx?action=a%3atennispredictions.eu&run=toolpage . It also does not give me any results at the moment.

This means that either you have not yet saved / applied your changes, or have not yet propagated everywhere. The longer it takes for the changes, the more likely it is that you still need to take some action from your DNS provider (names.co.uk in your case).

+8
source

Source: https://habr.com/ru/post/1245871/


All Articles