You are viewing a plain text version of this content. The canonical link for it is here.
Posted to lokahi-commits@incubator.apache.org by to...@apache.org on 2006/06/28 18:48:38 UTC

svn commit: r417843 - /incubator/lokahi/lokahi/trunk/docs/README.TXT

Author: toback
Date: Wed Jun 28 11:48:38 2006
New Revision: 417843

URL: http://svn.apache.org/viewvc?rev=417843&view=rev
Log:
Changed the order slightly to accomodate the database scripts being filtered.

Modified:
    incubator/lokahi/lokahi/trunk/docs/README.TXT

Modified: incubator/lokahi/lokahi/trunk/docs/README.TXT
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/docs/README.TXT?rev=417843&r1=417842&r2=417843&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/docs/README.TXT (original)
+++ incubator/lokahi/lokahi/trunk/docs/README.TXT Wed Jun 28 11:48:38 2006
@@ -8,9 +8,40 @@
       http://svn.apache.org/repos/asf/incubator/lokahi/lokahi/trunk/
    2. Change directory (cd) to the home directory of lokahi.
 
-   SECTION II: Database Setup (Oracle)
+   SECTION II: Build Software
 
-   1. Change directory to database/ directory.
+      1. Change directory (cd) to the home directory of lokahi.
+      2. Edit the following properties in the build.properties file:
+
+      ----
+      tomcat.home=<YOUR_TOMCAT_HOME>
+      app.name=lokahi
+      app.virtuahost.name=
+      app.authenticationmodule=org.apache.lokahi.core.common.authentication.NoAuthentication
+      console.log.location=
+      agent.log.location=
+      database.uri=jdbc:oracle:thin:@<DATABASE_SERVER>:<PORT>:<DB_NAME>
+      database.user=<SCHEMA>
+      database.password=<PASSWORD>
+      database.driver=oracle.jdbc.driver.OracleDriver
+      inital.instance.name=
+      inital.user.name=
+      install.location=${tomcat.home}/webapps/
+      ----
+
+      3. Download external libraries to lib/ directory:
+         a. classes12.jar   -- from the oracle website
+         b. jdom.jar        -- Jdom version 1.0 from http://www.jdom.org/
+         c. activation.jar  -- from http://java.sun.com/products/javabeans/glasgow/jaf.html
+         d. mail.jar        -- from http://java.sun.com/products/javamail/
+      4. Verify that JAVA_HOME is properly set to jdk1.5 in your shell.
+      5. Run ant to build the package.
+
+
+
+   SECTION III: Database Setup (Oracle)
+
+   1. Change directory to build/database/ directory.
    2. Create the lokahi schema <SCHEMA> in your Oracle database with default tablespace
       and enough quota on that tablespace (100 MB is sufficient for install).
    3. Run schema_priv.sql as DBA to grant system privileges to <SCHEMA>:
@@ -33,34 +64,6 @@
       You can add more instances later via
       Administration -> Manage TMC -> Manage Instances -> Select Action -> Add
 
-   SECTION III: Build Software
-
-   1. Change directory (cd) to the home directory of lokahi.
-   2. Edit the following properties in the build.properties file:
-
-   ----
-   tomcat.home=<YOUR_TOMCAT_HOME>
-   app.name=lokahi
-   app.virtuahost.name=
-   app.authenticationmodule=org.apache.lokahi.core.common.authentication.NoAuthentication
-   console.log.location=
-   agent.log.location=
-   database.uri=jdbc:oracle:thin:@<DATABASE_SERVER>:<PORT>:<DB_NAME>
-   database.user=<SCHEMA>
-   database.password=<PASSWORD>
-   database.driver=oracle.jdbc.driver.OracleDriver
-   inital.instance.name=
-   inital.user.name=
-   install.location=${tomcat.home}/webapps/
-   ----
-
-   3. Download external libraries to lib/ directory:
-      a. classes12.jar   -- from the oracle website
-      b. jdom.jar        -- Jdom version 1.0 from http://www.jdom.org/
-      c. activation.jar  -- from http://java.sun.com/products/javabeans/glasgow/jaf.html
-      d. mail.jar        -- from http://java.sun.com/products/javamail/
-   4. Verify that JAVA_HOME is properly set to jdk1.5 in your shell.
-   5. Run ant to build the package.
 
 
    SECTION IV: Agent Install