Power DNS

From W9CR
Jump to navigation Jump to search

Notes for Power DNS.

Pdns needs mariadb, but on debian it doesn't have restart=always enabled. Run the following command to make the over ride file and reload the daemon.

echo -e "[Service]\nRestart=always\n" >> /etc/systemd/system/mariadb.service.d/override.conf && systemctl daemon-reload

mysql may bitch that it can't login as root with out a password:

FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED VIA unix_socket OR mysql_native_password USING PASSWORD("REALPASSWDHERE");