• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Resolved Error: Inconsistent zone

Kingsley

Silver Pleskian
Hello;

I am trying to delete some DNS zones from a domain which happens to house the hostname and nameserver details but it wont delete.

Code:
Error: Inconsistent zone "awoofhost.com": The NS record "awoofhost.com. IN NS ns3.awoofhost.com." has no address records (A or AAAA).; The NS record "awoofhost.com. IN NS ns4.awoofhost.com." has no address records (A or AAAA).
 
What about

# plesk repair dns

?

[root@tari ~]# plesk repair dns

Checking the DNS configuration file ................................. [OK]

Restoring DNS server configuration

Synchronize DNS zones with the DNS server? [Y/n] Y
Synchronizing DNS zones with the DNS server ..................... [OK]

Error messages: 0; Warnings: 0; Errors resolved: 0
 
Try to do following:

# cd /var/named/chroot/etc/
# mv named.conf named.conf.bak
# cp named.conf.default named.conf
# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql -u admin psa -Ns -e"SELECT name FROM dns_zone" | while read dz ; do /usr/local/psa/admin/sbin/dnsmng --update $dz ; done

and then restart DNS Server in Tools&Settings->Services Management and control that zones loaded successfully with

# tail -f /var/log/messages
 
Try to do following:

# cd /var/named/chroot/etc/
# mv named.conf named.conf.bak
# cp named.conf.default named.conf
# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql -u admin psa -Ns -e"SELECT name FROM dns_zone" | while read dz ; do /usr/local/psa/admin/sbin/dnsmng --update $dz ; done

and then restart DNS Server in Tools&Settings->Services Management and control that zones loaded successfully with

# tail -f /var/log/messages

Thanks....

when i add a domain it creates DNS records by using the default template..... thus getting its own nameserver records like ns1,ns2.newdomain.com but what if i dont want this? (creating all these records) i want all domains to using the server name server records?
 
Back
Top