@@ -20,18 +20,21 @@ initial database files. Next you must log in and set the access database rights:
20
20
Again, you will be asked for the 'username' database password. At the MySQL
21
21
prompt, enter the following command:
22
22
23
- GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
24
- ON databasename.*
23
+ GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
24
+ CREATE TEMPORARY TABLES ON databasename.*
25
25
TO 'username'@'localhost' IDENTIFIED BY 'password';
26
26
27
- where
27
+ where:
28
28
29
29
'databasename' is the name of your database
30
- 'username@localhost' is the username of your MySQL account
30
+ 'username' is the username of your MySQL account
31
+ 'localhost' is the web server host where Drupal is installed
31
32
'password' is the password required for that username
32
33
33
- Note: Unless your database user has all of the privileges listed above, you will
34
- not be able to run Drupal.
34
+ Note: Unless the database user/host combination for your Drupal installation
35
+ has all of the privileges listed above (except possibly CREATE TEMPORARY TABLES,
36
+ which is currently only used by Drupal core automated tests and some
37
+ contributed modules), you will not be able to install or run Drupal.
35
38
36
39
If successful, MySQL will reply with:
37
40
0 commit comments