• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Cannot start named

Nicecloud

New Pleskian
CentOS Linux 7.3.1611 (Core)‬
Produkt Plesk Onyx Version 17.0.17 Uppdatera #12, senast uppdaterad 2017-01-5 18.46

$ service named start
Redirecting to /bin/systemctl start named.service
Job for named.service failed because the control process exited with error code. See "systemctl status named.service" and "journalctl -xe" for details.
$ systemctl status named.service
● named.service - Berkeley Internet Name Domain (DNS)
Loaded: loaded (/usr/lib/systemd/system/named.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Thu 2017-01-05 22:49:54 CET; 1min 30s ago
Process: 30311 ExecStartPre=/bin/bash -c if [ ! "$DISABLE_ZONE_CHECKING" == "yes" ]; then /usr/sbin/named-checkconf -z /etc/named.conf; else echo "Checking of zone files is disabled"; fi (code=exited, status=1/FAILURE)

Jan 05 22:49:54 myhost.tld bash[30311]: _default/mydomain.tld/IN: file not found
.
.
.


It seems that named-checkconf cannot find /var/named directorys

if I start named manually it works, maybe it has to do with -t /var/named/chroot

$ /usr/sbin/named -u named -t /var/named/chroot -c /etc/named.conf -u named -n 2

temporary workaround with cron
*/5 * * * * kill -HUP $(cat /var/named/chroot/var/run/named/named.pid)
5 * * * * kill -9 $(cat /var/named/chroot/var/run/named/named.pid) ; /usr/sbin/named -u named -t /var/named/chroot -c /etc/named.conf -u named -n 2
 
Back
Top