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 2011/03/18 13:28:15 UTC

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

Author: jfthomps
Date: Fri Mar 18 12:28:15 2011
New Revision: 1082887

URL: http://svn.apache.org/viewvc?rev=1082887&view=rev
Log:
VCL-434

modified instructions on creating database user to include CREATE TEMPORARY TABLES in the grant command

Modified:
    incubator/vcl/trunk/INSTALLATION

Modified: incubator/vcl/trunk/INSTALLATION
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/INSTALLATION?rev=1082887&r1=1082886&r2=1082887&view=diff
==============================================================================
--- incubator/vcl/trunk/INSTALLATION (original)
+++ incubator/vcl/trunk/INSTALLATION Fri Mar 18 12:28:15 2011
@@ -48,11 +48,11 @@ I. Install & Configure the Database
 
          CREATE DATABASE vcl; 
 
-      c. Create a user with SELECT, INSERT, UPDATE, and DELETE privileges on
-         the database you just created: 
+      c. Create a user with SELECT, INSERT, UPDATE, DELETE, and 
+         CREATE TEMPORARY TABLES privileges on the database you just created:
 
-         GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' \
-         IDENTIFIED BY 'vcluserpassword'; 
+         GRANT SELECT,INSERT,UPDATE,DELETE,CREATE TEMPORARY TABLES ON vcl.* \
+         TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword'; 
 
          NOTE: Replace vcluser and vcluserpassword with that of the user you 
          want to use to connect to the database. The GRANT command will