aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-11-27 22:04:55 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2010-11-27 22:04:55 +0100
commitb4cb989e1705144cffab25dd2d7ea80091232bdb (patch)
treeae8aa3e309fa57cb04177690b10992e0771c7881 /docs
parentBug 610217: config.cgi?ctype=rdf should include product.allows_unconfirmed (diff)
downloadbugzilla-b4cb989e1705144cffab25dd2d7ea80091232bdb.tar.gz
bugzilla-b4cb989e1705144cffab25dd2d7ea80091232bdb.tar.bz2
bugzilla-b4cb989e1705144cffab25dd2d7ea80091232bdb.zip
Bug 416784: In PostgreSQL 8.1 and newer, createuser takes the argument -R instead of -A
r=manu a=LpSolit
Diffstat (limited to 'docs')
-rw-r--r--docs/en/xml/installation.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml
index 22de51ffd..1e8003e6b 100644
--- a/docs/en/xml/installation.xml
+++ b/docs/en/xml/installation.xml
@@ -855,12 +855,16 @@ max_allowed_packet=4M
<para>As the postgres user, you then need to create a new user: </para>
- <screen> <prompt>bash$</prompt> createuser -U postgres -dAP bugs</screen>
+ <screen> <prompt>bash$</prompt> createuser -U postgres -dRSP bugs</screen>
<para>When asked for a password, provide the password which will be set as
<replaceable>$db_pass</replaceable> in <filename>localconfig</filename>.
- The created user will have the ability to create databases and will not be
- able to create new users.</para>
+ The created user will not be a superuser (-S) and will not be able to create
+ new users (-R). He will only have the ability to create databases (-d).</para>
+
+ <note>
+ <para>If your are running PostgreSQL 8.0, you must replace -dRSP by -dAP.</para>
+ </note>
</section>
<section>