]> git.ipfire.org Git - thirdparty/pdns.git/blob - README.md
Make sure we can install unsigned packages.
[thirdparty/pdns.git] / README.md
1 PowerDNS is copyright © 2001-2019 by PowerDNS.COM BV and lots of
2 contributors, using the GNU GPLv2 license (see NOTICE for the
3 exact license and exception used).
4
5 All documentation can be found on https://doc.powerdns.com/
6
7 This file may lag behind at times. For most recent updates, always check
8 https://doc.powerdns.com/md/changelog/.
9
10 Another good place to look for information is:
11 https://doc.powerdns.com/md/appendix/compiling-powerdns/
12
13 To file bugs, head towards:
14 https://github.com/PowerDNS/pdns/issues
15
16 But please check if the issue is already reported there first.
17
18 SOURCE CODE / GIT
19 -----------------
20 Source code is available on GitHub:
21
22 ```sh
23 git clone https://github.com/PowerDNS/pdns.git
24 ```
25
26 This repository contains the sources for the PowerDNS Recursor, the PowerDNS
27 Authoritative Server, and dnsdist (a powerful DNS loadbalancer). All three can
28 be built from this repository. However, all three released separately as .tar.bz2,
29 .deb and .rpm.
30
31 The different releases can be built by the help of pdns-builder, which uses a
32 docker-based build process. To get started with this, run these commands in the root
33 of this repository:
34
35 ```sh
36 git submodule init
37 git submodule update
38 ./builder/build.sh
39 ```
40
41 This will bring up a USAGE-page which will explain how to build the different releases.
42
43 COMPILING Authoritative Server
44 ------------------------------
45 The PowerDNS Authoritative Server depends on Boost, OpenSSL and requires a
46 compiler with C++-2011 support.
47
48 On Debian 9, the following is useful:
49
50 ```sh
51 apt install g++ libboost-all-dev libtool make pkg-config default-libmysqlclient-dev libssl-dev virtualenv libluajit-5.1-dev
52 ```
53
54 When building from git, the following packages are also required:
55
56 ```sh
57 apt install autoconf automake ragel bison flex
58 ```
59
60 For Ubuntu 18.04 (Bionic Beaver), the following packages should be installed:
61
62 ```sh
63 apt 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
64 # For DNSSEC ed25519 (algorithm 15) support with --with-libsodium
65 apt install libsodium-dev
66 # If using the gmysql (Generic MySQL) backend
67 apt install default-libmysqlclient-dev
68 # If using the gpgsql (Generic PostgreSQL) backend
69 apt install postgresql-server-dev-10
70 # If using --enable-systemd (will create the service scripts so it can be managed with systemctl/service)
71 apt install libsystemd0 libsystemd-dev
72 # If using the geoip backend
73 apt install libmaxminddb-dev libmaxminddb0 libgeoip1 libgeoip-dev
74 ```
75
76 Then generate the configure file:
77
78 ```sh
79 autoreconf -vi
80 ```
81
82 To compile a very clean version, use:
83
84 ```sh
85 ./configure --with-modules="" --disable-lua-records
86 make
87 # make install
88 ```
89
90 This generates a PowerDNS Authoritative Server binary with no modules built in.
91
92 See https://doc.powerdns.com/authoritative/backends/index.html for a list of available modules.
93
94 When `./configure` is run without `--with-modules`, the bind and gmysql module are
95 built-in by default and the pipe-backend is compiled for runtime loading.
96
97 To add multiple modules, try:
98
99 ```sh
100 ./configure --with-modules="bind gmysql gpgsql"
101 ```
102
103 Note that you will need the development headers for PostgreSQL as well in this case.
104
105 See https://doc.powerdns.com/authoritative/appendices/compiling.html for more details.
106
107 If 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
109 Compiling the Recursor
110 ----------------------
111 See [README.md](pdns/recursordist/README.md) in `pdns/recursordist/`.
112
113 Compiling dnsdist
114 -----------------
115 See [README-dnsdist.md](pdns/README-dnsdist.md) in `pdns/`.
116
117 Building the HTML documentation
118 -------------------------------
119
120 The 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
122 **Using a normal Python installation**
123
124 For those simply contributing to the documentation, this avoids needing to install the various build
125 tools and other dependencies.
126
127 Install Python 2.7 or Python 3 (preferable) if you don't yet have it installed. On some operating
128 systems you may also have to install `python3-pip` or similarly named.
129
130 Ubuntu 16.04 / 18.04
131
132 ```sh
133 apt update
134 apt install python3 python3-pip python3-venv
135 ```
136
137 macOS (using homebrew)
138
139 ```sh
140 brew install python3
141 ```
142
143 Update your `pip` and install/update `virtualenv` to avoid problems:
144
145 ```sh
146 # for python2, use "pip" instead of "pip3"
147 pip3 install -U pip
148 pip3 install -U virtualenv
149 ```
150
151 Enter the repository's `docs` folder, set up the virtualenv, and install the requirements
152
153 ```sh
154 cd docs
155 # for python2, use "virtualenv .venv" instead
156 python3 -m venv .venv
157 source .venv/bin/activate
158 # The virtualenv may use an older pip, so upgrade it again
159 pip3 install -U pip setuptools setuptools-git
160 # Now you can install the requirements
161 pip3 install -r requirements.txt
162 ```
163
164 Finally, you can build the documentation:
165
166 ```sh
167 sphinx-build . html-docs
168 ```
169
170 Note: If your shell has problems finding sphinx-build, try using `.venv/bin/sphinx-build` instead.
171
172 The HTML documentation is now available in `html-docs`.
173
174 **Using the build tools**
175
176 This method is preferable for those who already have a working build environment for PowerDNS.
177
178 Install the dependencies under "COMPILING", and run autoreconf if you haven't already:
179
180 ```sh
181 autoreconf -vi
182 ```
183
184 Enter the `docs` folder, and use make to build the HTML docs.
185
186 ```
187 cd docs
188 make html-docs
189 ```
190
191 The HTML documentation will now be available in `html-docs`.
192
193 Solaris Notes
194 -------------
195 Use a recent gcc (and other build tools), possibly from Solaris 11 IPS.
196
197 If you encounter problems with the Solaris make, gmake is advised.
198
199 FreeBSD Notes
200 -------------
201 You need to compile using gmake - regular make only appears to work, but doesn't in fact. Use gmake, not make.
202
203 The 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.
204
205 ```sh
206 export CXXFLAGS=-std=c++11
207 ```
208
209 macOS Notes
210 -----------
211 PowerDNS Authoritative Server is available through Homebrew:
212
213 ```
214 brew install pdns
215 ```
216
217 If you want to compile yourself, the dependencies can be installed using
218 Homebrew. You need to tell configure where to find OpenSSL, too.
219
220 ```sh
221 brew install boost lua pkg-config ragel openssl
222 ./configure --with-modules="" PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig
223 make -j4
224 ```
225
226 Additionally, for PostgreSQL support, run `brew install postgresql` and add `--with-modules="gpgsql"` to `./configure`.
227 For MySQL support, run `brew install mariadb` and add `--with-modules="gmysql"` to `./configure`.
228
229 Linux notes
230 -----------
231 None really.