README 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Nagios Plugins README
  2. ---------------------
  3. * For instructions on installing these plugins for use with Nagios,
  4. see below. In addition, generic instructions for the GNU toolchain
  5. can be found in the INSTALL file.
  6. * For information on what changes have been made or plugins have been added,
  7. read the Changelog file.
  8. * Some plugins require that you have additional programs and/or
  9. libraries installed on your system before they can be used. Plugins
  10. that are dependent on other programs/libraries that are missing are
  11. usually not compiled. Read the REQUIREMENTS file for more information.
  12. * Individual plugins are self documenting. All plugins that comply with
  13. the basic guidelines for development will provide detailed help when
  14. invoked with the '-h' or '--help' options.
  15. * The file command.cfg contains example configurations for many of the
  16. plugins
  17. You can check for the latest plugins at:
  18. ftp://download.sourceforge.net/pub/sourceforge/nagiosplug
  19. http://sourceforge.net/projects/nagiosplug/
  20. Send mail to nagiosplug-help@lists.sourceforge.net for assistance. Please
  21. include the OS type and version that you are using. Also, run the plugin with
  22. the '-v' option and provide the resulting version information. Of course,
  23. there may be additional diagnostic information required as well. Use good
  24. judgment.
  25. Send mail to nagiosplug-devel@lists.sourceforge.net for developer discussions.
  26. For patch submissions and bug reports, please use the appropriate resources at
  27. http://sourceforge.net/projects/nagiosplug/ (navigate to the bug tool and/or
  28. patch tool from the summary page). Patches should be relative to the current
  29. CVS head (development), or to the head of the current stable branch. Also,
  30. please include version information for your OS and the plugin(s) your are
  31. patching/reporting.
  32. Nagios Plugins Quick-and-Dirty Installation Instructions
  33. --------------------------------------------------------
  34. 0) If using the CVS tree, you need m4, gettext, automake, and autoconf. To
  35. start out, run ./tools/setup
  36. For development, we generally use the most recent stable tools from
  37. the FSF. Currently we use gettext 0.11.5, autoconf 2.57, and
  38. automake 1.76. No other versions are tested, and you may see
  39. warnings or errors with other versions.
  40. 1) Run the configure script to initialize variables and create a Makefile, etc.
  41. ./configure --prefix=BASEDIRECTORY --with-nagios-user=SOMEUSER --with-nagios-group=SOMEGROUP --with-cgiurl=SOMEURL
  42. a) Replace BASEDIRECTORY with the path of the directory under which Nagios
  43. is installed (default is '/usr/local/nagios')
  44. b) Replace SOMEUSER with the name of a user on your system that will be
  45. assigned permissions to the installed plugins (default is 'nagios')
  46. c) Replace SOMEGRP with the name of a group on your system that will be
  47. assigned permissions to the installed plugins (default is 'nagios')
  48. d) Replace CGIURL with the path used to access the Nagios CGIs with
  49. a web browser (default is '/nagios/cgi-bin')
  50. 2) Compile the plugins with the following command:
  51. make
  52. 3) Install the compiled plugins and plugin scripts with the following command:
  53. make install
  54. The installation procedure will attempt to place the plugins in a
  55. 'libexec/' subdirectory in the base directory you specified with
  56. the --prefix argument to the configure script.
  57. 4) Verify that your host configuration file (hosts.cfg) for Nagios contains
  58. the correct paths to the new plugins.
  59. That's it. If you have any problems or questions, feel free send mail
  60. to nagios-users@lists.sourceforge.net or nagiosplug-help@lists.sourceforge.net
  61. --
  62. Karl DeBisschop (kdebisschop@users.sourceforge.net)