summaryrefslogtreecommitdiff
path: root/INSTALL.mysql.txt
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-05-05 17:20:28 -0400
committerDavid Rothstein <drothstein@gmail.com>2014-05-05 17:20:28 -0400
commitdd8e45aef1e498daad70823a06a73423d0341ad8 (patch)
tree630bac3ffa652ce1a0f7f8ca2fa09b9f1c4b8af0 /INSTALL.mysql.txt
parent07a910ede989af178d98c92aff7080bc027a06ce (diff)
downloadbrdo-dd8e45aef1e498daad70823a06a73423d0341ad8.tar.gz
brdo-dd8e45aef1e498daad70823a06a73423d0341ad8.tar.bz2
Issue #1969108 by danblack, cs_shadow | Robert S: INSTALL.mysql.txt does not mention CREATE TEMPORARY TABLES and it should.
Diffstat (limited to 'INSTALL.mysql.txt')
-rw-r--r--INSTALL.mysql.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/INSTALL.mysql.txt b/INSTALL.mysql.txt
index bee581108..95a873433 100644
--- a/INSTALL.mysql.txt
+++ b/INSTALL.mysql.txt
@@ -20,18 +20,21 @@ initial database files. Next you must log in and set the access database rights:
Again, you will be asked for the 'username' database password. At the MySQL
prompt, enter the following command:
- GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
- ON databasename.*
+ GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
+ CREATE TEMPORARY TABLES ON databasename.*
TO 'username'@'localhost' IDENTIFIED BY 'password';
-where
+where:
'databasename' is the name of your database
- 'username@localhost' is the username of your MySQL account
+ 'username' is the username of your MySQL account
+ 'localhost' is the web server host where Drupal is installed
'password' is the password required for that username
-Note: Unless your database user has all of the privileges listed above, you will
-not be able to run Drupal.
+Note: Unless the database user/host combination for your Drupal installation
+has all of the privileges listed above (except possibly CREATE TEMPORARY TABLES,
+which is currently only used by Drupal core automated tests and some
+contributed modules), you will not be able to install or run Drupal.
If successful, MySQL will reply with: