FAQ 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Frequently Asked Questions
  2. **************************
  3. 1. Q: Where can I find documentation for <insert name> plugin?
  4. A: All plugins that comply with minimal development guideline for
  5. this project include internal documentation. The documentation
  6. can be read executing plugin with the '-h' option ('--help' if
  7. long options are enabled). If the '-h' option does not work, that
  8. is a bug.
  9. 2. Q: What version of <insert name> plugin am I running?
  10. A: All plugins that comply with minimal development guideline for
  11. this project include detailed version information. When executed
  12. with the '-V' option, a version string will be printed:
  13. check_radius (nagios-plugins 1.3.0-alpha1) 1.11
  14. Note that this string include both the assigned package release
  15. name and the CVS-generated revision for the individual plugin.
  16. Authors should strictly adhere to this format. All bug reports
  17. and help requests should reference this information.
  18. 3. Q: What information do I need to include when asking for help or
  19. submitting a bug report?
  20. A: At a minimum, the output from 'uname -a' and the version string
  21. from '<plugin_name> -V' and, of course, a description of the
  22. problem and any solution/patch.
  23. 4. Q: I'm using Redhat Linux (or some other RPM-based distribution).
  24. Which packages should I install?
  25. A: The package nagios-plugins-<version>.<arch>.rpm contains only
  26. those plugins that should work on any POSIX compliant system. In
  27. other words, you should be able to install this package on your
  28. system, no matter what else is or in not installed.
  29. However, most of us have more complex systems than barebones
  30. POSIX. We tried creating a variety of separate packages so
  31. each dependency could be installed cleanly, but many people
  32. found that this resulted in too many packages. So in the end,
  33. all the non-POSIX plugins were folded into one RPM
  34. (nagios-plugins-<version>.<arch>.rpm). Most people will need to
  35. use RPM's '--nodeps' option to install this package.
  36. 5. Q: My system uses the .deb package format. What packages should I
  37. install?
  38. A: We strive for cooperation between all packagers and developers.
  39. The answers for .deb are the same as for RPM, after changing the
  40. package name suffixes accordingly.
  41. 6. Q: I prefer to build my own RPMs. Do I need to install all of the
  42. various dependencies?
  43. A: Beginning with the 1.2.9-1 release, you may run
  44. rpm --define 'custom 1' -ta nagios-plugins-<release>.tar.gz
  45. In prior releases, you must unpack the tarball and build the
  46. RPM using nagios-custom.spec with 'rpm -ba'.
  47. 7. Q: I get an error like
  48. Warning: Return code of 127 for check of service 'PING' on host 'anyhost' was out of bounds.
  49. when I run Nagios. (Often check_ping runs just fine on the
  50. command line).
  51. A: Commonly, system administrators will make security as tight as
  52. possible on the monitoring system. Sometimes this includes OS
  53. options or hardening scripts that prevent unprivileged users from
  54. running the ping command. Nagios runs with no more privileges
  55. than 'nobody' -- check to be sure that the nagios user can
  56. actually run check ping. (This can also happen with other binaries
  57. executed by nagios, but ping seems to be far and away the biggest
  58. offender.)
  59. 8. Q: I have a plugin to offer. What do I do to get it accepted?
  60. A: Send it to nagiosplug-devel@lists.sourceforge.net. Usually, we
  61. just drop it into contrib until we have a chance to check if the
  62. standard options are used, etc.
  63. You can also get feedback on improving the plugin via the mailing list.