Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
25f03eb3
Commit
25f03eb3
authored
24 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Update sample error messages to agree with current code.
parent
551e0aa9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/client-auth.sgml
+8
-7
8 additions, 7 deletions
doc/src/sgml/client-auth.sgml
with
8 additions
and
7 deletions
doc/src/sgml/client-auth.sgml
+
8
−
7
View file @
25f03eb3
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.
9
200
0/11/21
20:
44
:3
1
tgl Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.
10
200
1/03/15
20:
01
:3
2
tgl Exp $ -->
<chapter id="client-authentication">
<chapter id="client-authentication">
<title>Client Authentication</title>
<title>Client Authentication</title>
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
of a set of records, one per line. Blank lines and lines beginning
of a set of records, one per line. Blank lines and lines beginning
with a hash character (<quote>#</quote>) are ignored. A record is
with a hash character (<quote>#</quote>) are ignored. A record is
made up of a number of fields which are separated by spaces and/or
made up of a number of fields which are separated by spaces and/or
tabs
and
cannot be continued across
several
lines.
tabs
. Records
cannot be continued across lines.
</para>
</para>
<para>
<para>
...
@@ -85,7 +85,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
...
@@ -85,7 +85,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
<para>
<para>
This record pertains to connection attempts over TCP/IP
This record pertains to connection attempts over TCP/IP
networks. Note that TCP/IP connections are completely disabled
networks. Note that TCP/IP connections are completely disabled
unless the server is started with the <option>-i</option> or
unless the server is started with the <option>-i</option>
switch
or
the equivalent configuration parameter is set.
the equivalent configuration parameter is set.
</para>
</para>
</listitem>
</listitem>
...
@@ -234,6 +234,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
...
@@ -234,6 +234,7 @@ hostssl <replaceable>database</replaceable> <replaceable>IP-address</replaceable
of the connecting user. <productname>Postgres</productname>
of the connecting user. <productname>Postgres</productname>
then verifies whether the so identified operating system user
then verifies whether the so identified operating system user
is allowed to connect as the database user that is requested.
is allowed to connect as the database user that is requested.
This is only available for TCP/IP connections.
The <replaceable>authentication option</replaceable> following
The <replaceable>authentication option</replaceable> following
the <literal>ident</> keyword specifies the name of an
the <literal>ident</> keyword specifies the name of an
<firstterm>ident map</firstterm> that specifies which operating
<firstterm>ident map</firstterm> that specifies which operating
...
@@ -507,7 +508,7 @@ host all 192.168.0.0 255.255.0.0 ident omicron
...
@@ -507,7 +508,7 @@ host all 192.168.0.0 255.255.0.0 ident omicron
<para>
<para>
The <quote>Identification Protocol</quote> is described in
The <quote>Identification Protocol</quote> is described in
<citetitle>RFC 1413</citetitle>. Virtually every Unix-like
<citetitle>RFC 1413</citetitle>. Virtually every Unix-like
operating system
s
ships with an ident server that listens on TCP
operating system ships with an ident server that listens on TCP
port 113 by default. The basic functionality of an ident server
port 113 by default. The basic functionality of an ident server
is to answer questions like <quote>What user initiated the
is to answer questions like <quote>What user initiated the
connection that goes out of your port <replaceable>X</replaceable>
connection that goes out of your port <replaceable>X</replaceable>
...
@@ -628,14 +629,14 @@ Password authentication failed for user 'joeblow'
...
@@ -628,14 +629,14 @@ Password authentication failed for user 'joeblow'
<para>
<para>
<ProgramListing>
<ProgramListing>
FATAL 1:
SetUserId:
user
'
joeblow
' i
s not
in 'pg_shadow'
FATAL 1: user
"
joeblow
" doe
s not
exist
</ProgramListing>
</ProgramListing>
Th
is is the fancy way of saying that the user doesn't exist at all
.
Th
e indicated user name was not found in pg_shadow
.
</para>
</para>
<para>
<para>
<ProgramListing>
<ProgramListing>
FATAL 1: Database testdb does not exist in
pg_database
FATAL 1: Database
"
testdb
"
does not exist in
the system catalog.
</ProgramListing>
</ProgramListing>
The database you're trying to connect to doesn't exist. Note that
The database you're trying to connect to doesn't exist. Note that
if you don't specify a database name, it defaults to the database
if you don't specify a database name, it defaults to the database
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment