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
tld
table in thedomainreg
database:UPDATE tld SET tld = 'oldtld' WHERE tld = 'tld';
- Update the TLD in a the
-
-
oldtld
is the new name of your existing TLD that you want to switch to another registrar (e. g.oldcom
oroldnet
). 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.tld
is TLD that you want to switch to another registrar (e.g.com
ornet
).
- Update
force_tld_id
column in the domain table.UPDATE domain SET force_tld_id = 11 WHERE domain LIKE '%.tld';
force_tld_id
is set here to 11. That number is just an example. It should be set to the ID of the TLD in thetld
table 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
tld
tooldtld
tld
andoldtld
are parameters from the first step.- Add tld_name =
tld
property in domainreg.conf for the TLD
- Add a new TLD in the
tld
tableINSERT INTO tld (tld) VALUES ('tld');
- Add a new configuration for the TLD in domainreg.conf. Example of the new configuration is here.
-