diff options
Diffstat (limited to 'INSTALLING')
-rw-r--r-- | INSTALLING | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/INSTALLING b/INSTALLING deleted file mode 100644 index 019feb4..0000000 --- a/INSTALLING +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | Nagios Plugins Quick-and-Dirty Installation Instructions | ||
2 | -------------------------------------------------------- | ||
3 | |||
4 | 0) If using the CVS tree, you need: | ||
5 | gnu make 3.79 | ||
6 | automake 1.9.2 | ||
7 | autoconf 2.58 | ||
8 | |||
9 | To start out, run: | ||
10 | tools/setup | ||
11 | |||
12 | 1) Run the configure script to initialize variables and create a Makefile, etc. | ||
13 | ./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL | ||
14 | |||
15 | a) Replace BASEDIRECTORY with the path of the directory under which Nagios | ||
16 | is installed (default is '/usr/local/nagios') | ||
17 | b) Replace CGIURL with the path used to access the Nagios CGIs with | ||
18 | a web browser (default is '/nagios/cgi-bin') | ||
19 | |||
20 | |||
21 | 2) Compile the plugins with the following command: | ||
22 | make all | ||
23 | |||
24 | |||
25 | 3) Test the plugins: | ||
26 | make test | ||
27 | |||
28 | You will need to answer questions on servers that can be used for testing. If | ||
29 | you need to edit any values, edit the file /var/tmp/NPTest.cache | ||
30 | |||
31 | |||
32 | 4) Install the compiled plugins and plugin scripts with the following command: | ||
33 | make install | ||
34 | |||
35 | NOTE: | ||
36 | The installation procedure will attempt to place the plugins in a | ||
37 | 'libexec/' subdirectory in the base directory you specified with | ||
38 | the --prefix argument to the configure script. | ||
39 | |||
40 | |||
41 | 5) Verify that your host configuration file (hosts.cfg) for Nagios contains | ||
42 | the correct paths to the new plugins. | ||
43 | |||
44 | |||
45 | |||
46 | That's it. If you have any problems or questions, feel free send mail | ||
47 | to nagios-users@lists.sourceforge.net or nagiosplug-help@lists.sourceforge.net | ||
48 | |||
49 | Please send patches and bugs to nagiosplug-devel@lists.sourceforge.net and | ||
50 | post them on http://sourceforge.net/projects/nagiosplug. | ||
51 | |||
52 | |||