• 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.

DNS not working for some domains

P

peekz

Guest
Hi all,

We have a problem with some domains just not resolving via BIND on some servers. Most domains are fine, but some domains just don't resolve at all. We have tried restoring defaults for the domains, disabling/enabling DNS, restarting BIND, still no luck.

How can we check for where the issue may be?

Any help appreciated

Cheers
 
Yes of course. The domains are registered and pointed to the correct nameservers. The issue is that the domain names do not resolve when doing a lookup directly on the Plesk servers themselves. The domains are not disabled in Plesk and the DNS service is enabled. We have tried restoring DNS defaults, and enabling/disabling the DNS service for the domains, nothing seems to work.
 
It looks like DNS service on the domain has incorrect status value in database.
To check it try to disable the problem domain, then enable. If it does not help check dns service status in Plesk DB

in case if you have Plesk 8.2 you can use Plesk native tool to access Plesk DB

"%plesk_bin%\dbclient" --direct-sql --sql="select status from dns_zone where name='<domain_name>'"

where <domain_name> is domain name.
If status does not equal to zero change it to 0.

"%plesk_bin%\dbclient" --direct-sql --sql="update dns_zone set status = 0 where name='<domain_name>'"

then run the command

%plesk_bin%\dnsmng" update <domain_name>
 
Back
Top