Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 25f03eb

Browse files
committed
Update sample error messages to agree with current code.
1 parent 551e0aa commit 25f03eb

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

doc/src/sgml/client-auth.sgml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.9 2000/11/21 20:44:31 tgl Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.10 2001/03/15 20:01:32 tgl Exp $ -->
22

33
<chapter id="client-authentication">
44
<title>Client Authentication</title>
@@ -56,7 +56,7 @@
5656
of a set of records, one per line. Blank lines and lines beginning
5757
with a hash character (<quote>#</quote>) are ignored. A record is
5858
made up of a number of fields which are separated by spaces and/or
59-
tabs and cannot be continued across several lines.
59+
tabs. Records cannot be continued across lines.
6060
</para>
6161

6262
<para>
@@ -85,7 +85,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
8585
<para>
8686
This record pertains to connection attempts over TCP/IP
8787
networks. Note that TCP/IP connections are completely disabled
88-
unless the server is started with the <option>-i</option> or
88+
unless the server is started with the <option>-i</option> switch or
8989
the equivalent configuration parameter is set.
9090
</para>
9191
</listitem>
@@ -234,6 +234,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
234234
of the connecting user. <productname>Postgres</productname>
235235
then verifies whether the so identified operating system user
236236
is allowed to connect as the database user that is requested.
237+
This is only available for TCP/IP connections.
237238
The <replaceable>authentication option</replaceable> following
238239
the <literal>ident</> keyword specifies the name of an
239240
<firstterm>ident map</firstterm> that specifies which operating
@@ -507,7 +508,7 @@ host all 192.168.0.0 255.255.0.0 ident omicron
507508
<para>
508509
The <quote>Identification Protocol</quote> is described in
509510
<citetitle>RFC 1413</citetitle>. Virtually every Unix-like
510-
operating systems ships with an ident server that listens on TCP
511+
operating system ships with an ident server that listens on TCP
511512
port 113 by default. The basic functionality of an ident server
512513
is to answer questions like <quote>What user initiated the
513514
connection that goes out of your port <replaceable>X</replaceable>
@@ -628,14 +629,14 @@ Password authentication failed for user 'joeblow'
628629

629630
<para>
630631
<ProgramListing>
631-
FATAL 1: SetUserId: user 'joeblow' is not in 'pg_shadow'
632+
FATAL 1: user "joeblow" does not exist
632633
</ProgramListing>
633-
This is the fancy way of saying that the user doesn't exist at all.
634+
The indicated user name was not found in pg_shadow.
634635
</para>
635636

636637
<para>
637638
<ProgramListing>
638-
FATAL 1: Database testdb does not exist in pg_database
639+
FATAL 1: Database "testdb" does not exist in the system catalog.
639640
</ProgramListing>
640641
The database you're trying to connect to doesn't exist. Note that
641642
if you don't specify a database name, it defaults to the database

0 commit comments

Comments
 (0)