diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-11-27 22:10:02 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-11-27 22:10:02 +0100 |
commit | 7c7de65cbb940ef5a0879d93351403aac969a889 (patch) | |
tree | aaea03ca7ec3fa2377f5a5edad80a1d13a9e9ff3 /docs | |
parent | 47e67526f95b01e540f5cda8c4bc15a0e9dca593 (diff) | |
download | bugzilla-7c7de65cbb940ef5a0879d93351403aac969a889.tar.gz bugzilla-7c7de65cbb940ef5a0879d93351403aac969a889.tar.xz |
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.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml index f311149b6..cf4584a70 100644 --- a/docs/en/xml/installation.xml +++ b/docs/en/xml/installation.xml @@ -843,12 +843,12 @@ 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> </section> <section> |