]> granicus.if.org Git - icinga2/blob - INSTALL.md
cb34dfd03ca2ed2a91774884e6373d986e96be7d
[icinga2] / INSTALL.md
1 # Installing Icinga 2
2
3 The recommended way of installing Icinga 2 is to use packages. The Icinga
4 project provides both release and development packages for a number
5 of operating systems.
6
7 Please check the documentation in the [doc/](doc/) directory for a current list
8 of available packages and detailed installation instructions.
9
10 The online documentation is available on [icinga.com/docs](https://www.icinga.com/docs/)
11 and will guide you step by step.
12
13 There are a number of known caveats when installing from source such as
14 incorrect directory and file permissions. So even if you're planning to
15 not use the official packages it is advisable to build your own Debian
16 or RPM packages.
17
18 **Disclaimer**
19
20 This information is intended for developers and packagers. It might be incomplete or unclear
21 in some cases. Make also sure to check our [packaging scripts on GitHub](https://github.com/Icinga/icinga-packaging)!
22
23 # Build Requirements
24
25 The following requirements need to be fulfilled in order to build the
26 application using a dist tarball (including notes for distributions):
27
28 * cmake >= 2.6
29 * GNU make (make) or ninja-build
30 * C++ compiler which supports C++11
31   - RHEL/Fedora/SUSE: gcc-c++ >= 4.7 (extra Developer Tools on RHEL5/6 see below)
32   - Debian/Ubuntu: build-essential
33   - Alpine: build-base
34   - you can also use clang++
35 * pkg-config
36 * OpenSSL library and header files >= 1.0.1
37   - RHEL/Fedora: openssl-devel
38   - SUSE: libopenssl-devel (for SLES 11: libopenssl1-devel)
39   - Debian/Ubuntu: libssl-dev
40   - Alpine: libressl-dev
41 * Boost library and header files >= 1.48.0
42   - RHEL/Fedora: boost148-devel
43   - Debian/Ubuntu: libboost-all-dev
44   - Alpine: boost-dev
45 * GNU bison (bison)
46 * GNU flex (flex) >= 2.5.35
47
48 ## Optional features
49
50 * MySQL (disable with CMake variable `ICINGA2_WITH_MYSQL` to `OFF`)
51   - RHEL/Fedora: mysql-devel
52   - SUSE: libmysqlclient-devel
53   - Debian/Ubuntu: default-libmysqlclient-dev | libmysqlclient-dev
54   - Alpine: mariadb-dev
55 * PostgreSQL (disable with CMake variable `ICINGA2_WITH_PGSQL` to `OFF`)
56   - RHEL/Fedora: postgresql-devel
57   - Debian/Ubuntu: libpq-dev
58   - postgresql-dev on Alpine
59 * YAJL (Faster JSON library)
60   - RHEL/Fedora: yajl-devel
61   - Debian: libyajl-dev
62   - Alpine: yajl-dev
63 * libedit (CLI console)
64   - RHEL/Fedora: libedit-devel on CentOS (RHEL requires rhel-7-server-optional-rpms)
65   - Debian/Ubuntu/Alpine: libedit-dev
66 * Termcap (only required if libedit doesn't already link against termcap/ncurses)
67   - RHEL/Fedora: libtermcap-devel
68   - Debian/Ubuntu: (not necessary)
69 * wxWidgets (only required when building the Icinga 2 Studio)
70   - Fedora: wxGTK-devel and wxBase
71   - Debian/Ubuntu: libwxgtk2.8-dev
72
73 ## Special requirements
74
75 **FreeBSD**: libexecinfo (automatically used when Icinga 2 is installed via port or package)
76
77 **RHEL5** ships an ancient flex version. Updated packages are available for
78 example from the repoforge buildtools repository.
79
80 * x86: https://mirror.hs-esslingen.de/repoforge/redhat/el5/en/i386/buildtools/
81 * x86\_64: https://mirror.hs-esslingen.de/repoforge/redhat/el5/en/x86\_64/buildtools/
82
83 ## Runtime user environment
84
85 By default Icinga will run as user 'icinga' and group 'icinga'. Additionally the
86 external command pipe and livestatus features require a dedicated command group
87 'icingacmd'. You can choose your own user/group names and pass them to CMake
88 using the `ICINGA2_USER`, `ICINGA2_GROUP` and `ICINGA2_COMMAND_GROUP` variables.
89 ```
90 # groupadd icinga
91 # groupadd icingacmd
92 # useradd -c "icinga" -s /sbin/nologin -G icingacmd -g icinga icinga
93 ```
94
95 On Alpine (which uses ash busybox) you can run:
96 ```
97 # addgroup -S icinga
98 # addgroup -S icingacmd
99 # adduser -S -D -H -h /var/spool/icinga2 -s /sbin/nologin -G icinga -g icinga icinga
100 # adduser icinga icingacmd
101 ```
102
103 Add the web server user to the icingacmd group in order to grant it write
104 permissions to the external command pipe and livestatus socket:
105 ```
106 # usermod -a -G icingacmd www-data
107 ```
108
109 Make sure to replace "www-data" with the name of the user your web server
110 is running as.
111
112 # Building Icinga 2
113
114 Once you have installed all the necessary build requirements you can build
115 Icinga 2 using the following commands:
116 ```
117 $ mkdir build && cd build
118 $ cmake ..
119 $ make
120 $ make install
121 ```
122
123 You can specify an alternative installation prefix using `-DCMAKE_INSTALL_PREFIX`:
124 ```
125 $ cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/icinga2
126 ```
127
128 ## CMake Variables
129
130 In addition to `CMAKE_INSTALL_PREFIX` here are most of the supported Icinga-specific cmake variables.
131
132 **System Environment**
133 - `ICINGA2_GIT_VERSION_INFO`: Whether to use Git to determine the version number; defaults to `ON`
134 - `ICINGA2_USER`: The user Icinga 2 should run as; defaults to `icinga`
135 - `ICINGA2_GROUP`: The group Icinga 2 should run as; defaults to `icinga`
136 - `ICINGA2_COMMAND_GROUP`: The command group Icinga 2 should use; defaults to `icingacmd`
137 - `ICINGA2_RUNDIR`: The location of the "run" directory; defaults to `CMAKE_INSTALL_LOCALSTATEDIR/run`
138 - `CMAKE_INSTALL_SYSCONFDIR`: The configuration directory; defaults to `CMAKE_INSTALL_PREFIX/etc`
139 - `ICINGA2_SYSCONFIGFILE`: Where to put the config file the initscript/systemd pulls it's dirs from;
140   defaults to `CMAKE_INSTALL_PREFIX/etc/sysconfig/icinga2`
141 - `CMAKE_INSTALL_LOCALSTATEDIR`: The state directory; defaults to `CMAKE_INSTALL_PREFIX/var`
142 - `ICINGA2_PLUGINDIR`: The path for the Monitoring Plugins project binaries; defaults to `/usr/lib/nagios/plugins`
143
144 **Build Optimization**
145 - `ICINGA2_UNITY_BUILD`: Whether to perform a unity build; defaults to `ON`
146 - `ICINGA2_LTO_BUILD`: Whether to use link time optimization (LTO); defaults to `OFF`
147
148 **Init System**
149 - `USE_SYSTEMD=ON|OFF`: Use systemd or a classic SysV initscript; defaults to `OFF`
150 - `INSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=ON|OFF` Force install both the systemd service definition file
151   and the SysV initscript in parallel, regardless of how `USE_SYSTEMD` is set.
152   Only use this for special packaging purposes and if you know what you are doing.
153   Defaults to `OFF`.
154
155 **Features:**
156 - `ICINGA2_WITH_MYSQL`: Determines whether the MySQL IDO module is built; defaults to `ON`
157 - `ICINGA2_WITH_PGSQL`: Determines whether the PostgreSQL IDO module is built; defaults to `ON`
158 - `ICINGA2_WITH_CHECKER`: Determines whether the checker module is built; defaults to `ON`
159 - `ICINGA2_WITH_COMPAT`: Determines whether the compat module is built; defaults to `ON`
160 - `ICINGA2_WITH_DEMO`: Determines whether the demo module is built; defaults to `OFF`
161 - `ICINGA2_WITH_HELLO`: Determines whether the hello module is built; defaults to `OFF`
162 - `ICINGA2_WITH_LIVESTATUS`: Determines whether the Livestatus module is built; defaults to `ON`
163 - `ICINGA2_WITH_NOTIFICATION`: Determines whether the notification module is built; defaults to `ON`
164 - `ICINGA2_WITH_PERFDATA`: Determines whether the perfdata module is built; defaults to `ON`
165 - `ICINGA2_WITH_STUDIO`: Determines whether the Icinga Studio application is built; defaults to `OFF`
166 - `ICINGA2_WITH_TESTS`: Determines whether the unit tests are built; defaults to `ON`
167
168 **Version detection:**
169
170 CMake determines the Icinga 2 version number using `git describe` if the
171 source directory is contained in a Git repository. Otherwise the version number
172 is extracted from the [icinga2.spec](icinga2.spec) file. This behavior can be
173 overridden by creating a file called `icinga-version.h.force` in the source
174 directory. Alternatively the `-DICINGA2_GIT_VERSION_INFO=OFF` option for CMake
175 can be used to disable the usage of `git describe`.
176
177 # Building packages
178
179 > **WARNING:** Some of this information is outdated!
180
181 ## Building RPMs
182
183 ### Build Environment on RHEL, CentOS, Fedora, Amazon Linux
184
185 Setup your build environment:
186 ```
187 yum -y install rpmdevtools
188 ```
189
190 ### Build Environment on SuSE/SLES
191
192 SLES:
193 ```
194 zypper addrepo http://download.opensuse.org/repositories/devel:tools/SLE_12_SP2/devel:tools.repo
195 zypper refresh
196 zypper install rpmdevtools spectool
197 ```
198
199 OpenSuSE:
200 ```
201 zypper addrepo http://download.opensuse.org/repositories/devel:tools/openSUSE_Leap_42.3/devel:tools.repo
202 zypper refresh
203 zypper install rpmdevtools spectool
204 ```
205
206 ### Package Builds
207
208 Prepare the rpmbuild directory tree:
209 ```
210 cd $HOME
211 rpmdev-setuptree
212 ```
213
214 Copy the icinga2.spec file to `rpmbuild/SPEC` or fetch the latest version:
215 ```
216 curl https://raw.githubusercontent.com/Icinga/icinga2/master/icinga2.spec -o $HOME/rpmbuild/SPECS/icinga2.spec
217 ```
218
219 Copy the tarball to `rpmbuild/SOURCES` e.g. by using the `spectool` binary
220 provided with `rpmdevtools`:
221 ```
222 cd $HOME/rpmbuild/SOURCES
223 spectool -g ../SPECS/icinga2.spec
224
225 cd $HOME/rpmbuild
226 ```
227
228 Install the build dependencies. Example for CentOS 7:
229 ```
230 yum -y install libedit-devel ncurses-devel gcc-c++ libstdc++-devel openssl-devel \
231 cmake flex bison boost-devel systemd mysql-devel postgresql-devel httpd \
232 selinux-policy-devel checkpolicy selinux-policy selinux-policy-doc
233 ```
234
235 Note: If you are using Amazon Linux, systemd is not required.
236
237 A shorter way is available using the `yum-builddep` command on RHEL based systems:
238 ```
239 yum-builddep SPECS/icinga2.spec
240 ```
241
242 Build the RPM:
243 ```
244 rpmbuild -ba SPECS/icinga2.spec
245 ```
246
247 ### Additional Hints
248
249 #### SELinux policy module
250
251 The following packages are required to build the SELinux policy module:
252
253 * checkpolicy
254 * selinux-policy (selinux-policy on CentOS 6, selinux-policy-devel on CentOS 7)
255 * selinux-policy-doc
256
257 #### RHEL/CentOS 5 and 6
258
259 The RedHat Developer Toolset is required for building Icinga 2 beforehand.
260 This contains a modern version of flex and a C++ compiler which supports
261 C++11 features.
262 ```
263 cat >/etc/yum.repos.d/devtools-2.repo <<REPO
264 [testing-devtools-2-centos-\$releasever]
265 name=testing 2 devtools for CentOS $releasever
266 baseurl=https://people.centos.org/tru/devtools-2/\$releasever/\$basearch/RPMS
267 gpgcheck=0
268 REPO
269 ```
270
271 Dependencies to devtools-2 are used in the RPM SPEC, so the correct tools
272 should be used for building.
273
274 As an alternative, you can use newer Boost packages provided on
275 [packages.icinga.com](https://packages.icinga.com/epel).
276 ```
277 cat >$HOME/.rpmmacros <<MACROS
278 %build_icinga_org 1
279 MACROS
280 ```
281
282 #### Amazon Linux
283
284 If you prefer to build packages offline, a suitable Vagrant box is located
285 [here](https://atlas.hashicorp.com/mvbcoding/boxes/awslinux/).
286
287 #### SLES 11
288
289 The Icinga repository provides the required boost package version and must be
290 added before building.
291
292 ## Build Debian/Ubuntu packages
293
294 > **WARNING:** This information is outdated!
295
296 Setup your build environment on Debian/Ubuntu, copy the 'debian' directory from
297 the Debian packaging Git repository (https://github.com/Icinga/pkg-icinga2-debian)
298 into your source tree and run the following command:
299 ```
300 $ dpkg-buildpackage -uc -us
301 ```
302
303 ## Build Alpine Linux packages
304
305 A simple way to setup a build environment is installing Alpine in a chroot.
306 In this way, you can set up an Alpine build environment in a chroot under a
307 different Linux distro.
308 There is a script that simplifies these steps with just two commands, and
309 can be found [here](https://github.com/alpinelinux/alpine-chroot-install).
310
311 Once the build environment is installed, you can setup the system to build
312 the packages by following [this document](https://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package).
313
314 # Build Post Install Tasks
315
316 After building Icinga 2 yourself, your package build system should at least run the following post
317 install requirements:
318
319 * enable the `checker`, `notification` and `mainlog` feature by default
320 * run 'icinga2 api setup' in order to enable the `api` feature and generate SSL certificates for the node
321
322 ## Run Icinga 2
323
324 Icinga 2 comes with a binary that takes care of loading all the relevant
325 components (e.g. for check execution, notifications, etc.):
326 ```
327 # icinga2 daemon
328 [2016-12-08 16:44:24 +0100] information/cli: Icinga application loader (version: v2.5.4-231-gb10a6b7; debug)
329 [2016-12-08 16:44:24 +0100] information/cli: Loading configuration file(s).
330 [2016-12-08 16:44:25 +0100] information/ConfigItem: Committing config item(s).
331 ...
332 ```
333
334 ### Init Script
335
336 Icinga 2 can be started as a daemon using the provided init script:
337 ```
338 # /etc/init.d/icinga2
339 Usage: /etc/init.d/icinga2 {start|stop|restart|reload|checkconfig|status}
340 ```
341
342 ### Systemd
343
344 If your distribution uses Systemd:
345 ```
346 # systemctl {start|stop|reload|status|enable|disable} icinga2
347 ```
348
349 In case the distribution is running Systemd >227, you'll also
350 need to package and install the `etc/initsystem/icinga2.service.limits.conf`
351 file into `/etc/systemd/system/icinga2.service.d`.
352
353 ### openrc
354
355 Or if your distribution uses openrc (like Alpine):
356 ```
357 # rc-service icinga2
358 Usage: /etc/init.d/icinga2 {start|stop|restart|reload|checkconfig|status}
359   ```
360
361 Note: the openrc's init.d is not shipped by default.
362 A working init.d with openrc can be found here: (https://git.alpinelinux.org/cgit/aports/plain/community/icinga2/icinga2.initd). If you have customized some path, edit the file and adjust it according with your setup.
363 Those few steps can be followed:
364 ```
365 # wget https://git.alpinelinux.org/cgit/aports/plain/community/icinga2/icinga2.initd
366 # mv icinga2.initd /etc/init.d/icinga2
367 # chmod +x /etc/init.d/icinga2
368 ```
369
370 Icinga 2 reads a single configuration file which is used to specify all
371 configuration settings (global settings, hosts, services, etc.). The
372 configuration format is explained in detail in the [doc/](doc/) directory.
373
374 By default `make install` installs example configuration files in
375 `/usr/local/etc/icinga2` unless you have specified a different prefix or
376 sysconfdir.