Mercurial > defr > drupal > core
comparison INSTALL.pgsql.txt @ 1:c1f4ac30525a 6.0
Drupal 6.0
| author | Franck Deroche <webmaster@defr.org> |
|---|---|
| date | Tue, 23 Dec 2008 14:28:28 +0100 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 0:5a113a1c4740 | 1:c1f4ac30525a |
|---|---|
| 1 // $Id: INSTALL.pgsql.txt,v 1.7 2007/11/26 16:36:42 dries Exp $ | |
| 2 | |
| 3 CREATE THE PostgreSQL DATABASE | |
| 4 ------------------------------ | |
| 5 | |
| 6 Note that the database must be created with UTF-8 (Unicode) encoding. | |
| 7 | |
| 8 1. CREATE DATABASE USER | |
| 9 | |
| 10 This step is only necessary if you don't already have a user set up (e.g. | |
| 11 by your host) or you want to create new user for use with Drupal only. The | |
| 12 following command creates a new user named "username" and asks for a | |
| 13 password for that user: | |
| 14 | |
| 15 createuser --pwprompt --encrypted --no-adduser --no-createdb username | |
| 16 | |
| 17 If everything works correctly, you'll see a "CREATE USER" notice. | |
| 18 | |
| 19 2. CREATE THE DRUPAL DATABASE | |
| 20 | |
| 21 This step is only necessary if you don't already have a database set up (e.g. | |
| 22 by your host) or you want to create new database for use with Drupal only. | |
| 23 The following command creates a new database named "databasename", which is | |
| 24 owned by previously created "username": | |
| 25 | |
| 26 createdb --encoding=UNICODE --owner=username databasename | |
| 27 | |
| 28 If everything works correctly, you'll see a "CREATE DATABASE" notice. |
