• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Question 2 Plesk servers as Master and one server as Slave setup

kevinmamaqi

New Pleskian
I have two VPS running obsidian on ubuntu 20.04. I am using them as master DNS servers and running the slave dns manager extensions to point to a third server that has BIND9, being used as a slave. My setup is the following (named.conf) and server 1.1.1.1 works, but 2.2.2.2 doesn't. Am I missing something? Is this even possible?


Code:
key "rndc-key-1.1.1.1" {
    algorithm hmac-md5;
    secret "mysecret1";
};

key "rndc-key-2.2.2.2" {
    algorithm hmac-md5;
    secret "mysecret2";
};

controls {
    inet * port 953 allow { 1.1.1.1; 2.2.2.2; 127.0.0.1; } keys { "rndc-key-1.1.1.1"; "rndc-key-2.2.2.2"; };
};
 
Last edited:
Hi kevinmamaqi,

Have you checked log files on all three servers? Are there any errors or warnings?
This configuration could work but it could cause issues if the same domain is existing on two master servers at the same time because they will overwrite the information on the slave server.
 
Hi AYamshanov,

Which logs should I check? Server 1 (Plesk master) and Bind9 (slave) works well, the problem is that when I add the server 2 (Plesk master2) it doesn't authenticate properly with the slave manager ui. The message is: rndc: connection to remote host closed.

I also noticed that I have a file in BIND9 slave server called rndc.key with the following content:


Code:
key "rndc-key" {
        algorithm hmac-md5;
        secret "mysecret1";
};
 
Back
Top