|
1 | 1 | <!--
|
2 |
| -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.17 2001/07/10 22:09:27 tgl Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.18 2001/08/15 18:42:14 momjian Exp $ |
3 | 3 | Postgres documentation
|
4 | 4 | -->
|
5 | 5 |
|
@@ -28,7 +28,7 @@ CREATE USER <replaceable class="PARAMETER">username</replaceable> [ [ WITH ] <re
|
28 | 28 | where <replaceable class="PARAMETER">option</replaceable> can be:
|
29 | 29 |
|
30 | 30 | SYSID <replaceable class="PARAMETER">uid</replaceable>
|
31 |
| - | PASSWORD '<replaceable class="PARAMETER">password</replaceable>' |
| 31 | + | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>' |
32 | 32 | | CREATEDB | NOCREATEDB
|
33 | 33 | | CREATEUSER | NOCREATEUSER
|
34 | 34 | | IN GROUP <replaceable class="PARAMETER">groupname</replaceable> [, ...]
|
@@ -72,12 +72,19 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
|
72 | 72 | </varlistentry>
|
73 | 73 |
|
74 | 74 | <varlistentry>
|
75 |
| - <term><replaceable class="parameter">password</replaceable></term> |
| 75 | + <term><replaceable class="parameter">[ encrypted | unencrypted ] password</replaceable></term> |
76 | 76 | <listitem>
|
77 | 77 | <para>
|
78 | 78 | Sets the user's password. If you do not plan to use password
|
79 | 79 | authentication you can omit this option, otherwise the user
|
80 | 80 | won't be able to connect to a password-authenticated server.
|
| 81 | + </para> |
| 82 | + <para> |
| 83 | + <literal>ENCRYPTED/UNENCRYPTED</literal> controls whether the |
| 84 | + password is stored encrypted in the database. Older clients may |
| 85 | + have trouble communicating using encrypted password storage. |
| 86 | + </para> |
| 87 | + <para> |
81 | 88 | See the chapter on client authentication in the
|
82 | 89 | <citetitle>Administrator's Guide</citetitle> for details on
|
83 | 90 | how to set up authentication mechanisms.
|
|
0 commit comments