• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

[HOWDOI] Install new domain that exists in DNS

M

Martin Lawrence

Guest
Hi everyone,

I am trying to create the domain "martinlawrence.ca" to my Plesk installation. However, the domain already exists in DNS, as the Windows 2008 server is a domain controller with that domain. So I get the error "Error: DNS records for domain with such name already exist"

How do I go about adding this domain to Plesk?

Thanks,

Martin Lawrence
 
I can suggest you remove all related records in psa database with following method:

1. Find dns_zone_id first with

select id from dns_zone where name='martinlawrence.ca';

2. Find all DNS records for this dns_zone_id:

select * from dns_recs where dns_zone_id =XXX;

3. Remove all these records and try add domain again.

I hope it will help.
 
Hello Igor.

In My case report:
mysql> select id from dns_zone where name='netgames3d.net';
Empty set (0.00 sec)
 
I find another way to find the DNS record with the:

select * from dns_recs where dns_zone_id =XXX; searching ID by ID from Id 1

I've deleted the record and after try re install the domain show the fallow error:
Failed domain creation: Unable to update domain data: Failed mail post-configuration: Can't create mail domain servie: mail_Facade->createDomain() failed: mailmng failed: MEAOPO.PostOffice.AddPostOffice failed for name netgames3d.net [netgames3d.net]
 
Check if postoffice for netgames3d.net was already created in MailEnable:

Run %plesk_dir%\Mail Servers\Mail Enable\Bin\MailEnable.msc

If it is there then remove it and try to create domain again.
 
Back
Top