Difference between revisions of "Power DNS"

From W9CR
Jump to navigation Jump to search
(Created page with "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....")
 
(No difference)

Latest revision as of 20:17, 15 May 2024

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");