Power DNS

From W9CR
Revision as of 21:17, 15 May 2024 by Bryan (talk | contribs) (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....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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");