The minimal setup for RAACD requires:

- Epacsedon clients running on some machines
- NodeScape collector running on one machine
- A MySQL database 
- A Web server

Run epacsedon on each node that you want to monitor. Run NodeScape on one
machine that the other machines can all reach. NodeScape inserts all health
data into a MySQL database. Set up a table in the MySQL database as follows:

+--------+-------------+------+-----+---------------------+-------+
| Field  | Type        | Null | Key | Default             | Extra |
+--------+-------------+------+-----+---------------------+-------+
| host   | varchar(40) | YES  |     | NULL                |       |
| label  | varchar(40) | YES  |     | NULL                |       |
| data   | varchar(80) | YES  |     | NULL                |       |
| status | int(11)     | YES  |     | NULL                |       |
| ctime  | timestamp   | NO   |     | CURRENT_TIMESTAMP   |       |
| mtime  | timestamp   | NO   |     | 0000-00-00 00:00:00 |       |
+--------+-------------+------+-----+---------------------+-------+

Use find_base or find_base_host to build sets of options for baseline 
behavior on each of the machines You will need to collect data for multiple
days before you can start monitoring, as find_base builds 1-day long 
sections. Find_base plots the data in 1-day increments for every 
host-property pair in the database and builds an HTML document for each
pair containing a plot for each day of history in the database.

You will need to change the URLs that find_base generates to match your
setup.

find_base_host generates an HTML document of plots for a specific 
host-property pair.

To select a plot as an example of baseline behavior, check the box next to
that plot and click "submit" at the bottom of the page.

Schedule check-prop to run periodically. Check-prop will analyze the 
of any host-property pair for which you've provided an example of baseline
behavior. Check-prop generates an HTML document for each host that it
decides is behaving abnormally. Copy these HTML documents to the document 
root of your web server or specify the proper output directory in the 
configuration file.
