]> git.ipfire.org Git - thirdparty/pdns.git/blame - README.md
README: update copyright year
[thirdparty/pdns.git] / README.md
CommitLineData
ea937490 1PowerDNS is copyright © 2001-2020 by PowerDNS.COM BV and lots of
79a0f9ff
CH
2contributors, using the GNU GPLv2 license (see NOTICE for the
3exact license and exception used).
bdbf07f0 4
620e780a 5All documentation can be found on https://doc.powerdns.com/
48cfdbc4 6
1d329048 7This file may lag behind at times. For most recent updates, always check
3d79c2ac 8https://doc.powerdns.com/authoritative/changelog/
1d329048
BH
9
10Another good place to look for information is:
3d79c2ac 11https://doc.powerdns.com/authoritative/appendices/compiling.html
1d329048 12
2847a0d2 13To file bugs, head towards:
7d7b7179 14https://github.com/PowerDNS/pdns/issues
2847a0d2 15
7d7b7179 16But please check if the issue is already reported there first.
da5d2b0f 17
48cfdbc4 18SOURCE CODE / GIT
19-----------------
48cfdbc4 20Source code is available on GitHub:
21
d5f41e30
JS
22```sh
23git clone https://github.com/PowerDNS/pdns.git
6942a39e
PL
24```
25
26This repository contains the sources for the PowerDNS Recursor, the PowerDNS
27Authoritative Server, and dnsdist (a powerful DNS loadbalancer). All three can
28be built from this repository. However, all three released separately as .tar.bz2,
29.deb and .rpm.
48cfdbc4 30
6ea8f68f 31The different releases can be built by the help of pdns-builder, which uses a
32docker-based build process. To get started with this, run these commands in the root
33of this repository:
34
35```sh
36git submodule init
37git submodule update
38./builder/build.sh
39```
40
41This will bring up a USAGE-page which will explain how to build the different releases.
42
48cfdbc4 43COMPILING Authoritative Server
44------------------------------
3d79c2ac 45The PowerDNS Authoritative Server depends on Boost, OpenSSL and Lua, and requires a
6942a39e 46compiler with C++-2011 support.
1d329048 47
e5dae152 48On Debian 9, the following is useful:
3869cd3b 49
d5f41e30 50```sh
d86d172d 51apt install g++ libboost-all-dev libtool make pkg-config default-libmysqlclient-dev libssl-dev virtualenv libluajit-5.1-dev
6942a39e 52```
3869cd3b 53
e5dae152
JS
54When building from git, the following packages are also required:
55
56```sh
57apt install autoconf automake ragel bison flex
58```
59
c7ccd22e
CS
60For Ubuntu 18.04 (Bionic Beaver), the following packages should be installed:
61
62```sh
40b01bcf 63apt install libcurl4-openssl-dev luajit lua-yaml-dev libyaml-cpp-dev libtolua-dev lua5.3 autoconf automake ragel bison flex g++ libboost-all-dev libtool make pkg-config libssl-dev virtualenv lua-yaml-dev libyaml-cpp-dev libluajit-5.1-dev libcurl4 gawk libsqlite3-dev
cb264691 64# For DNSSEC ed25519 (algorithm 15) support with --with-libsodium
c7ccd22e
CS
65apt install libsodium-dev
66# If using the gmysql (Generic MySQL) backend
67apt install default-libmysqlclient-dev
68# If using the gpgsql (Generic PostgreSQL) backend
40b01bcf 69apt install libpq-dev
c7ccd22e
CS
70# If using --enable-systemd (will create the service scripts so it can be managed with systemctl/service)
71apt install libsystemd0 libsystemd-dev
72# If using the geoip backend
73apt install libmaxminddb-dev libmaxminddb0 libgeoip1 libgeoip-dev
74```
75
76Then generate the configure file:
3869cd3b 77
d5f41e30
JS
78```sh
79autoreconf -vi
6942a39e 80```
3869cd3b 81
d022a079 82To compile a very clean version, use:
2e938e5d 83
d5f41e30 84```sh
d86d172d 85./configure --with-modules="" --disable-lua-records
d5f41e30 86make
6942a39e
PL
87# make install
88```
2e938e5d 89
4486aaac 90This generates a PowerDNS Authoritative Server binary with no modules built in.
1d329048 91
c7ccd22e
CS
92See https://doc.powerdns.com/authoritative/backends/index.html for a list of available modules.
93
4486aaac 94When `./configure` is run without `--with-modules`, the bind and gmysql module are
1d329048 95built-in by default and the pipe-backend is compiled for runtime loading.
2e938e5d
BH
96
97To add multiple modules, try:
98
d5f41e30
JS
99```sh
100./configure --with-modules="bind gmysql gpgsql"
6942a39e 101```
2e938e5d 102
6942a39e
PL
103Note that you will need the development headers for PostgreSQL as well in this case.
104
c7ccd22e 105See https://doc.powerdns.com/authoritative/appendices/compiling.html for more details.
343546e5 106
cc2ee9e2
PD
107If you run into C++11-related symbol trouble, please try passing `CPPFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0` (or 1) to `./configure` to make sure you are compatible with the installed dependencies.
108
b1b2586e 109Compiling the Recursor
48cfdbc4 110----------------------
a9cad190 111See [README.md](pdns/recursordist/README.md) in `pdns/recursordist/`.
3e69796e 112
b1b2586e
CH
113Compiling dnsdist
114-----------------
a9cad190 115See [README-dnsdist.md](pdns/README-dnsdist.md) in `pdns/`.
e291c62e 116
c7ccd22e
CS
117Building the HTML documentation
118-------------------------------
119
120The HTML documentation (as seen [on the PowerDNS docs site](https://doc.powerdns.com/authoritative/)) is built from ReStructured Text (rst) files located in `docs`. They are compiled into HTML files using [Sphinx](http://www.sphinx-doc.org/en/master/index.html), a documentation generator tool which is built in Python.
121
c7ccd22e
CS
122Install the dependencies under "COMPILING", and run autoreconf if you haven't already:
123
124```sh
125autoreconf -vi
126```
127
128Enter the `docs` folder, and use make to build the HTML docs.
129
130```
131cd docs
132make html-docs
133```
134
135The HTML documentation will now be available in `html-docs`.
136
b1b2586e 137FreeBSD Notes
343546e5 138-------------
48cfdbc4 139You need to compile using gmake - regular make only appears to work, but doesn't in fact. Use gmake, not make.
5088e8bc 140
2bf96826
SM
141The clang compiler installed through FreeBSD's package manager does not expose all of the C++11 features needed under `std=gnuc++11`. Force the compiler to use `std=c++11` mode instead.
142
d5f41e30
JS
143```sh
144export CXXFLAGS=-std=c++11
b1b2586e 145```
2bf96826 146
b1b2586e
CH
147macOS Notes
148-----------
43a2814f 149PowerDNS Authoritative Server is available through Homebrew:
7d7b7179 150
6942a39e 151```
d5f41e30 152brew install pdns
6942a39e 153```
7d7b7179
JC
154
155If you want to compile yourself, the dependencies can be installed using
b1b2586e 156Homebrew. You need to tell configure where to find OpenSSL, too.
7d7b7179 157
d5f41e30
JS
158```sh
159brew install boost lua pkg-config ragel openssl
d86d172d 160./configure --with-modules="" PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig
d5f41e30 161make -j4
6942a39e 162```
7d7b7179 163
ed1015aa 164Additionally, for PostgreSQL support, run `brew install postgresql` and add `--with-modules="gpgsql"` to `./configure`.
b1b2586e 165For MySQL support, run `brew install mariadb` and add `--with-modules="gmysql"` to `./configure`.
7d7b7179 166
b1b2586e 167Linux notes
343546e5
BH
168-----------
169None really.