summaryrefslogtreecommitdiff
path: root/INSTALL.pgsql.txt
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-27 19:42:56 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-27 19:42:56 +0000
commit1aec298314454b67fbc18738c3ffa6f12a14dd59 (patch)
treebd84dbcdf3593e276d6d3c352feff460be716762 /INSTALL.pgsql.txt
parenta7e7c0a9e73f71f8de0db084e194647237fab298 (diff)
downloadbrdo-1aec298314454b67fbc18738c3ffa6f12a14dd59.tar.gz
brdo-1aec298314454b67fbc18738c3ffa6f12a14dd59.tar.bz2
- Patch #349508 by Josh Waihi: make sure that the database is installed using UTF-8 on PostgreSQL.
Diffstat (limited to 'INSTALL.pgsql.txt')
-rw-r--r--INSTALL.pgsql.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL.pgsql.txt b/INSTALL.pgsql.txt
index 20705478f..f5f276e58 100644
--- a/INSTALL.pgsql.txt
+++ b/INSTALL.pgsql.txt
@@ -12,9 +12,9 @@ Note that the database must be created with UTF-8 (Unicode) encoding.
following command creates a new user named "username" and asks for a
password for that user:
- createuser --pwprompt --encrypted --no-adduser --no-createdb username
+ createuser --pwprompt --encrypted --no-createrole --no-createdb username
- If everything works correctly, you'll see a "CREATE USER" notice.
+ If there are no errors then the command was successful
2. CREATE THE DRUPAL DATABASE
@@ -23,6 +23,6 @@ Note that the database must be created with UTF-8 (Unicode) encoding.
The following command creates a new database named "databasename", which is
owned by previously created "username":
- createdb --encoding=UNICODE --owner=username databasename
+ createdb --encoding=UTF8 --owner=username databasename
- If everything works correctly, you'll see a "CREATE DATABASE" notice.
+ If there are no errors then the command was successful