Skip to content

PowerDNS Admin

not finished doc

This is done on FreeBSD 13.1 and with the help of: - https://www.howtoforge.com/how-to-install-powerdns-admin-on-ubuntu-20-04/ - https://github.com/PowerDNS-Admin/PowerDNS-Admin/issues/899 - https://github.com/PowerDNS-Admin/PowerDNS-Admin

bash
git clone https://github.com/ngoduykhanh/PowerDNS-Admin.git
cd PowerDNS-Admin
virtualenv -p python3 flask
source ./flask/bin/activate
remove python-ldap from requirements.txt
pip install -r requirements.txt
deactivate
configure DB connection: ```bash vim powerdnsadmin/default_config.py SQLA_DB_USER = 'dnsadmin' SQLA_DB_PASSWORD = 'mysecretpw' SQLA_DB_HOST = 'mariadb.domain.name' SQLA_DB_NAME = 'dnsadmin' BIND_ADDRESS = '::'