How to change registrar for one or more of your TLDs
Overview
Atomia Domain Registration has a possibility to change registrar for the TLD (Top Level Domain). It means that domains that are registered with the old registrar are going to continue to work with the old registrar and all new domains are going to be registered via the new registrar.
Configuration
Switch from old to new registrar requires a few manual actions:
-
- Update the TLD in a the
tldtable in thedomainregdatabase:UPDATE tld SET tld = 'oldtld' WHERE tld = 'tld';
- Update the TLD in a the
-
-
oldtldis the new name of your existing TLD that you want to switch to another registrar (e. g.oldcomoroldnet). It doesn’t have to be in the format with “old” prefix appended to the current TLD. You can choose any name (only small letters are alloweda-z), but it must be unique. The name will be used in the following steps.tldis TLD that you want to switch to another registrar (e.g.comornet).
- Update
force_tld_idcolumn in the domain table.UPDATE domain SET force_tld_id = 11 WHERE domain LIKE '%.tld';
force_tld_idis set here to 11. That number is just an example. It should be set to the ID of the TLD in thetldtable that was updated in the previous step. This tells the system to always use that ID for these domains instead of to get ID based on the TLD used in the domain name.
- Update name in domainreg.conf for the TLD from
tldtooldtldtldandoldtldare parameters from the first step.- Add tld_name =
tldproperty in domainreg.conf for the TLD
- Add a new TLD in the
tldtableINSERT INTO tld (tld) VALUES ('tld'); - Add a new configuration for the TLD in domainreg.conf. Example of the new configuration is here.
-