You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2009/10/07 14:48:49 UTC

svn commit: r822701 - /incubator/vcl/trunk/INSTALLATION

Author: jfthomps
Date: Wed Oct  7 12:48:49 2009
New Revision: 822701

URL: http://svn.apache.org/viewvc?rev=822701&view=rev
Log:
moved web section to be after database section

Modified:
    incubator/vcl/trunk/INSTALLATION

Modified: incubator/vcl/trunk/INSTALLATION
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/INSTALLATION?rev=822701&r1=822700&r2=822701&view=diff
==============================================================================
--- incubator/vcl/trunk/INSTALLATION (original)
+++ incubator/vcl/trunk/INSTALLATION Wed Oct  7 12:48:49 2009
@@ -2,13 +2,36 @@
 
 Contents:
 
-  I. Web (frontend)
- II. Database (MySQL)
+  I. Database (MySQL)
+ II. Web (frontend)
 III. Management Node (backend)
  IV. Adding extra local accounts
   V. Adding LDAP authentication
 
-I. Web (frontend)
+I. Database (MySQL)
+
+Prerequisites:
+MySQL 5 installed and running
+
+Installation:
+
+1.  create a database in mysql named for use with VCL
+
+   CREATE DATABASE vcl;
+
+2. create a user with SELECT, INSERT, UPDATE, and DELETE privileges on the database you just created
+
+   ** NOTE: Replace vcluserpassword with your own password!
+
+   GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword';
+
+3. import vcl.sql file into database
+
+   mysql vcl < vcl.sql
+
+
+
+II. Web (frontend)
 
 Prerequisites:
 Your web server should meet the following criteria before installing the VCL Frontend Code:
@@ -104,29 +127,6 @@
 
 
 
-II. Database (MySQL)
-
-Prerequisites:
-MySQL 5 installed and running
-
-Installation:
-
-1.  create a database in mysql named for use with VCL
-
-   CREATE DATABASE vcl;
-
-2. create a user with SELECT, INSERT, UPDATE, and DELETE privileges on the database you just created
-
-   ** NOTE: Replace vcluserpassword with your own password!
-
-   GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword';
-
-3. import vcl.sql file into database
-
-   mysql vcl < vcl.sql
-
-
-
 III. Management Node (backend)
 
 Tested on CentOS5, Red Hat Advanced Server 4,5, RedHat Fedora Core Operating systems.