summaryrefslogtreecommitdiffstats
path: root/web/input/doc/faq/update.md
diff options
context:
space:
mode:
Diffstat (limited to 'web/input/doc/faq/update.md')
-rw-r--r--web/input/doc/faq/update.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/web/input/doc/faq/update.md b/web/input/doc/faq/update.md
new file mode 100644
index 0000000..6fd2634
--- /dev/null
+++ b/web/input/doc/faq/update.md
@@ -0,0 +1,42 @@
1title: Update to Monitoring Plugins
2parent: FAQ
3---
4
5# How do I update to Monitoring Plugins?
6
7If you installed the [Nagios Plugins][nagios-plugins] package in the past and
8now plan to update to a Monitoring Plugins release, you should check whether
9your operating system vendor provides an official package. If no such package
10exists, you might have to [install the Monitoring Plugins from
11source][compiling].
12
13You must then make sure the new plugins are found by your monitoring
14application. While the Nagios Plugins were usually installed into the
15directory `/usr/local/nagios/libexec` when built from the source tarball, the
16Monitoring Plugins are by default installed to `/usr/local/libexec`. You can
17change this by specifying the `--prefix` option when calling the `./configure`
18script. For example, the following commands would install the Monitoring
19Plugins into the old location:
20
21 $ ./configure --prefix=/usr/local/nagios
22 $ make
23 $ su root -c 'make install'
24
25If you prefer the new location (`/usr/local/libexec`), you must adjust your
26monitoring application's configuration instead. The details obviously depend
27on the software you're using. If in doubt, you will probably find the right
28place(s) to modify by searching your configuration for the old pathname, e.g.:
29
30 $ grep -r /usr/local/nagios /etc
31
32If you run into any trouble, please don't hesitate to [contact us][support]!
33
34[nagios-plugins]: http://www.nagios-plugins.org/ "Nagios Plugins"
35[compiling]: doc/faq/compilation.html "Compiling the Monitoring Plugins"
36[icinga-1]: https://www.icinga.org/icinga-1/ "Icinga 1"
37[icinga-2]: https://www.icinga.org/icinga2/ "Icinga 2"
38[naemon]: http://naemon.github.io/ "Naemon"
39[nagios]: http://www.nagios.org/ "Nagios"
40[support]: support.html "Monitoring Plugins Support"
41
42<!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %-->