centos7编译安装powerdns-admin

0 说明

网上有很多教程,都是直接yum安装的,能安装但是不是最新,所以我打算折腾折腾。还有docker的一键安装方法,我本地也跑起来了,但是那叫一个卡出翔啊,而且还不容易查到底是哪的问题。至于ubuntu官网有安装教程,没啥好说的,直接看就是,centos7都已经好多年了,普及度还是比较高的,但是就奇怪为什么没有人写呢。。。。完全小白可能有部分看不懂,那就多搜

1 安装运行

1.1 yum

直接yum但是安装的并不是最新
yum install pdns.x86_64 pdns-backend-mysql.x86_64 -y
(不是最新,所以准备从源代码安装)

1.2 编译安装

大概分三大部分

数据库及相关表
安装pdns,编辑配置文件
安装powerdns-admin管理界面

1.2.1 数据库

算是准备工作吧,安装数据库
先安装MariaDB 或者mysql,用法一样,说明见

https://github.com/ngoduykhanh/PowerDNS-Admin/wiki/Prepare-MySQL-or-MariaDB-Database-for-PowerDNS-Admin

指定一下源

nano /etc/yum.repos.d/MariaDB.repo

内容

[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

不安装devel 后面会报错

yum install MariaDB-server MariaDB-client mariadb-devel -y

安装完后初始化数据库,下面按提示走吧。

mysql_secure_installation

然后记得开防火墙

firewall-cmd --add-service=mysql --permanent
firewall-cmd --reload

后面需要导入新建库表,按照说明来吧,不知道就搜。

1.2.2 powerdns

然后是powerdns
git clone https://github.com/PowerDNS/pdns
一些依赖环境

yum -y install bison flex gcc-c++ ragel boost boost-devel yaml-cpp yaml-cpp-devel.x86_64 lua  lua-devel.x86_64 libcurl-devel.x86_64 jq
yum group install "Development Tools"
cd pdns
autoreconf -vi

config一下

./configure --with-modules="bind gmysql geoip" --prefix=/usr #最后一个参数是指定配置文件位置,可以不要的,下面教程可能文件位置就是这个,你的话根据实际情况更改啊。我这只启用了3个模块,需求也是根据自己情况来了
make #尝试过加-j多线程,但是报错,后来就没有了
make install

修改配置文件

nano /usr/local/etc/pdns.conf

全文很长,这里只列出来需要的部分

launch=gmysql
gmysql-host=127.0.0.1
gmysql-user=root
gmysql-dbname=powerdns
gmysql-password=wojiushimima
#################################
# api   Enable/disable the REST API
# 
api=yes
#################################
# api-key       Static pre-shared authentication key for access to the REST API
# 
api-key=wojiushiapi
webserver=yes

数据库密码没啥说的,后面设置,这里按照情况填写就是了。需要说明一下的是,因为后面要powerdns-admin所以api是必须开的,api-key记住,后面要用

firewall-cmd --add-service=dns --permanent
firewall-cmd --reload

记得开防火墙

进行测试

curl -H 'X-API-Key: wojiushiapi' http://127.0.0.1:8081/api/v1/servers/localhost | jq .

这时候肯定是没有相关数据的,甚至数据库不对也会报错。。

1.2.3 powerdns-admin

相关文章参考

https://github.com/ngoduykhanh/PowerDNS-Admin/wiki/Running-PowerDNS-Admin-on-Centos-7

按照上面说的安装,然后下载源代码那么那么,然后按照教程即可,我懒得复制黏贴了,最后修改配置文件,涉及到数据库相关信息和api相关信息,最后

cd /opt/web/powerdns-admin/
. ./flask/bin/activate
./run.py
#还是记得要开防火墙
firewall-cmd --permanent --add-port=9191/tcp
firewall-cmd --reload

1.3 运行说明

两部分,
1 运行pdns_server (可以设置成deamo模式,可以修改配置文件实现,我是每次运行方便观察状态)
2 运行powerdns-admin 的web(记得flask)

1.4 主从问题

pdns.conf
需要设置允许从的ip地址axfr

pdns.conf

主的需要开
master=yes

从的需要开
slave=yes

如果不手动同步,3小时同步一次(从的上面点update完全没反应,但是实际上是同步好了的。。)

2 相关文章教程

https://doc.powerdns.com/authoritative/running.html
https://doc.powerdns.com/authoritative/settings.html#setting-master
https://doc.powerdns.com/authoritative/settings.html#setting-slave-renotify
https://www.helplib.com/GitHub/article_134007

附录

pdns_control help

ccounts                          get cache statistics
current-config                   retrieve the current configuration
list-zones [master|slave|native] show list of zones
notify                   queue a notification
notify-host        notify host for specific domain
purge []                 purge entries from packet cache
qtypes                           get QType statistics
quit                             quit daemon
rediscover                       discover any new zones
reload                           reload all zones
remotes                          get top remotes
respsizes                        get histogram of response sizes
retrieve                 retrieve slave domain
rping                            ping instance
set                  set config variables
show                  show a specific statistic or * to get a list
token-login    Login to a PKCS#11 token
uptime                           get instance uptime
version                          get instance version

ps.关于权威powerdns的一个坑

微信截图_20190116105355.png

即便你设置了glue records 在平台上还是需要有@的ns和下面的a

你可能感兴趣的:(centos7编译安装powerdns-admin)