File: FAQ

package info (click to toggle)
nagios-plugins 1.4.12-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 8,108 kB
  • ctags: 5,170
  • sloc: ansic: 45,644; perl: 12,957; sh: 12,292; makefile: 465; python: 444; awk: 45
file content (93 lines) | stat: -rw-r--r-- 3,528 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Frequently Asked Questions
**************************

Q: Where can I find documentation for <insert name> plugin?

A: All plugins that comply with minimal development guideline for
   this project include internal documentation.  The documentation
   can be read executing plugin with the -h or --help option. If 
   the '-h' option does not work, that is a bug.


Q: What version of <insert name> plugin am I running?

A: All plugins that comply with minimal development guideline for
   this project include detailed version information.  When executed
   with the '-V' option, a version string will be printed:

   check_radius (nagios-plugins 1.3.0-alpha1) 1.11

   Note that this string include both the assigned package release
   name and the CVS-generated revision for the individual plugin.
   Authors should strictly adhere to this format.  All bug reports
   and help requests should reference this information.


Q: What information do I need to include when asking for help or
   submitting a bug report?

A: At a minimum, the output from 'uname -a' and the version string
   from '<plugin_name> -V' and, of course, a description of the
   problem and any solution/patch.


Q: I'm using Redhat Linux (or some other RPM-based distribution).
   Which packages should I install?

A: The package nagios-plugins-<version>.<arch>.rpm contains only
   those plugins that should work on any POSIX compliant system.  In
   other words, you should be able to install this package on your
   system, no matter what else is or in not installed.

   However, most of us have more complex systems than barebones
   POSIX.  We tried creating a variety of separate packages so
   each dependency could be installed cleanly, but many people
   found that this resulted in too many packages.  So in the end,
   all the non-POSIX plugins were folded into one RPM 
   (nagios-plugins-<version>.<arch>.rpm).  Most people will need to
   use RPM's '--nodeps' option to install this package.


Q: My system uses the .deb package format. What packages should I
   install?

A: We strive for cooperation between all packagers and developers.
   The answers for .deb are the same as for RPM, after changing the
   package name suffixes accordingly.


Q: I prefer to build my own RPMs. Do I need to install all of the
   various dependencies?

A: Beginning with the 1.2.9-1 release, you may run

   rpm --define 'custom 1' -ta nagios-plugins-<release>.tar.gz

   In prior releases, you must unpack the tarball and build the
   RPM using nagios-custom.spec with 'rpm -ba'.


Q: I get an error like

   Warning: Return code of 127 for check of service 'PING' on host 'anyhost' was out of bounds.

   when I run Nagios. (Often check_ping runs just fine on the
   command line).

A: Commonly, system administrators will make security as tight as
   possible on the monitoring system. Sometimes this includes OS
   options or hardening scripts that prevent unprivileged users from
   running the ping command. Nagios runs with no more privileges
   than 'nobody' -- check to be sure that the nagios user can
   actually run check ping.  (This can also happen with other binaries
   executed by nagios, but ping seems to be far and away the biggest
   offender.)


Q: I have a plugin to offer. What can I do?

A: You can make it available on NagiosExchange (http://nagiosexchange.org)
   where other people can find it for use.

   You can also get feedback on improving the plugin via the 
   nagiosplug-devel@lists.sourceforge.net mailing list.