- Some INSTALL file improvements by Slavica. Patch #5.

4.2.x
Dries Buytaert 2003-06-21 06:44:16 +00:00
parent fbbccada8e
commit 65a4ac0bcc
1 changed files with 9 additions and 6 deletions

15
INSTALL
View File

@ -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.*