]> granicus.if.org Git - icinga2/blob - doc/11-cli-commands.md
Merge pull request #6501 from jenslink/patch-1
[icinga2] / doc / 11-cli-commands.md
1 # Icinga 2 CLI Commands <a id="cli-commands"></a>
2
3 Icinga 2 comes with a number of CLI commands which support bash autocompletion.
4
5 These CLI commands will allow you to use certain functionality
6 provided by and around Icinga 2.
7
8 Each CLI command provides its own help and usage information, so please
9 make sure to always run them with the `--help` parameter.
10
11 Run `icinga2` without any arguments to get a list of all available global
12 options.
13
14 ```
15 # icinga2
16 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
17
18 Usage:
19   icinga2 <command> [<arguments>]
20
21 Supported commands:
22   * api setup (setup for API)
23   * ca list (lists all certificate signing requests)
24   * ca sign (signs an outstanding certificate request)
25   * console (Icinga console)
26   * daemon (starts Icinga 2)
27   * feature disable (disables specified feature)
28   * feature enable (enables specified feature)
29   * feature list (lists all available features)
30   * node setup (set up node)
31   * node wizard (wizard for node setup)
32   * object list (lists all objects)
33   * pki new-ca (sets up a new CA)
34   * pki new-cert (creates a new CSR)
35   * pki request (requests a certificate)
36   * pki save-cert (saves another Icinga 2 instance's certificate)
37   * pki sign-csr (signs a CSR)
38   * pki ticket (generates a ticket)
39   * troubleshoot (collect information for troubleshooting)
40   * variable get (gets a variable)
41   * variable list (lists all variables)
42
43 Global options:
44   -h [ --help ]             show this help message
45   -V [ --version ]          show version information
46   --color                   use VT100 color codes even when stdout is not a
47                             terminal
48   -D [ --define ] arg       define a constant
49   -a [ --app ] arg          application library name (default: icinga)
50   -l [ --library ] arg      load a library
51   -I [ --include ] arg      add include search directory
52   -x [ --log-level ] arg    specify the log level for the console log.
53                             The valid value is either debug, notice,
54                             information (default), warning, or critical
55   -X [ --script-debugger ]  whether to enable the script debugger
56
57 Report bugs at <https://github.com/Icinga/icinga2>
58 Icinga home page: <https://www.icinga.com/>
59 ```
60
61
62 ## Icinga 2 CLI Bash Autocompletion <a id="cli-commands-autocompletion"></a>
63
64 Bash Auto-Completion (pressing `<TAB>`) is provided only for the corresponding context.
65
66 While `--config` suggests and auto-completes files and directories on disk,
67 `feature enable` only suggests disabled features.
68
69 RPM and Debian packages install the bash completion files into
70 `/etc/bash_completion.d/icinga2`.
71
72 You need to install the `bash-completion` package if not already installed.
73
74 RHEL/CentOS/Fedora:
75
76 ```
77 # yum install bash-completion
78 ```
79
80 SUSE:
81
82 ```
83 # zypper install bash-completion
84 ```
85
86 Debian/Ubuntu:
87
88 ```
89 # apt-get install bash-completion
90 ```
91
92 Ensure that the `bash-completion.d` directory is added to your shell
93 environment. You can manually source the icinga2 bash-completion file
94 into your current session and test it:
95
96 ```
97 # source /etc/bash-completion.d/icinga2
98 ```
99
100
101 ## Icinga 2 CLI Global Options <a id="cli-commands-global-options"></a>
102
103 ### Application Type
104
105 By default the `icinga2` binary loads the `icinga` library. A different application type
106 can be specified with the `--app` command-line option.
107 Note: This is not needed by the average Icinga user, only developers.
108
109 ### Libraries
110
111 Instead of loading libraries using the [`library` config directive](17-language-reference.md#library)
112 you can also use the `--library` command-line option.
113 Note: This is not needed by the average Icinga user, only developers.
114
115 ### Constants
116
117 [Global constants](17-language-reference.md#constants) can be set using the `--define` command-line option.
118
119 ### Config Include Path <a id="config-include-path"></a>
120
121 When including files you can specify that the include search path should be
122 checked. You can do this by putting your configuration file name in angle
123 brackets like this:
124
125 ```
126 include <test.conf>
127 ```
128
129 This causes Icinga 2 to search its include path for the configuration file
130 `test.conf`. By default the installation path for the [Icinga Template Library](10-icinga-template-library.md#icinga-template-library)
131 is the only search directory.
132
133 Using the `--include` command-line option additional search directories can be
134 added.
135
136 ## CLI command: Api <a id="cli-command-api"></a>
137
138 Provides the helper functions `api setup` and `api user`. The first to enable the REST API, the second to create
139 ApiUser objects with hashed password strings.
140 More details in the [Icinga 2 API](12-icinga2-api.md#icinga2-api-setup) chapter.
141
142 ```
143 # icinga2 api --help
144 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
145
146 Usage:
147   icinga2 <command> [<arguments>]
148
149 Supported commands:
150   * api setup (setup for API)
151   * api user (API user creation helper)
152
153 Global options:
154   -h [ --help ]             show this help message
155   -V [ --version ]          show version information
156   --color                   use VT100 color codes even when stdout is not a
157                             terminal
158   -D [ --define ] arg       define a constant
159   -a [ --app ] arg          application library name (default: icinga)
160   -l [ --library ] arg      load a library
161   -I [ --include ] arg      add include search directory
162   -x [ --log-level ] arg    specify the log level for the console log.
163                             The valid value is either debug, notice,
164                             information (default), warning, or critical
165   -X [ --script-debugger ]  whether to enable the script debugger
166
167 Report bugs at <https://github.com/Icinga/icinga2>
168 Icinga home page: <https://www.icinga.com/>
169 ```
170
171 ## CLI command: Ca <a id="cli-command-ca"></a>
172
173 List and manage incoming certificate signing requests. More details
174 can be found in the [signing methods](06-distributed-monitoring.md#distributed-monitoring-setup-sign-certificates-master)
175 chapter. This CLI command is available since v2.8.
176
177 ```
178 # icinga2 ca --help
179 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
180
181 Usage:
182   icinga2 <command> [<arguments>]
183
184 Supported commands:
185   * ca list (lists all certificate signing requests)
186   * ca sign (signs an outstanding certificate request)
187
188 Global options:
189   -h [ --help ]             show this help message
190   -V [ --version ]          show version information
191   --color                   use VT100 color codes even when stdout is not a
192                             terminal
193   -D [ --define ] arg       define a constant
194   -a [ --app ] arg          application library name (default: icinga)
195   -l [ --library ] arg      load a library
196   -I [ --include ] arg      add include search directory
197   -x [ --log-level ] arg    specify the log level for the console log.
198                             The valid value is either debug, notice,
199                             information (default), warning, or critical
200   -X [ --script-debugger ]  whether to enable the script debugger
201
202 Report bugs at <https://github.com/Icinga/icinga2>
203 Icinga home page: <https://www.icinga.com/>
204 ```
205
206 ## CLI command: Console <a id="cli-command-console"></a>
207
208 The CLI command `console` can be used to debug and evaluate Icinga 2 config expressions,
209 e.g. to test [functions](17-language-reference.md#functions) in your local sandbox.
210
211 ```
212 $ icinga2 console
213 Icinga 2 (version: v2.8.0)
214 <1> => function test(name) {
215 <1> ..   log("Hello " + name)
216 <1> .. }
217 null
218 <2> => test("World")
219 information/config: Hello World
220 null
221 <3> =>
222 ```
223
224 Further usage examples can be found in the [library reference](18-library-reference.md#library-reference) chapter.
225
226 ```
227 # icinga2 console --help
228 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
229
230 Usage:
231   icinga2 console [<arguments>]
232
233 Interprets Icinga script expressions.
234
235 Global options:
236   -h [ --help ]             show this help message
237   -V [ --version ]          show version information
238   --color                   use VT100 color codes even when stdout is not a
239                             terminal
240   -D [ --define ] arg       define a constant
241   -a [ --app ] arg          application library name (default: icinga)
242   -l [ --library ] arg      load a library
243   -I [ --include ] arg      add include search directory
244   -x [ --log-level ] arg    specify the log level for the console log.
245                             The valid value is either debug, notice,
246                             information (default), warning, or critical
247   -X [ --script-debugger ]  whether to enable the script debugger
248
249 Command options:
250   -c [ --connect ] arg      connect to an Icinga 2 instance
251   -e [ --eval ] arg         evaluate expression and terminate
252   -r [ --file ] arg         evaluate a file and terminate
253   --syntax-only             only validate syntax (requires --eval or --file)
254   --sandbox                 enable sandbox mode
255
256 Report bugs at <https://github.com/Icinga/icinga2>
257 Icinga home page: <https://www.icinga.com/>
258 ```
259
260
261 On operating systems without the `libedit` library installed there is no
262 support for line-editing or a command history. However you can
263 use the `rlwrap` program if you require those features:
264
265 ```
266 $ rlwrap icinga2 console
267 ```
268
269 The debug console can be used to connect to a running Icinga 2 instance using
270 the [REST API](12-icinga2-api.md#icinga2-api). [API permissions](12-icinga2-api.md#icinga2-api-permissions)
271 are required for executing config expressions and auto-completion.
272
273 > **Note**
274 >
275 > The debug console does not currently support SSL certificate verification.
276 >
277 > Runtime modifications are not validated and might cause the Icinga 2
278 > daemon to crash or behave in an unexpected way. Use these runtime changes
279 > at your own risk and rather *inspect and debug objects read-only*.
280
281 You can specify the API URL using the `--connect` parameter.
282
283 Although the password can be specified there process arguments on UNIX platforms are
284 usually visible to other users (e.g. through `ps`). In order to securely specify the
285 user credentials the debug console supports two environment variables:
286
287   Environment variable | Description
288   ---------------------|-------------
289   ICINGA2_API_USERNAME | The API username.
290   ICINGA2_API_PASSWORD | The API password.
291
292 Here's an example:
293
294 ```
295 $ ICINGA2_API_PASSWORD=icinga icinga2 console --connect 'https://root@localhost:5665/'
296 Icinga 2 (version: v2.8.0)
297 <1> =>
298 ```
299
300 Once connected you can inspect variables and execute other expressions by entering them at the prompt:
301
302 ```
303 <1> => var h = get_host("icinga2-client1.localdomain")
304 null
305 <2> => h.last_check_result
306 {
307         active = true
308         check_source = "icinga2-client1.localdomain"
309         command = [ "/usr/local/sbin/check_ping", "-H", "127.0.0.1", "-c", "5000,100%", "-w", "3000,80%" ]
310         execution_end = 1446653527.174983
311         execution_start = 1446653523.152673
312         exit_status = 0.000000
313         output = "PING OK - Packet loss = 0%, RTA = 0.11 ms"
314         performance_data = [ "rta=0.114000ms;3000.000000;5000.000000;0.000000", "pl=0%;80;100;0" ]
315         schedule_end = 1446653527.175133
316         schedule_start = 1446653583.150000
317         state = 0.000000
318         type = "CheckResult"
319         vars_after = {
320                 attempt = 1.000000
321                 reachable = true
322                 state = 0.000000
323                 state_type = 1.000000
324         }
325         vars_before = {
326                 attempt = 1.000000
327                 reachable = true
328                 state = 0.000000
329                 state_type = 1.000000
330         }
331 }
332 <3> =>
333 ```
334
335 You can use the `--eval` parameter to evaluate a single expression in batch mode.
336 Using the `--file` option you can specify a file which should be evaluated.
337 The output format for batch mode is JSON.
338
339 The `--syntax-only` option can be used in combination with `--eval` or `--file`
340 to check a script for syntax errors. In this mode the script is parsed to identify
341 syntax errors but not evaluated.
342
343 Here's an example that retrieves the command that was used by Icinga to check the `icinga2-client1.localdomain` host:
344
345 ```
346 $ ICINGA2_API_PASSWORD=icinga icinga2 console --connect 'https://root@localhost:5665/' --eval 'get_host("icinga2-client1.localdomain").last_check_result.command' | python -m json.tool
347 [
348     "/usr/local/sbin/check_ping",
349     "-H",
350     "127.0.0.1",
351     "-c",
352     "5000,100%",
353     "-w",
354     "3000,80%"
355 ]
356 ```
357
358 ## CLI command: Daemon <a id="cli-command-daemon"></a>
359
360 The CLI command `daemon` provides the functionality to start/stop Icinga 2.
361 Furthermore it allows to run the [configuration validation](11-cli-commands.md#config-validation).
362
363 ```
364 # icinga2 daemon --help
365 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
366
367 Usage:
368   icinga2 daemon [<arguments>]
369
370 Starts Icinga 2.
371
372 Global options:
373   -h [ --help ]             show this help message
374   -V [ --version ]          show version information
375   --color                   use VT100 color codes even when stdout is not a
376                             terminal
377   -D [ --define ] arg       define a constant
378   -a [ --app ] arg          application library name (default: icinga)
379   -l [ --library ] arg      load a library
380   -I [ --include ] arg      add include search directory
381   -x [ --log-level ] arg    specify the log level for the console log.
382                             The valid value is either debug, notice,
383                             information (default), warning, or critical
384   -X [ --script-debugger ]  whether to enable the script debugger
385
386 Command options:
387   -c [ --config ] arg       parse a configuration file
388   -z [ --no-config ]        start without a configuration file
389   -C [ --validate ]         exit after validating the configuration
390   -e [ --errorlog ] arg     log fatal errors to the specified log file (only
391                             works in combination with --daemonize)
392   -d [ --daemonize ]        detach from the controlling terminal
393
394 Report bugs at <https://github.com/Icinga/icinga2>
395 Icinga home page: <https://www.icinga.com/>
396 ```
397
398 ### Config Files <a id="cli-command-daemon-config-files"></a>
399
400 You can specify one or more configuration files with the `--config` option.
401 Configuration files are processed in the order they're specified on the command-line.
402
403 When no configuration file is specified and the `--no-config` is not used
404 Icinga 2 automatically falls back to using the configuration file
405 `ConfigDir + "/icinga2.conf"` (where ConfigDir is usually `/etc/icinga2`).
406
407 ### Validation <a id="cli-command-daemon-validation"></a>
408
409 The `--validate` option can be used to check if configuration files
410 contain errors. If any errors are found, the exit status is 1, otherwise 0
411 is returned. More details in the [configuration validation](11-cli-commands.md#config-validation) chapter.
412
413 ## CLI command: Feature <a id="cli-command-feature"></a>
414
415 The `feature enable` and `feature disable` commands can be used to enable and disable features:
416
417 ```
418 # icinga2 feature disable <tab>
419 --app              --define           --include          --log-level        --version          checker            graphite           mainlog
420 --color            --help             --library          --script-debugger  api                command            ido-mysql          notification
421 ```
422
423 ```
424 # icinga2 feature enable <tab>
425 --app              --define           --include          --log-level        --version          debuglog           ido-pgsql          livestatus         perfdata           syslog
426 --color            --help             --library          --script-debugger  compatlog          gelf               influxdb           opentsdb           statusdata
427 ```
428
429 The `feature list` command shows which features are currently enabled:
430
431 ```
432 # icinga2 feature list
433 Disabled features: compatlog debuglog gelf ido-pgsql influxdb livestatus opentsdb perfdata statusdata syslog
434 Enabled features: api checker command graphite ido-mysql mainlog notification
435 ```
436
437 ## CLI command: Node <a id="cli-command-node"></a>
438
439 Provides the functionality to setup master and client
440 nodes in a [distributed monitoring](06-distributed-monitoring.md#distributed-monitoring) scenario.
441
442 ```
443 # icinga2 node --help
444 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
445
446 Usage:
447   icinga2 <command> [<arguments>]
448
449 Supported commands:
450   * node setup (set up node)
451   * node wizard (wizard for node setup)
452
453 Global options:
454   -h [ --help ]             show this help message
455   -V [ --version ]          show version information
456   --color                   use VT100 color codes even when stdout is not a
457                             terminal
458   -D [ --define ] arg       define a constant
459   -a [ --app ] arg          application library name (default: icinga)
460   -l [ --library ] arg      load a library
461   -I [ --include ] arg      add include search directory
462   -x [ --log-level ] arg    specify the log level for the console log.
463                             The valid value is either debug, notice,
464                             information (default), warning, or critical
465   -X [ --script-debugger ]  whether to enable the script debugger
466
467 Report bugs at <https://github.com/Icinga/icinga2>
468 Icinga home page: <https://www.icinga.com/>
469 ```
470
471 ## CLI command: Object <a id="cli-command-object"></a>
472
473 The `object` CLI command can be used to list all configuration objects and their
474 attributes. The command also shows where each of the attributes was modified and as such
475 provides debug information for further configuration problem analysis.
476 That way you can also identify which objects have been created from your [apply rules](17-language-reference.md#apply).
477
478 Runtime modifications via the [REST API](12-icinga2-api.md#icinga2-api-config-objects)
479 are not immediately updated. Furthermore there is a known issue with
480 [group assign expressions](17-language-reference.md#group-assign) which are not reflected in the host object output.
481 You need to restart Icinga 2 in order to update the `icinga2.debug` cache file.
482
483 More information can be found in the [troubleshooting](15-troubleshooting.md#troubleshooting-list-configuration-objects) section.
484
485 ```
486 # icinga2 object --help
487 icinga2 - The Icinga 2 network monitoring daemon (version: v2.7.1-196-g23e8a6253; debug)
488
489 Usage:
490   icinga2 <command> [<arguments>]
491
492 Supported commands:
493   * object list (lists all objects)
494
495 Global options:
496   -h [ --help ]             show this help message
497   -V [ --version ]          show version information
498   --color                   use VT100 color codes even when stdout is not a
499                             terminal
500   -D [ --define ] arg       define a constant
501   -a [ --app ] arg          application library name (default: icinga)
502   -l [ --library ] arg      load a library
503   -I [ --include ] arg      add include search directory
504   -x [ --log-level ] arg    specify the log level for the console log.
505                             The valid value is either debug, notice,
506                             information (default), warning, or critical
507   -X [ --script-debugger ]  whether to enable the script debugger
508
509 Report bugs at <https://github.com/Icinga/icinga2>
510 Icinga home page: <https://www.icinga.com/>
511 ```
512
513 ## CLI command: Pki <a id="cli-command-pki"></a>
514
515 Provides the CLI commands to
516
517 * generate a new certificate authority (CA)
518 * generate a new CSR or self-signed certificate
519 * sign a CSR and return a certificate
520 * save a master certificate manually
521 * request a signed certificate from the master
522 * generate a new ticket for the client setup
523
524 This functionality is used by the [node setup/wizard](11-cli-commands.md#cli-command-node) CLI commands.
525 You will need them in the [distributed monitoring chapter](06-distributed-monitoring.md#distributed-monitoring).
526
527 ```
528 # icinga2 pki --help
529 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
530
531 Usage:
532   icinga2 <command> [<arguments>]
533
534 Supported commands:
535   * pki new-ca (sets up a new CA)
536   * pki new-cert (creates a new CSR)
537   * pki request (requests a certificate)
538   * pki save-cert (saves another Icinga 2 instance's certificate)
539   * pki sign-csr (signs a CSR)
540   * pki ticket (generates a ticket)
541
542 Global options:
543   -h [ --help ]             show this help message
544   -V [ --version ]          show version information
545   --color                   use VT100 color codes even when stdout is not a
546                             terminal
547   -D [ --define ] arg       define a constant
548   -a [ --app ] arg          application library name (default: icinga)
549   -l [ --library ] arg      load a library
550   -I [ --include ] arg      add include search directory
551   -x [ --log-level ] arg    specify the log level for the console log.
552                             The valid value is either debug, notice,
553                             information (default), warning, or critical
554   -X [ --script-debugger ]  whether to enable the script debugger
555
556 Report bugs at <https://github.com/Icinga/icinga2>
557 Icinga home page: <https://www.icinga.com/>
558 ```
559
560 ## CLI command: Troubleshoot <a id="cli-command-troubleshoot"></a>
561
562 Collects basic information like version, paths, log files and crash reports for troubleshooting
563 purposes and prints them to a file or the console. See [troubleshooting](15-troubleshooting.md#troubleshooting-information-required).
564
565 Its output defaults to a file named `troubleshooting-[TIMESTAMP].log` so it won't overwrite older troubleshooting files.
566
567 Keep in mind that this tool can not collect information from other icinga2 nodes, you will have to run it on
568 each of one of you instances.
569 This is only a tool to collect information to help others help you, it will not attempt to fix anything.
570
571 ```
572 # icinga2 troubleshoot --help
573 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0)
574
575 Usage:
576   icinga2 troubleshoot [<arguments>]
577
578 Collect logs and other relevant information for troubleshooting purposes.
579
580 Global options:
581   -h [ --help ]             show this help message
582   -V [ --version ]          show version information
583   --color                   use VT100 color codes even when stdout is not a
584                             terminal
585   -D [ --define ] arg       define a constant
586   -a [ --app ] arg          application library name (default: icinga)
587   -l [ --library ] arg      load a library
588   -I [ --include ] arg      add include search directory
589   -x [ --log-level ] arg    specify the log level for the console log.
590                             The valid value is either debug, notice,
591                             information (default), warning, or critical
592   -X [ --script-debugger ]  whether to enable the script debugger
593
594 Command options:
595   -c [ --console ]          print to console instead of file
596   -o [ --output ] arg       path to output file
597   --include-objects         Print the whole objectfile (like `object list`)
598   --include-vars            Print all Variables (like `variable list`)
599
600 Report bugs at <https://github.com/Icinga/icinga2>
601 Icinga home page: <https://www.icinga.com/>
602 ```
603
604 ## CLI command: Variable <a id="cli-command-variable"></a>
605
606 Lists all configured variables (constants) in a similar fashion like [object list](11-cli-commands.md#cli-command-object).
607
608 ```
609 # icinga2 variable --help
610 icinga2 - The Icinga 2 network monitoring daemon (version: v2.8.0; debug)
611
612 Usage:
613   icinga2 <command> [<arguments>]
614
615 Supported commands:
616   * variable get (gets a variable)
617   * variable list (lists all variables)
618
619 Global options:
620   -h [ --help ]             show this help message
621   -V [ --version ]          show version information
622   --color                   use VT100 color codes even when stdout is not a
623                             terminal
624   -D [ --define ] arg       define a constant
625   -a [ --app ] arg          application library name (default: icinga)
626   -l [ --library ] arg      load a library
627   -I [ --include ] arg      add include search directory
628   -x [ --log-level ] arg    specify the log level for the console log.
629                             The valid value is either debug, notice,
630                             information (default), warning, or critical
631   -X [ --script-debugger ]  whether to enable the script debugger
632
633 Report bugs at <https://github.com/Icinga/icinga2>
634 Icinga home page: <https://www.icinga.com/>
635 ```
636
637 ## Enabling/Disabling Features <a id="enable-features"></a>
638
639 Icinga 2 provides configuration files for some commonly used features. These
640 are installed in the `/etc/icinga2/features-available` directory and can be
641 enabled and disabled using the `icinga2 feature enable` and `icinga2 feature disable`
642 [CLI commands](11-cli-commands.md#cli-command-feature), respectively.
643
644 The `icinga2 feature enable` CLI command creates symlinks in the
645 `/etc/icinga2/features-enabled` directory which is included by default
646 in the example configuration file.
647
648 You can view a list of enabled and disabled features:
649
650 ```
651 # icinga2 feature list
652 Disabled features: api command compatlog debuglog graphite icingastatus ido-mysql ido-pgsql livestatus notification perfdata statusdata syslog
653 Enabled features: checker mainlog notification
654 ```
655
656 Using the `icinga2 feature enable` command you can enable features:
657
658 ```
659 # icinga2 feature enable graphite
660 Enabling feature graphite. Make sure to restart Icinga 2 for these changes to take effect.
661 ```
662
663 You can disable features using the `icinga2 feature disable` command:
664
665 ```
666 # icinga2 feature disable ido-mysql livestatus
667 Disabling feature ido-mysql. Make sure to restart Icinga 2 for these changes to take effect.
668 Disabling feature livestatus. Make sure to restart Icinga 2 for these changes to take effect.
669 ```
670
671 The `icinga2 feature enable` and `icinga2 feature disable` commands do not
672 restart Icinga 2. You will need to restart Icinga 2 using the init script
673 after enabling or disabling features.
674
675
676
677 ## Configuration Validation <a id="config-validation"></a>
678
679 Once you've edited the configuration files make sure to tell Icinga 2 to validate
680 the configuration changes. Icinga 2 will log any configuration error including
681 a hint on the file, the line number and the affected configuration line itself.
682
683 The following example creates an apply rule without any `assign` condition.
684
685 ```
686 apply Service "my-ping4" {
687   import "generic-service"
688   check_command = "ping4"
689   //assign where host.address
690 }
691 ```
692
693 Validate the configuration:
694
695 ```
696 # icinga2 daemon -C
697
698 [2014-05-22 17:07:25 +0200] critical/ConfigItem: Location:
699 /etc/icinga2/conf.d/tests/my.conf(5): }
700 /etc/icinga2/conf.d/tests/my.conf(6):
701 /etc/icinga2/conf.d/tests/my.conf(7): apply Service "my-ping4" {
702                                         ^^^^^^^^^^^^^
703 /etc/icinga2/conf.d/tests/my.conf(8):   import "test-generic-service"
704 /etc/icinga2/conf.d/tests/my.conf(9):   check_command = "ping4"
705
706 Config error: 'apply' is missing 'assign'
707 [2014-05-22 17:07:25 +0200] critical/ConfigItem: 1 errors, 0 warnings.
708 Icinga 2 detected configuration errors.
709 ```
710
711 If you encounter errors during configuration validation, please make sure
712 to read the [troubleshooting](15-troubleshooting.md#troubleshooting) chapter.
713
714 You can also use the [CLI command](11-cli-commands.md#cli-command-object) `icinga2 object list`
715 after validation passes to analyze object attributes, inheritance or created
716 objects by apply rules.
717 Find more on troubleshooting with `object list` in [this chapter](15-troubleshooting.md#troubleshooting-list-configuration-objects).
718
719
720 ## Reload on Configuration Changes <a id="config-change-reload"></a>
721
722 Every time you have changed your configuration you should first tell Icinga 2
723 to [validate](11-cli-commands.md#config-validation). If there are no validation errors, you can
724 safely reload the Icinga 2 daemon.
725
726 ```
727 # systemctl reload icinga2
728 ```
729
730 The `reload` action will send the `SIGHUP` signal to the Icinga 2 daemon
731 which will validate the configuration in a separate process and not stop
732 the other events like check execution, notifications, etc.