Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8ec3221d
Commit
8ec3221d
authored
Aug 26, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Win32 wording.
parent
cf5dd067
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
24 deletions
+29
-24
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+4
-4
src/backend/libpq/pg_hba.conf.sample
src/backend/libpq/pg_hba.conf.sample
+25
-20
No files found.
doc/src/sgml/release.sgml
View file @
8ec3221d
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.2
89 2004/08/26 13:08:59
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.2
90 2004/08/26 13:44:38
momjian Exp $
-->
<appendix id="release">
...
...
@@ -40,9 +40,9 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.289 2004/08/26 13:08:59 momjian
</para>
<para>
Because Win32 is significantly different from the Unix platforms
supported in previous releases,
this port might have more bug
s
than other supported platforms in this release. Please test it
thoroughly before using it in production.
supported in previous releases,
it has not been tested a
s
extensively as other supported platforms in this release. Please
t
est it t
horoughly before using it in production.
</para>
<para>
Previous releases required the Unix emulation toolkit Cygwin for
...
...
src/backend/libpq/pg_hba.conf.sample
View file @
8ec3221d
...
...
@@ -10,12 +10,12 @@
# databases they can access. Records take one of seven forms:
#
# local DATABASE USER METHOD [OPTION]
# host DATABASE USER
IP-ADDRESS IP-MASK
METHOD [OPTION]
# hostssl DATABASE USER
IP-ADDRESS IP-MASK
METHOD [OPTION]
# hostnossl DATABASE USER
IP-ADDRESS IP-MASK
METHOD [OPTION]
# host DATABASE USER
IP-ADDRESS/CIDR-MASK
METHOD [OPTION]
# hostssl DATABASE USER
IP-ADDRESS/CIDR-MASK
METHOD [OPTION]
# hostnossl DATABASE USER
IP-ADDRESS/CIDR-MASK
METHOD [OPTION]
# host DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
# hostssl DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
# hostnossl DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
# host DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
# hostssl DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
# hostnossl DATABASE USER
CIDR-ADDRESS
METHOD [OPTION]
#
# (The uppercase quantities should be replaced by actual values.)
# The first field is the connection type: "local" is a Unix-domain socket,
...
...
@@ -24,16 +24,21 @@
# DATABASE can be "all", "sameuser", "samegroup", a database name (or
# a comma-separated list thereof), or a file name prefixed with "@".
# USER can be "all", an actual user name or a group name prefixed with
# "+" or a list containing either. IP-ADDRESS and IP-MASK specify the
# set of hosts the record matches. CIDR-MASK is an integer between 0
# and 32 (IPv6) or 128(IPv6) inclusive, that specifies the number of
# significant bits in the mask, so an IPv4 CIDR-MASK of 8 is equivalent
# to an IP-MASK of 255.0.0.0, and an IPv6 CIDR-MASK of 64 is equivalent
# to an IP-MASK of ffff:ffff:ffff:ffff::. METHOD can be "trust", "reject",
# "md5", "crypt", "password", "krb4", "krb5", "ident", or "pam". Note
# that "password" uses clear-text passwords; "md5" is preferred for
# encrypted passwords. OPTION is the ident map or the name of the PAM
# service.
# "+" or a list containing either.
#
# CIDR-ADDRESS specifies the set of hosts the record matches.
# It is made up of an IP address and a CIDR mask that is an integer
# between 0 and 32 (IPv6) or 128(IPv6) inclusive, that specifies
# the number of significant bits in the mask, e.g. an IPv4 CIDR mask
# of 8 is equivalent to an IP mask of 255.0.0.0, an IPv6 CIDR mask
# of 64 is equivalent to an IP mask of ffff:ffff:ffff:ffff::. A
# IPv4 CIDR mask of 32 is used for single hosts. Also, you can use a
# separate IP address and netmask to specify the set of hosts.
#
# METHOD can be "trust", "reject", "md5", "crypt", "password",
# "krb4", "krb5", "ident", or "pam". Note that "password" uses
# clear-text passwords; "md5" is preferred for encrypted passwords.
# OPTION is the ident map or the name of the PAM service.
#
# Database and user names containing spaces, commas, quotes and other special
# characters can be quoted. Quoting one of the keywords "all", "sameuser" or
...
...
@@ -56,10 +61,10 @@
@authcomment@
# TYPE DATABASE USER
IP-ADDRESS IP-MASK
METHOD
# TYPE DATABASE USER
CIDR-ADDRESS
METHOD
local all all
@authmethod@
local all all @authmethod@
# IPv4-style local connections:
host all all 127.0.0.1/32
@authmethod@
host all all 127.0.0.1/32 @authmethod@
# IPv6-style local connections:
host all all ::1/128
@authmethod@
host all all ::1/128 @authmethod@
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment