diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-21 06:44:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-21 06:44:16 +0000 |
commit | 65a4ac0bcc148035cbb2ce0bc39deaf07709d5a9 (patch) | |
tree | 4ac8f0ceb7a85ca9120542accbd28ce9eadaa31d /INSTALL | |
parent | fbbccada8e30d92fbe87d94a7d6ca4c0c5f4c070 (diff) | |
download | brdo-65a4ac0bcc148035cbb2ce0bc39deaf07709d5a9.tar.gz brdo-65a4ac0bcc148035cbb2ce0bc39deaf07709d5a9.tar.bz2 |
- Some INSTALL file improvements by Slavica. Patch #5.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -60,20 +60,23 @@ INSTALLATION 2. CREATE THE DRUPAL DATABASE - These instructions are for MySQL if you are using anything else - check the database documentation. + These instructions are for MySQL. If you are using another database, + check the database documentation. In the following examples, + "dba_user" is an example MySQL user which has the CREATE and GRANT + privileges. You will need to use the appropriate user name for your + system. First, you must create a new database for your Drupal site: - $ mysqladmin -u root -p create drupal + $ mysqladmin -u dba_user -p create drupal - MySQL will prompt for the root database password and then create + MySQL will prompt for the dba_user database password and then create the initial database files. Next you must login and set the access database rights: - $ mysql -u root -p + $ mysql -u dba_user -p - Again, you will be asked for the root database password. At the + Again, you will be asked for the dba_user database password. At the MySQL prompt, enter following command: GRANT ALL PRIVILEGES ON drupal.* |