Code

Resend EHLO after TLS negotiation as per RFC3207 (Holger Weiss - 1482832)
[nagiosplug.git] / INSTALLING
1 Nagios Plugins Quick-and-Dirty Installation Instructions
2 --------------------------------------------------------
4 0) If using the CVS tree, you need:
5         gnu make 3.79
6         automake 1.9.2
7         autoconf 2.58
9    To start out, run:
10         tools/setup
12 1) Run the configure script to initialize variables and create a Makefile, etc.
13         ./configure --prefix=BASEDIRECTORY --with-nagios-user=SOMEUSER --with-nagios-group=SOMEGROUP --with-cgiurl=SOMEURL
15    a) Replace BASEDIRECTORY with the path of the directory under which Nagios
16       is installed (default is '/usr/local/nagios')
17    b) Replace SOMEUSER with the name of a user on your system that will be
18       assigned permissions to the installed plugins (default is 'nagios')
19    c) Replace SOMEGRP with the name of a group on your system that will be
20       assigned permissions to the installed plugins (default is 'nagios')
21    d) Replace CGIURL with the path used to access the Nagios CGIs with
22       a web browser (default is '/nagios/cgi-bin')
25 2) Compile the plugins with the following command:
26         make all
29 3) Test the plugins:
30         make test
32    You will need to answer questions on servers that can be used for testing. If
33    you need to edit any values, edit the file /var/tmp/NPTest.cache
36 4) Install the compiled plugins and plugin scripts with the following command:
37         make install
39    NOTE: 
40    The installation procedure will attempt to place the plugins in a 
41    'libexec/' subdirectory in the base directory you specified with
42    the --prefix argument to the configure script.
45 5) Verify that your host configuration file (hosts.cfg) for Nagios contains
46    the correct paths to the new plugins.
50 That's it.  If you have any problems or questions, feel free send mail
51 to nagios-users@lists.sourceforge.net or nagiosplug-help@lists.sourceforge.net
53 Please send patches and bugs to nagiosplug-devel@lists.sourceforge.net and
54 post them on http://sourceforge.net/projects/nagiosplug.