]> git.ipfire.org Git - thirdparty/pdns.git/blame - README.md
Merge pull request #7677 from rgacogne/dnsdist-logging-facility
[thirdparty/pdns.git] / README.md
CommitLineData
79fb4337 1PowerDNS is copyright © 2001-2019 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
48cfdbc4 5All documentation can be found on http://doc.powerdns.com/
6
1d329048 7This file may lag behind at times. For most recent updates, always check
f778b0f4 8https://doc.powerdns.com/md/changelog/.
1d329048
BH
9
10Another good place to look for information is:
75c698a7 11https://doc.powerdns.com/md/appendix/compiling-powerdns/
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
31COMPILING Authoritative Server
32------------------------------
6942a39e
PL
33The PowerDNS Authoritative Server depends on Boost, OpenSSL and requires a
34compiler with C++-2011 support.
1d329048 35
e5dae152 36On Debian 9, the following is useful:
3869cd3b 37
d5f41e30 38```sh
e5dae152 39apt install g++ libboost-all-dev libtool make pkg-config default-libmysqlclient-dev libssl-dev virtualenv
6942a39e 40```
3869cd3b 41
e5dae152
JS
42When building from git, the following packages are also required:
43
44```sh
45apt install autoconf automake ragel bison flex
46```
47
c7ccd22e
CS
48For Ubuntu 18.04 (Bionic Beaver), the following packages should be installed:
49
50```sh
51apt 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
cb264691 52# For DNSSEC ed25519 (algorithm 15) support with --with-libsodium
c7ccd22e
CS
53apt install libsodium-dev
54# If using the gmysql (Generic MySQL) backend
55apt install default-libmysqlclient-dev
56# If using the gpgsql (Generic PostgreSQL) backend
57apt install postgresql-server-dev-10
58# If using --enable-systemd (will create the service scripts so it can be managed with systemctl/service)
59apt install libsystemd0 libsystemd-dev
60# If using the geoip backend
61apt install libmaxminddb-dev libmaxminddb0 libgeoip1 libgeoip-dev
62```
63
64Then generate the configure file:
3869cd3b 65
d5f41e30
JS
66```sh
67autoreconf -vi
6942a39e 68```
3869cd3b 69
d022a079 70To compile a very clean version, use:
2e938e5d 71
d5f41e30
JS
72```sh
73./configure --with-modules="" --without-lua --disable-lua-records
74make
6942a39e
PL
75# make install
76```
2e938e5d 77
4486aaac 78This generates a PowerDNS Authoritative Server binary with no modules built in.
1d329048 79
c7ccd22e
CS
80See https://doc.powerdns.com/authoritative/backends/index.html for a list of available modules.
81
4486aaac 82When `./configure` is run without `--with-modules`, the bind and gmysql module are
1d329048 83built-in by default and the pipe-backend is compiled for runtime loading.
2e938e5d
BH
84
85To add multiple modules, try:
86
d5f41e30
JS
87```sh
88./configure --with-modules="bind gmysql gpgsql"
6942a39e 89```
2e938e5d 90
6942a39e
PL
91Note that you will need the development headers for PostgreSQL as well in this case.
92
c7ccd22e 93See https://doc.powerdns.com/authoritative/appendices/compiling.html for more details.
343546e5 94
cc2ee9e2
PD
95If 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.
96
b1b2586e 97Compiling the Recursor
48cfdbc4 98----------------------
a9cad190 99See [README.md](pdns/recursordist/README.md) in `pdns/recursordist/`.
3e69796e 100
b1b2586e
CH
101Compiling dnsdist
102-----------------
a9cad190 103See [README-dnsdist.md](pdns/README-dnsdist.md) in `pdns/`.
e291c62e 104
c7ccd22e
CS
105Building the HTML documentation
106-------------------------------
107
108The 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.
109
110**Using a normal Python installation**
111
112For those simply contributing to the documentation, this avoids needing to install the various build
113tools and other dependencies.
114
115Install Python 2.7 or Python 3 (preferable) if you don't yet have it installed. On some operating
116systems you may also have to install `python3-pip` or similarly named.
117
118Ubuntu 16.04 / 18.04
119
120```sh
121apt update
122apt install python3 python3-pip python3-venv
123```
124
125macOS (using homebrew)
126
127```sh
128brew install python3
129```
130
131Update your `pip` and install/update `virtualenv` to avoid problems:
132
133```sh
134# for python2, use "pip" instead of "pip3"
135pip3 install -U pip
136pip3 install -U virtualenv
137```
138
139Enter the repository's `docs` folder, set up the virtualenv, and install the requirements
140
141```sh
142cd docs
143# for python2, use "virtualenv .venv" instead
144python3 -m venv .venv
145source .venv/bin/activate
146# The virtualenv may use an older pip, so upgrade it again
147pip3 install -U pip setuptools setuptools-git
148# Now you can install the requirements
149pip3 install -r requirements.txt
150```
151
152Finally, you can build the documentation:
153
154```sh
155sphinx-build . html-docs
156```
157
158Note: If your shell has problems finding sphinx-build, try using `.venv/bin/sphinx-build` instead.
159
160The HTML documentation is now available in `html-docs`.
161
162**Using the build tools**
163
164This method is preferable for those who already have a working build environment for PowerDNS.
165
166Install the dependencies under "COMPILING", and run autoreconf if you haven't already:
167
168```sh
169autoreconf -vi
170```
171
172Enter the `docs` folder, and use make to build the HTML docs.
173
174```
175cd docs
176make html-docs
177```
178
179The HTML documentation will now be available in `html-docs`.
180
b1b2586e 181Solaris Notes
343546e5 182-------------
843aae1e 183Use a recent gcc. OpenCSW is a good source, as is Solaris 11 IPS.
152b4591 184
48cfdbc4 185If you encounter problems with the Solaris make, gmake is advised.
343546e5 186
b1b2586e 187FreeBSD Notes
343546e5 188-------------
48cfdbc4 189You need to compile using gmake - regular make only appears to work, but doesn't in fact. Use gmake, not make.
5088e8bc 190
2bf96826
SM
191The 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.
192
d5f41e30
JS
193```sh
194export CXXFLAGS=-std=c++11
b1b2586e 195```
2bf96826 196
b1b2586e
CH
197macOS Notes
198-----------
43a2814f 199PowerDNS Authoritative Server is available through Homebrew:
7d7b7179 200
6942a39e 201```
d5f41e30 202brew install pdns
6942a39e 203```
7d7b7179
JC
204
205If you want to compile yourself, the dependencies can be installed using
b1b2586e 206Homebrew. You need to tell configure where to find OpenSSL, too.
7d7b7179 207
d5f41e30
JS
208```sh
209brew install boost lua pkg-config ragel openssl
210./configure --with-modules="" --with-lua PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig
211make -j4
6942a39e 212```
7d7b7179 213
ed1015aa 214Additionally, for PostgreSQL support, run `brew install postgresql` and add `--with-modules="gpgsql"` to `./configure`.
b1b2586e 215For MySQL support, run `brew install mariadb` and add `--with-modules="gmysql"` to `./configure`.
7d7b7179 216
b1b2586e 217Linux notes
343546e5
BH
218-----------
219None really.