]> git.ipfire.org Git - thirdparty/pdns.git/blame_incremental - README.md
builder: error out when no valid modules are specified
[thirdparty/pdns.git] / README.md
... / ...
CommitLineData
1PowerDNS is copyright © 2001-2019 by PowerDNS.COM BV and lots of
2contributors, using the GNU GPLv2 license (see NOTICE for the
3exact license and exception used).
4
5All documentation can be found on http://doc.powerdns.com/
6
7This file may lag behind at times. For most recent updates, always check
8https://doc.powerdns.com/md/changelog/.
9
10Another good place to look for information is:
11https://doc.powerdns.com/md/appendix/compiling-powerdns/
12
13To file bugs, head towards:
14https://github.com/PowerDNS/pdns/issues
15
16But please check if the issue is already reported there first.
17
18SOURCE CODE / GIT
19-----------------
20Source code is available on GitHub:
21
22```sh
23git clone https://github.com/PowerDNS/pdns.git
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.
30
31COMPILING Authoritative Server
32------------------------------
33The PowerDNS Authoritative Server depends on Boost, OpenSSL and requires a
34compiler with C++-2011 support.
35
36On Debian 9, the following is useful:
37
38```sh
39apt install g++ libboost-all-dev libtool make pkg-config default-libmysqlclient-dev libssl-dev virtualenv
40```
41
42When building from git, the following packages are also required:
43
44```sh
45apt install autoconf automake ragel bison flex
46```
47
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
52# For DNSSEC ed25519 (algorithm 15) support with --with-libsodium
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:
65
66```sh
67autoreconf -vi
68```
69
70To compile a very clean version, use:
71
72```sh
73./configure --with-modules="" --without-lua --disable-lua-records
74make
75# make install
76```
77
78This generates a PowerDNS Authoritative Server binary with no modules built in.
79
80See https://doc.powerdns.com/authoritative/backends/index.html for a list of available modules.
81
82When `./configure` is run without `--with-modules`, the bind and gmysql module are
83built-in by default and the pipe-backend is compiled for runtime loading.
84
85To add multiple modules, try:
86
87```sh
88./configure --with-modules="bind gmysql gpgsql"
89```
90
91Note that you will need the development headers for PostgreSQL as well in this case.
92
93See https://doc.powerdns.com/authoritative/appendices/compiling.html for more details.
94
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
97Compiling the Recursor
98----------------------
99See [README.md](pdns/recursordist/README.md) in `pdns/recursordist/`.
100
101Compiling dnsdist
102-----------------
103See [README-dnsdist.md](pdns/README-dnsdist.md) in `pdns/`.
104
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
181Solaris Notes
182-------------
183Use a recent gcc. OpenCSW is a good source, as is Solaris 11 IPS.
184
185If you encounter problems with the Solaris make, gmake is advised.
186
187FreeBSD Notes
188-------------
189You need to compile using gmake - regular make only appears to work, but doesn't in fact. Use gmake, not make.
190
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
193```sh
194export CXXFLAGS=-std=c++11
195```
196
197macOS Notes
198-----------
199PowerDNS Authoritative Server is available through Homebrew:
200
201```
202brew install pdns
203```
204
205If you want to compile yourself, the dependencies can be installed using
206Homebrew. You need to tell configure where to find OpenSSL, too.
207
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
212```
213
214Additionally, for PostgreSQL support, run `brew install postgresql` and add `--with-modules="gpgsql"` to `./configure`.
215For MySQL support, run `brew install mariadb` and add `--with-modules="gmysql"` to `./configure`.
216
217Linux notes
218-----------
219None really.