Plesk

Websites hosted in Plesk cannot be accessed on Debian/Ubuntu after a dist-upgrade: DNSPROBE FINISHED ERROR

Symptoms

Cause

BIND configuration is incorrect: BIND service startup option is different from the below:

# grep OPTIONS /etc/default/named
...
OPTIONS=" -t /var/named/run-root -c /etc/named.conf -u bind -n 2"

This may happen after a dist-upgrade.

Resolution

  1. Connect to the Plesk server via SSH.

  2. Open the file /etc/default/named in a text editor. In this example, we are using the vi editor:

    # vi /etc/default/named

  3. Find the OPTIONS parameter and change its value to:

    OPTIONS=" -t /var/named/run-root -c /etc/named.conf -u bind -n 2"

  4. Save the changes and close the file.

  5. Restart the BIND service:

    # service named restart

    # service bind9 restart

Exit mobile version