Client authentication is controlled by a configuration file, which traditionally is named pg_hba.conf
and is stored in the database cluster’s data directory. (HBA stands for host-based authentication.) A default pg_hba.conf
file is installed when the data directory is initialized by initdb. It is possible to place the authentication configuration file elsewhere, however; see the hba_file configuration parameter.
The general format of the pg_hba.conf
file is a set of records, one per line. Blank lines are ignored, as is any text after the #
comment character. A record can be continued onto the next line by ending the line with a backslash. (Backslashes are not special except at the end of a line.) A record is made up of a number of fields which are separated by spaces and/or tabs. Fields can contain white space if the field value is double-quoted. Quoting one of the keywords in a database, user, or address field (e.g., all
or replication
) makes the word lose its special meaning, and just match a database, user, or host with that name. Backslash line continuation applies even within quoted text or comments.
Each authentication record specifies a connection type, a client IP address range (if relevant for the connection type), a database name, a user name, and the authentication method to be used for connections matching these parameters. The first record with a matching connection type, client address, requested database, and user name is used to perform authentication. There is no “fall-through” or “backup”: if one record is chosen and the authentication fails, subsequent records are not considered. If no record matches, access is denied.
Each record can be an include directive or an authentication record. Include directives specify files that can be included, that contain additional records. The records will be inserted in place of the include directives. Include directives only contain two fields: include
, include_if_exists
or include_dir
directive and the file or directory to be included. The file or directory can be a relative or absolute path, and can be double-quoted. For the include_dir
form, all files not starting with a .
and ending with .conf
will be included. Multiple files within an include directory are processed in file name order (according to C locale rules, i.e., numbers before letters, and uppercase letters before lowercase ones).
A record can have several formats:
localdatabase
user
auth-method
[auth-options
] hostdatabase
user
address
auth-method
[auth-options
] hostssldatabase
user
address
auth-method
[auth-options
] hostnossldatabase
user
address
auth-method
[auth-options
] hostgssencdatabase
user
address
auth-method
[auth-options
] hostnogssencdatabase
user
address
auth-method
[auth-options
] hostdatabase
user
IP-address
IP-mask
auth-method
[auth-options
] hostssldatabase
user
IP-address
IP-mask
auth-method
[auth-options
] hostnossldatabase
user
IP-address
IP-mask
auth-method
[auth-options
] hostgssencdatabase
user
IP-address
IP-mask
auth-method
[auth-options
] hostnogssencdatabase
user
IP-address
IP-mask
auth-method
[auth-options
] includefile
include_if_existsfile
include_dirdirectory
The meaning of the fields is as follows:
local
-
This record matches connection attempts using Unix-domain sockets. Without a record of this type, Unix-domain socket connections are disallowed.
host
-
This record matches connection attempts made using TCP/IP.
host
records match SSL or non-SSL connection attempts as well as GSSAPI encrypted or non-GSSAPI encrypted connection attempts.Note
Remote TCP/IP connections will not be possible unless the server is started with an appropriate value for the listen_addresses configuration parameter, since the default behavior is to listen for TCP/IP connections only on the local loopback address
localhost
. hostssl
-
This record matches connection attempts made using TCP/IP, but only when the connection is made with SSL encryption.
To make use of this option the server must be built with SSL support. Furthermore, SSL must be enabled by setting the ssl configuration parameter (see Section 19.9 for more information). Otherwise, the
hostssl
record is ignored except for logging a warning that it cannot match any connections. hostnossl
-
This record type has the opposite behavior of
hostssl
; it only matches connection attempts made over TCP/IP that do not use SSL. hostgssenc
-
This record matches connection attempts made using TCP/IP, but only when the connection is made with GSSAPI encryption.
To make use of this option the server must be built with GSSAPI support. Otherwise, the
hostgssenc
record is ignored except for logging a warning that it cannot match any connections. hostnogssenc
-
This record type has the opposite behavior of
hostgssenc
; it only matches connection attempts made over TCP/IP that do not use GSSAPI encryption. database
-
Specifies which database name(s) this record matches. The value
all
specifies that it matches all databases. The valuesameuser
specifies that the record matches if the requested database has the same name as the requested user. The valuesamerole
specifies that the requested user must be a member of the role with the same name as the requested database. (samegroup
is an obsolete but still accepted spelling ofsamerole
.) Superusers are not considered to be members of a role for the purposes ofsamerole
unless they are explicitly members of the role, directly or indirectly, and not just by virtue of being a superuser. The valuereplication
specifies that the record matches if a physical replication connection is requested, however, it doesn’t match with logical replication connections. Note that physical replication connections do not specify any particular database whereas logical replication connections do specify it. Otherwise, this is the name of a specific PostgreSQL database or a regular expression. Multiple database names and/or regular expressions can be supplied by separating them with commas.If the database name starts with a slash (
/
), the remainder of the name is treated as a regular expression. (See Section 9.7.3.1 for details of PostgreSQL‘s regular expression syntax.)A separate file containing database names and/or regular expressions can be specified by preceding the file name with
@
. user
-
Specifies which database user name(s) this record matches. The value
all
specifies that it matches all users. Otherwise, this is either the name of a specific database user, a regular expression (when starting with a slash (/
), or a group name preceded by+
. (Recall that there is no real distinction between users and groups in PostgreSQL; a+
mark really means “match any of the roles that are directly or indirectly members of this role”, while a name without a+
mark matches only that specific role.) For this purpose, a superuser is only considered to be a member of a role if they are explicitly a member of the role, directly or indirectly, and not just by virtue of being a superuser. Multiple user names and/or regular expressions can be supplied by separating them with commas.If the user name starts with a slash (
/
), the remainder of the name is treated as a regular expression. (See Section 9.7.3.1 for details of PostgreSQL‘s regular expression syntax.)A separate file containing user names and/or regular expressions can be specified by preceding the file name with
@
. address
-
Specifies the client machine address(es) that this record matches. This field can contain either a host name, an IP address range, or one of the special key words mentioned below.
An IP address range is specified using standard numeric notation for the range’s starting address, then a slash (
/
) and a CIDR mask length. The mask length indicates the number of high-order bits of the client IP address that must match. Bits to the right of this should be zero in the given IP address. There must not be any white space between the IP address, the/
, and the CIDR mask length.Typical examples of an IPv4 address range specified this way are
172.20.143.89/32
for a single host, or172.20.143.0/24
for a small network, or10.6.0.0/16
for a larger one. An IPv6 address range might look like::1/128
for a single host (in this case the IPv6 loopback address) orfe80::7a31:c1ff:0000:0000/96
for a small network.0.0.0.0/0
represents all IPv4 addresses, and::0/0
represents all IPv6 addresses. To specify a single host, use a mask length of 32 for IPv4 or 128 for IPv6. In a network address, do not omit trailing zeroes.An entry given in IPv4 format will match only IPv4 connections, and an entry given in IPv6 format will match only IPv6 connections, even if the represented address is in the IPv4-in-IPv6 range.
You can also write
all
to match any IP address,samehost
to match any of the server’s own IP addresses, orsamenet
to match any address in any subnet that the server is directly connected to.If a host name is specified (anything that is not an IP address range or a special key word is treated as a host name), that name is compared with the result of a reverse name resolution of the client’s IP address (e.g., reverse DNS lookup, if DNS is used). Host name comparisons are case insensitive. If there is a match, then a forward name resolution (e.g., forward DNS lookup) is performed on the host name to check whether any of the addresses it resolves to are equal to the client’s IP address. If both directions match, then the entry is considered to match. (The host name that is used in
pg_hba.conf
should be the one that address-to-name resolution of the client’s IP address returns, otherwise the line won’t be matched. Some host name databases allow associating an IP address with multiple host names, but the operating system will only return one host name when asked to resolve an IP address.)A host name specification that starts with a dot (
.
) matches a suffix of the actual host name. So.example.com
would matchfoo.example.com
(but not justexample.com
).When host names are specified in
pg_hba.conf
, you should make sure that name resolution is reasonably fast. It can be of advantage to set up a local name resolution cache such asnscd
. Also, you may wish to enable the configuration parameterlog_hostname
to see the client’s host name instead of the IP address in the log.These fields do not apply to
local
records.Note
Users sometimes wonder why host names are handled in this seemingly complicated way, with two name resolutions including a reverse lookup of the client’s IP address. This complicates use of the feature in case the client’s reverse DNS entry is not set up or yields some undesirable host name. It is done primarily for efficiency: this way, a connection attempt requires at most two resolver lookups, one reverse and one forward. If there is a resolver problem with some address, it becomes only that client’s problem. A hypothetical alternative implementation that only did forward lookups would have to resolve every host name mentioned in
pg_hba.conf
during every connection attempt. That could be quite slow if many names are listed. And if there is a resolver problem with one of the host names, it becomes everyone’s problem.Also, a reverse lookup is necessary to implement the suffix matching feature, because the actual client host name needs to be known in order to match it against the pattern.
Note that this behavior is consistent with other popular implementations of host name-based access control, such as the Apache HTTP Server and TCP Wrappers.
IP-address
IP-mask
-
These two fields can be used as an alternative to the
IP-address
/
mask-length
notation. Instead of specifying the mask length, the actual mask is specified in a separate column. For example,255.0.0.0
represents an IPv4 CIDR mask length of 8, and255.255.255.255
represents a CIDR mask length of 32.These fields do not apply to
local
records. auth-method
-
Specifies the authentication method to use when a connection matches this record. The possible choices are summarized here; details are in Section 21.3. All the options are lower case and treated case sensitively, so even acronyms like
ldap
must be specified as lower case.trust
-
Allow the connection unconditionally. This method allows anyone that can connect to the PostgreSQL database server to login as any PostgreSQL user they wish, without the need for a password or any other authentication. See Section 21.4 for details.
reject
-
Reject the connection unconditionally. This is useful for “filtering out” certain hosts from a group, for example a
reject
line could block a specific host from connecting, while a later line allows the remaining hosts in a specific network to connect. scram-sha-256
-
Perform SCRAM-SHA-256 authentication to verify the user’s password. See Section 21.5 for details.
md5
-
Perform SCRAM-SHA-256 or MD5 authentication to verify the user’s password. See Section 21.5 for details.
password
-
Require the client to supply an unencrypted password for authentication. Since the password is sent in clear text over the network, this should not be used on untrusted networks. See Section 21.5 for details.
gss
-
Use GSSAPI to authenticate the user. This is only available for TCP/IP connections. See Section 21.6 for details. It can be used in conjunction with GSSAPI encryption.
sspi
-
Use SSPI to authenticate the user. This is only available on Windows. See Section 21.7 for details.
ident
-
Obtain the operating system user name of the client by contacting the ident server on the client and check if it matches the requested database user name. Ident authentication can only be used on TCP/IP connections. When specified for local connections, peer authentication will be used instead. See Section 21.8 for details.
peer
-
Obtain the client’s operating system user name from the operating system and check if it matches the requested database user name. This is only available for local connections. See Section 21.9 for details.
ldap
-
Authenticate using an LDAP server. See Section 21.10 for details.
radius
-
Authenticate using a RADIUS server. See Section 21.11 for details.
cert
-
Authenticate using SSL client certificates. See Section 21.12 for details.
pam
-
Authenticate using the Pluggable Authentication Modules (PAM) service provided by the operating system. See Section 21.13 for details.
bsd
-
Authenticate using the BSD Authentication service provided by the operating system. See Section 21.14 for details.
auth-options
-
After the
auth-method
field, there can be field(s) of the formname
=
value
that specify options for the authentication method. Details about which options are available for which authentication methods appear below.In addition to the method-specific options listed below, there is a method-independent authentication option
clientcert
, which can be specified in anyhostssl
record. This option can be set toverify-ca
orverify-full
. Both options require the client to present a valid (trusted) SSL certificate, whileverify-full
additionally enforces that thecn
(Common Name) in the certificate matches the username or an applicable mapping. This behavior is similar to thecert
authentication method (see Section 21.12) but enables pairing the verification of client certificates with any authentication method that supportshostssl
entries.On any record using client certificate authentication (i.e. one using the
cert
authentication method or one using theclientcert
option), you can specify which part of the client certificate credentials to match using theclientname
option. This option can have one of two values. If you specifyclientname=CN
, which is the default, the username is matched against the certificate’sCommon Name (CN)
. If instead you specifyclientname=DN
the username is matched against the entireDistinguished Name (DN)
of the certificate. This option is probably best used in conjunction with a username map. The comparison is done with theDN
in RFC 2253 format. To see theDN
of a client certificate in this format, doopenssl x509 -in myclient.crt -noout --subject -nameopt RFC2253 | sed "s/^subject=//"
Care needs to be taken when using this option, especially when using regular expression matching against the
DN
. include
-
This line will be replaced by the contents of the given file.
include_if_exists
-
This line will be replaced by the content of the given file if the file exists. Otherwise, a message is logged to indicate that the file has been skipped.
include_dir
-
This line will be replaced by the contents of all the files found in the directory, if they don’t start with a
.
and end with.conf
, processed in file name order (according to C locale rules, i.e., numbers before letters, and uppercase letters before lowercase ones).
Files included by @
constructs are read as lists of names, which can be separated by either whitespace or commas. Comments are introduced by #
, just as in pg_hba.conf
, and nested @
constructs are allowed. Unless the file name following @
is an absolute path, it is taken to be relative to the directory containing the referencing file.
Since the pg_hba.conf
records are examined sequentially for each connection attempt, the order of the records is significant. Typically, earlier records will have tight connection match parameters and weaker authentication methods, while later records will have looser match parameters and stronger authentication methods. For example, one might wish to use trust
authentication for local TCP/IP connections but require a password for remote TCP/IP connections. In this case a record specifying trust
authentication for connections from 127.0.0.1 would appear before a record specifying password authentication for a wider range of allowed client IP addresses.
The pg_hba.conf
file is read on start-up and when the main server process receives a SIGHUP signal. If you edit the file on an active system, you will need to signal the postmaster (using pg_ctl reload
, calling the SQL function pg_reload_conf()
, or using kill -HUP
) to make it re-read the file.
Note
The preceding statement is not true on Microsoft Windows: there, any changes in the pg_hba.conf
file are immediately applied by subsequent new connections.
The system view pg_hba_file_rules
can be helpful for pre-testing changes to the pg_hba.conf
file, or for diagnosing problems if loading of the file did not have the desired effects. Rows in the view with non-null error
fields indicate problems in the corresponding lines of the file.
Tip
To connect to a particular database, a user must not only pass the pg_hba.conf
checks, but must have the CONNECT
privilege for the database. If you wish to restrict which users can connect to which databases, it’s usually easier to control this by granting/revoking CONNECT
privilege than to put the rules in pg_hba.conf
entries.
Some examples of pg_hba.conf
entries are shown in Example 21.1. See the next section for details on the different authentication methods.
Example 21.1. Example pg_hba.conf
Entries
# Allow any user on the local system to connect to any database with # any database user name using Unix-domain sockets (the default for local # connections). # # TYPE DATABASE USER ADDRESS METHOD local all all trust # The same using local loopback TCP/IP connections. # # TYPE DATABASE USER ADDRESS METHOD host all all 127.0.0.1/32 trust # The same as the previous line, but using a separate netmask column # # TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD host all all 127.0.0.1 255.255.255.255 trust # The same over IPv6. # # TYPE DATABASE USER ADDRESS METHOD host all all ::1/128 trust # The same using a host name (would typically cover both IPv4 and IPv6). # # TYPE DATABASE USER ADDRESS METHOD host all all localhost trust # The same using a regular expression for DATABASE, that allows connection # to the database db1, db2 and any databases with a name beginning with "db" # and finishing with a number using two to four digits (like "db1234" or # "db12"). # # TYPE DATABASE USER ADDRESS METHOD local db1,"/^db\d{2,4}$",db2 all localhost trust # Allow any user from any host with IP address 192.168.93.x to connect # to database "postgres" as the same user name that ident reports for # the connection (typically the operating system user name). # # TYPE DATABASE USER ADDRESS METHOD host postgres all 192.168.93.0/24 ident # Allow any user from host 192.168.12.10 to connect to database # "postgres" if the user's password is correctly supplied. # # TYPE DATABASE USER ADDRESS METHOD host postgres all 192.168.12.10/32 scram-sha-256 # Allow any user from hosts in the example.com domain to connect to # any database if the user's password is correctly supplied. # # Require SCRAM authentication for most users, but make an exception # for user 'mike', who uses an older client that doesn't support SCRAM # authentication. # # TYPE DATABASE USER ADDRESS METHOD host all mike .example.com md5 host all all .example.com scram-sha-256 # In the absence of preceding "host" lines, these three lines will # reject all connections from 192.168.54.1 (since that entry will be # matched first), but allow GSSAPI-encrypted connections from anywhere else # on the Internet. The zero mask causes no bits of the host IP address to # be considered, so it matches any host. Unencrypted GSSAPI connections # (which "fall through" to the third line since "hostgssenc" only matches # encrypted GSSAPI connections) are allowed, but only from 192.168.12.10. # # TYPE DATABASE USER ADDRESS METHOD host all all 192.168.54.1/32 reject hostgssenc all all 0.0.0.0/0 gss host all all 192.168.12.10/32 gss # Allow users from 192.168.x.x hosts to connect to any database, if # they pass the ident check. If, for example, ident says the user is # "bryanh" and he requests to connect as PostgreSQL user "guest1", the # connection is allowed if there is an entry in pg_ident.conf for map # "omicron" that says "bryanh" is allowed to connect as "guest1". # # TYPE DATABASE USER ADDRESS METHOD host all all 192.168.0.0/16 ident map=omicron # If these are the only four lines for local connections, they will # allow local users to connect only to their own databases (databases # with the same name as their database user name) except for users whose # name end with "helpdesk", administrators and members of role "support", # who can connect to all databases. The file $PGDATA/admins contains a # list of names of administrators. Passwords are required in all cases. # # TYPE DATABASE USER ADDRESS METHOD local sameuser all md5 local all /^.*helpdesk$ md5 local all @admins md5 local all +support md5 # The last two lines above can be combined into a single line: local all @admins,+support md5 # The database column can also use lists and file names: local db1,db2,@demodbs all md5
Wondering how to configure windows postgresql pg_hba.conf? Our postgreSQL Support team is here to lend a hand with your queries and issues.
How to configure windows postgresql pg_hba.conf?
Client authentication is controlled by a configuration file, which traditionally is pg_hba.conf
and is store in the database cluster’s data directory.
A default pg_hba.conf
file is install when the data directory is initialized by initdb.
It is possible to place the authentication configuration file elsewhere, however; see the hba_file configuration parameter.
The general format of the pg_hba.conf
file is a set of records, one per line.
Blank lines are ignored, as is any text after the #
comment character.
A record can continue onto the next line by ending the line with a backslash.
A record is made up of a number of fields which are separate by spaces and/or tabs.
Fields can contain white space if the field value is double-quote.
Quoting one of the keywords in a database, user, or address field makes the word lose its special meaning, and just match a database, user, or host with that name.
Backslash line continuation applies even within quoted text or comments.
Each record specifies a connection type, a client IP address range, a database name, a user name, and the authentication method to use for connections matching these parameters.
The first record with a matching connection type, client address, request database, and user name is use to perform authentication.
There is no “fall-through” or “backup”: if one record is chosen and the authentication fails, subsequent records are not consider.
If no record matches, access is deny.
Today, let us see the steps followed by our support techs to configure windows postgresql pg_hba.conf
Installing and configuring PostgreSQL
- Firstly, download and install PostgreSQL.Visit https://www.enterprisedb.com/downloads/postgres-postgresql-downloads to see a list of support operating systems and download the installer.
- Then, open the
postgresql.conf
configuration file. This file is locate at%postgresql_dir%\data
. Here%postgresql_dir%
is the folder that PostgreSQL was install in. - Next, specify the IP address that Kaspersky Scan Engine must use to connect to PostgreSQL in the
listen_addresses
setting ofpostgresql.conf
. - Then, specify the port on which the PostgreSQL is to listen for connections from Kaspersky Scan Engine in the
port
setting ofpostgresql.conf
. - Next, save and close
postgresql.conf
. - Next, open the
pg_hba.conf
configuration file. This file is locate in the same folder aspostgresql.conf
. - Then, make sure that PostgreSQL requires an MD5-encrypt password for authentication from all of its clients. Find the following line in
pg_hba.conf
:host all all 127.0.0.1/32 md5If the authentication method specify on this line is other thanmd5
, change it tomd5
. - If PostgreSQL and Kaspersky Scan Engine are install on different computers, add the following line to
pg_hba.conf
:host all all %IP%/32 md5Here%IP%
is the IP address of the computer on which Kaspersky Scan Engine is install. - Then, save and close
pg_hba.conf
. - Finally, restart PostgreSQL by running the following command from the command line:sc stop postgresql-x64-11sc start postgresql-x64-11
[Looking for a solution to another query? We’re happy to help.]
Conclusion
In this article, we provide a quick and simple solution from our Support team to see how virtualizor LXC works
Wondering how to configure windows postgresql pg_hba.conf? Our postgreSQL Support team is here to lend a hand with your queries and issues.
How to configure windows postgresql pg_hba.conf?
Client authentication is controlled by a configuration file, which traditionally is pg_hba.conf
and is store in the database cluster’s data directory.
A default pg_hba.conf
file is install when the data directory is initialized by initdb.
It is possible to place the authentication configuration file elsewhere, however; see the hba_file configuration parameter.
The general format of the pg_hba.conf
file is a set of records, one per line.
Blank lines are ignored, as is any text after the #
comment character.
A record can continue onto the next line by ending the line with a backslash.
A record is made up of a number of fields which are separate by spaces and/or tabs.
Fields can contain white space if the field value is double-quote.
Quoting one of the keywords in a database, user, or address field makes the word lose its special meaning, and just match a database, user, or host with that name.
Backslash line continuation applies even within quoted text or comments.
Each record specifies a connection type, a client IP address range, a database name, a user name, and the authentication method to use for connections matching these parameters.
The first record with a matching connection type, client address, request database, and user name is use to perform authentication.
There is no “fall-through” or “backup”: if one record is chosen and the authentication fails, subsequent records are not consider.
If no record matches, access is deny.
Today, let us see the steps followed by our support techs to configure windows postgresql pg_hba.conf
Installing and configuring PostgreSQL
- Firstly, download and install PostgreSQL.Visit https://www.enterprisedb.com/downloads/postgres-postgresql-downloads to see a list of support operating systems and download the installer.
- Then, open the
postgresql.conf
configuration file. This file is locate at%postgresql_dir%\data
. Here%postgresql_dir%
is the folder that PostgreSQL was install in. - Next, specify the IP address that Kaspersky Scan Engine must use to connect to PostgreSQL in the
listen_addresses
setting ofpostgresql.conf
. - Then, specify the port on which the PostgreSQL is to listen for connections from Kaspersky Scan Engine in the
port
setting ofpostgresql.conf
. - Next, save and close
postgresql.conf
. - Next, open the
pg_hba.conf
configuration file. This file is locate in the same folder aspostgresql.conf
. - Then, make sure that PostgreSQL requires an MD5-encrypt password for authentication from all of its clients. Find the following line in
pg_hba.conf
:host all all 127.0.0.1/32 md5If the authentication method specify on this line is other thanmd5
, change it tomd5
. - If PostgreSQL and Kaspersky Scan Engine are install on different computers, add the following line to
pg_hba.conf
:host all all %IP%/32 md5Here%IP%
is the IP address of the computer on which Kaspersky Scan Engine is install. - Then, save and close
pg_hba.conf
. - Finally, restart PostgreSQL by running the following command from the command line:sc stop postgresql-x64-11sc start postgresql-x64-11
[Looking for a solution to another query? We’re happy to help.]
Conclusion
In this article, we provide a quick and simple solution from our Support team to configure windows postgresql
PREVENT YOUR SERVER FROM CRASHING!
Never again lose customers to poor server speed! Let us help you.
Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.
GET STARTED
In this Postgresql tutorial, we will learn about “Postgresql listen_addresses” how to connect to Postgresql from any IP address using different environments and we will do a lot’s example.
- Postgresql listen_addresses example
- Postgresql listen_addresses multiple
- Postgresql listen_addresses pg_hba.conf
- Postgresql listen_addresses cidr
- Postgresql listen_addresses address all
Before beginning, we need to know the “What is listen_address?.” listen_addresses is found in the section of the postgresql.conf file. It enables the database server to listen for incoming connections on the specified IP addresses.
The following is the line from the postgresql.conf file.
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost';use'*' for all
# (change requires restart)
After modifying the listen_addresses command in postgresql.conf, restart the PostgreSQL server.
In Postgresql, listen_addresses control the IPs/addresses that belong to a different client application.
Let’s understand with an example, For that, we are going to use Postgresql installed on two different operating systems.
We are going to connect from the Ubuntu machine to the Postgresql server running on windows, so we need to perform two steps on the machine where the Postgresql database running.
Read PostgreSQL Like With Examples
Adding Client Authentication record in pg_hba.conf file.
Open pg_hba.conf file on windows (C:\Program Files\PostgreSQL\13\data) using the notepad, add the following line according to your IP addresses and save the file.
# "local" is for Unix domain socket connections only
host all all 0.0.0.0/0 trust
Setting the Listen Address in postgresql.conf
Now go to location on your windows (C:\Program Files\PostgreSQL\13\data) open postgresql.conf file, by default the listen-address will be localhost.
if it is asterisk *, then we don’t need to change anything.
Let’s go to the ubuntu machine or another machine and test the remote connection using the below command.
psql -U postgres -h 192.168.20.129
Now you have successfully logged in Postgres database remotely.
Read: How to create a table in PostgreSQL
Postgresql listen_addresses multiple and list
We can connect to the Postgresql database server from multiple clients or multiple IP addresses.
We are going to need three machines, one for the Postgresql server and the other two for making connections with the Postgresql database server.
So Postgresql server is installed on Ubuntu machine and we will connect with the Postgresql database server from Debian and Window machines.
First, find the file pg_hba.conf from the Ubuntu machine where the Postgresql server is installed.
Open the file from your terminal using the below command.
sudo nano /etc/postgresql/12/main/pg_hba.conf
And add the following connection record for the client authentication.
host all all 0.0.0.0/0 trust
Second, find the postgresql.conf file on the same machine.
Open the file from your terminal using the below command.
sudo nano /etc/postgresql/12/main/postgresql.conf
Add the IP addresses of Debian and the Windows machines or if we want to connect with many clients, then enter all IP addresses here with comma-separated values.
As we can see in the above picture, we have provided three IP addresses localhost, 92.168.81.135 where Windows is running, and 192.168.264.1 where Debian is running.
Save the file and restart the Postgresql database server using the below command on the Ubuntu machine.
systemctl restart postgresql
Go to the Windows machine and open cmd, and type the below command to connect the database running on the Ubuntu machine.
psql -U postgres -h 92.168.81.135
Now go to the Debian machine open your terminal and type the below command.
psql -U postgres -h 912.168.253.1
As we can see in the above output, we have successfully connected to the Postgresql database server using the machines Windows and Debian.
Read: How to connect to PostgreSQL database
Postgresql listen_addresses pg_hba.conf
In Postgresql, the pg_hba.conf file is a configuration file that helps in controlling the client authentication.
pg_hba.conf and is stored in the database cluster’s data directory where HBA stands for host-based authentication.
When the data directory is initialized by initdb, at that time pg_hba conf file is installed.
pg_hba file contains a set of records, each record consists of fields that are separated by spaces and/ or tabs.
Each record represents a connection type, a client IP address range (if relevant for the connection type), a database name, a user name, and the authentication method to be used for connections matching these parameters.
The first record with a matching connection type, client address, requested database, and user name is used to perform authentication.
A record in pg_hba.conf file can be in any of the following formats.
local database user auth-method
host database user address auth-method
hostssl database user address auth-method
hostnossl database user address auth-method
host database user IP-address IP-mask auth-method
hostssl database user IP-address IP-mask auth-method
hostnossl database user IP-address IP-mask auth-method
The meaning of the above fields is as follows:
- local
This record matches connection attempts using Unix-domain sockets. Without this kind of record, Unix-domain socket connections are not permitted. - host
This record matches connection attempts made using TCP/IP. The host records are going to match with SSL or non-SSL connection attempts. - hostssl
It is the same as the host, but it will connect when the connection is SSL encryption. For this option, you must have a server with SSL encryption. - hostnossl
It is the opposite of the hostssl record and only matches a connection that does not use SSL encryption. - database
Specifies which database name(s) this record matches. The value all specifies that it is going to match all databases. - user
Specifies which database user name(s) this record matches. The value all specifies that it is going to match all users. - address
Specifies the client machine address(es) that the record is going to match with this.
Read: How to Restart PostgreSQL
Postgresql listen_addresses cidr
In Postgresql, we will use CIDR notation 192.168.253.0 / 24, where we want to connect to the PostgreSQL database, which is hosted on IP addresses something 192.168.1.105 from a client machine with IP Address 192.168.1.128
Open pg_hba.conf file in any text editor.
sudo nano pg_hba.conf
Client authentication allows/restricts entry follows the below format.
[TYPE] [DATABASE] [USER] [ADDRESS] [METHOD]
Find a line that resembles.
host all all 127.0.0.1/32 md5
and add the following line after the above entry.
host all all 192.168.1.0/24 trust
The above-added line denotes that client authentication is allowed from the host which has an IP address between the range 192.168.1.1 and 192.168.1.254 to any/all database on the PostgreSQL database server and can be any database that exists user using trust authentication mode.
Note: you need to restart the PostgreSQL database server to allow these changes to get effective.
sudo service postgresql start
After restart, your database will allow connection from remote client machines.
Read: PostgreSQL WHERE IN with examples
Postgresql listen_addresses address all
In Postgresql, we connect to the Postgresql database server from anywhere or using any IP address.
There is a special value that we provide to listen_addresses is called asterisk ( * ), if we specify this value, it means the Postgresql server can accept all the incoming connections from different IP addresses.
For Windows go to the folder C:\Program Files\PostgreSQL\13\data and open file postgresql.conf using any editor.
And for Linux go to the folder /etc/postgresql/13/main and open file postgresql.conf using any editor.
In the above output, if the listen_addresses is set to localhost then change it to asterisk ‘*”.
‘*’: Asterisk represents all IP addresses.
After making changes, restart the postgresql database to take effect.
Now we can connect it from any application, client, and IP address.
You may also like to read the following PostgreSQL tutorials.
- PostgreSQL CASE with Examples
- PostgreSQL WHERE with examples
- PostgreSQL DROP TABLE
- Postgresql date comparison
- Postgresql create database
- Postgresql date to string
- Postgresql group_concat
- PostgreSQL INSERT Multiple Rows
- How to migrate from MySQL to Postgres
So in this tutorial, we have learned about “Postgresql listen_addresses” which helps in connecting the Postgresql database server remotely. We have covered the following topics.
- Postgresql listen_addresses example
- Postgresql listen_addresses multiple
- Postgresql listen_addresses pg_hba.conf
- Postgresql listen_addresses cidr
- Postgresql listen_addresses address all
I am Bijay having more than 15 years of experience in the Software Industry. During this time, I have worked on MariaDB and used it in a lot of projects. Most of our readers are from the United States, Canada, United Kingdom, Australia, New Zealand, etc.
Want to learn MariaDB? Check out all the articles and tutorials that I wrote on MariaDB. Also, I am a Microsoft MVP.
🔍 Простой поиск по базе знаний
В PostgreSQL клиентский доступ к базам данных на уровне хоста задается в файле pg_hba.conf (hba означает host-based authentication — аутентификацию на основе хоста.). Файл находится в хранится в директории кластера баз данных. Записи этого файла определяют: какиe узлы могут подключиться, метод аутентификации клиентов, какие имена пользователей PostgreSQL они могут использовать, к каким базам данных кластера они могут получить доступ. Записи могут быть следующих форм:
local DATABASE USER METHOD [OPTIONS] host DATABASE USER ADDRESS METHOD [OPTIONS] hostssl DATABASE USER ADDRESS METHOD [OPTIONS] hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
Поля заглавными буквами должны быть заменены актуальными значениями.
Значения полей:
- local — запись будет соответствовать локальным подключениям, производимым через Unix-domain socket. Если записи такого типа нет, то подключения через Unix-domain socket будут запрещены.
- host — запись соответсвует подключениям через TCP/IP. Запись host соответствует как SSL так и обычным подключениям. Здесь нужно обратить внимание на значение параметра listen_addresses — по умолчанию такие соединения будут ожидаться только с localhost. Для того чтобы подключения были возможны с других, удаленных хостов необходимо прописать соотвествующие адреса.
- hostssl — запись соответствует только SSL подключениям через TCP/IP.
- hostnossl — запись соответствует только не SSL (обычным) подключениям через TCP/IP.
- DATABASE — определяет имена баз данных, доступ к которым описывает данная запись. Значениями могут быть:
- собственно имя или имена баз данных кластера PostgreSQL, разделенные запятой;
- @filename — имена баз данных хранятся во внешнем файле filename;
- all — все базы данных кластера PostgreSQL;
- sameuser — база данных с тем-же именем, что и пользователь в поле USER;
- samerole — база данных с тем-же именем, что и роль пользователя в поле USER;
- replication — определяет, что запись будет соответствовать случаю подключения для репликации.
- USER — имя или имена пользователей PostgreSQL, правила доступа для которых определяет данная запись. Значениями могут быть:
- собственно имя или имена пользователей PostgreSQL, разделенные запятой;
- all — все пользователи PostgreSQL;
- @filename — имена пользователей хранятся во внешнем файле filename;
- +группа — все пользователи, входящие в указанную группу/группы.
- ADDRESS — Определяет адреса машины клиента, которым соответствует эта запись. Значениями могут быть:
- all — любой адрес;
- samehost — адрес самого сервера PostgreSQL;
- samenetto — все адреса подсети в которой находится сервер;
- имя или имена хостов, разделенные запятыми;
- .hostname — суффикс имени хоста: .myhost.com — допустимы one.myhost.com, two.myhost.com и т.д. Но не myhost.com!!!
- IP адрес или диапазон IP адресов в нотации CIDR (например 192.168.0.1/24).
- METHOD — Определяет метод аутентификации, который будет использован. Возможные значения:
- trust — Безусловно разрешает все подключения. Этот метод разрешает любому, кто может подключиться к серверу БД, зайти под любым пользователем PostgreSQL без необходимости предоставить пароль или использования какого-либо ещё способа аутентификации.
- reject — Безусловно отклоняет подключение. Это полезно для «отфильтровывания» некоторых узлов из группы, например строка reject может запретить конкретному узлу подключение, тогда как следующая строка разрешает подключения для остальных узлов этой сети.
- md5 — Требует от клиента предоставить md5 шифрованный пароль для аутентификации.
- password — Требует от клиента предоставить незашифрованный пароль для аутентификации. Так как пароль посылается по сети в открытом виде, эта опция не должна использоваться для небезопасных сетей.
- gss — Использует GSSAPI для аутентификации пользователя. Доступно только для TCP/IP подключений.
- sspi — Использует SSPI для аутентификации пользователя. Доступно только для Windows.
- krb5 — Использует Kreberos V5 для аутентификации пользователя. Доступно только для TCP/IP подключений.
- ident — Получает имя пользователя ОС клиента, соединяясь с сервером ident на клиенте и проверяет, соответствует ли оно имени пользователя для запрашиваемой БД. Аутентификация ident может использоваться только на TCP/IP соединениях. Когда это значение используется для локальных соединений, то вместо этого используется peer аутентификация.
- peer — Получает имя пользователя ОС из самой ОС и проверяет, соответствует ли оно имени пользователя для запрашиваемой БД. Доступно только для локальных подключений.
- ldap — Аутентификация при помощи сервера LDAP.
- radius — Аутентификация при помощи сервера RADIUS.
- cert — Аутентификация при помощи SSL сертификата клиента.
- pam — Аутентификация при помощи Pluggable Authentication Modules (PAM), предоставляемыми ОC.
Файл pg_hba.conf поставляемый по-умолчанию выглядит примерно так:
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only local all all trust # IPv4 local connections: #host all all 127.0.0.1/32 trust host all all 0.0.0.0/0 trust # IPv6 local connections: host all all ::1/128 trust # Allow replication connections from localhost, by a user with the # replication privilege. #local replication postgres trust #host replication postgres 127.0.0.1/32 trust #host replication postgres ::1/128 trust
📑 Похожие статьи на сайте
Аутентификация клиента управляется файлом конфигурации, который традиционно называется pg_hba.conf
и хранится в каталоге данных кластера базы данных. (HBA расшифровывается как host-based authentication.). Файл pg_hba.conf
по умолчанию устанавливается, когда каталог данных инициализируется с помощью initdb . Однако файл конфигурации аутентификации можно поместить в другое место; см. параметр конфигурации hba_file .
Общий формат файла pg_hba.conf
представляет собой набор записей, по одной в строке. Пустые строки игнорируются, как и любой текст после символа комментария #
. Запись можно продолжить на следующей строке, завершив строку обратной косой чертой. (Backslashes не являются специальными, кроме как в конце line.) Запись состоит из ряда полей, разделенных пробелами and/or вкладки. Поля могут содержать пробелы, если значение поля заключено в двойные кавычки. Цитирование одного из ключевых слов в базе данных, пользователе или поле адреса ((e.g., all
или replication
) приводит к тому, что слово теряет свое особое значение и просто соответствует базе данных, пользователю или хосту с этим именем. Продолжение строки обратной косой черты применяется даже в цитируемом тексте или комментариях.
Каждая запись указывает тип соединения, диапазон клиентских IP-адресов (если применимо для соединения type),, имя базы данных, имя пользователя и метод аутентификации, который будет использоваться для соединений, соответствующих этим параметрам. Для выполнения аутентификации используется первая запись с совпадающим типом соединения, адресом клиента, запрошенной базой данных и именем пользователя. Не существует «сквозной» или «резервной копии»: если одна запись выбрана и аутентификация не удалась, последующие записи не учитываются. Если ни одна запись не соответствует, доступ запрещен.
Запись может иметь несколько форматов:
local database user auth-method [auth-options] host database user address auth-method [auth-options] hostssl database user address auth-method [auth-options] hostnossl database user address auth-method [auth-options] hostgssenc database user address auth-method [auth-options] hostnogssenc database user address auth-method [auth-options] host database user IP-address IP-mask auth-method [auth-options] hostssl database user IP-address IP-mask auth-method [auth-options] hostnossl database user IP-address IP-mask auth-method [auth-options] hostgssenc database user IP-address IP-mask auth-method [auth-options] hostnogssenc database user IP-address IP-mask auth-method [auth-options]
Смысл полей следующий:
local
-
Эта запись соответствует попыткам подключения с использованием сокетов домена Unix. Без записи этого типа соединения сокетов домена Unix запрещены.
host
-
Эта запись соответствует попыткам подключения, выполненным с использованием TCP/IP.. Записи
host
соответствуют попыткам подключения SSL или не SSL, а также попыткам подключения с шифрованием GSSAPI или без шифрования GSSAPI.Note
Удаленные соединения TCP/IP будут невозможны, если сервер не будет запущен с соответствующим значением параметра конфигурации listen_addresses , поскольку поведение по умолчанию заключается в прослушивании соединений TCP/IP только на локальном адресе замыкания на себя
localhost
. hostssl
-
Эта запись соответствует попыткам подключения, сделанным с использованием TCP/IP,, но только когда подключение выполняется с шифрованием SSL.
Чтобы использовать эту опцию, сервер должен быть построен с поддержкой SSL. Кроме того, SSL должен быть включен путем установки параметра конфигурации ssl (дополнительные сведения о information). см. в Section 19.9 ). В противном случае запись
hostssl
игнорируется, за исключением регистрации предупреждения о том, что она не может соответствовать никаким соединениям. hostnossl
-
Этот тип записи ведет себя противоположно
hostssl
; он соответствует только попыткам подключения через TCP/IP, которые не используют SSL.. hostgssenc
-
Эта запись соответствует попыткам подключения, выполненным с использованием TCP/IP,, но только в том случае, если подключение выполняется с шифрованием GSSAPI.
Чтобы использовать эту опцию, сервер должен быть построен с поддержкой GSSAPI. В противном случае запись
hostgssenc
игнорируется, за исключением регистрации предупреждения о том, что она не может соответствовать никаким соединениям. hostnogssenc
-
Этот тип записи ведет себя противоположно
hostgssenc
; он соответствует только попыткам подключения через TCP/IP, которые не используют шифрование GSSAPI. database
-
Указывает, какой базе данных name(s) соответствует эта запись. Значение
all
указывает, что оно соответствует всем базам данных. Значениеsameuser
указывает, что запись соответствует, если запрошенная база данных имеет то же имя, что и запрошенный пользователь. Значениеsamerole
указывает, что запрошенный пользователь должен быть членом роли с тем же именем, что и запрошенная база данных. (samegroup
является устаревшим, но все еще принятым вариантом написанияsamerole
.) Суперпользователи не считаются членами роли для целейsamerole
, если они не являются явными членами роли, прямо или косвенно, а не только в силу того, что они являются суперпользователями. Значениеreplication
указывает, что запись соответствует, если запрошено физическое подключение репликации, однако она не соответствует логическим подключениям репликации. Обратите внимание, что физические соединения репликации не указывают какую-либо конкретную базу данных, в то время как логические соединения репликации указывают ее. В противном случае это имя конкретной базы данных PostgreSQL. Можно указать несколько имен баз данных, разделив их запятыми. Отдельный файл, содержащий имена баз данных, можно указать, указав перед именем файла@
. user
-
Указывает, какому пользователю базы данных name(s) соответствует эта запись. Значение
all
указывает, что оно соответствует всем пользователям. В противном случае это либо имя конкретного пользователя базы данных, либо имя группы, которому предшествует+
. (Recall, что нет реального различия между пользователями и группами в PostgreSQL;, метка+
на самом деле означает «соответствие любой из ролей, которые прямо или косвенно являются членами этой роли», в то время как имя без метки+
соответствует только этой конкретной role.) Для этой цели суперпользователь считается членом роли только в том случае, если он явно является членом роли, прямо или косвенно, а не только в силу того, что он является суперпользователем. Можно указать несколько имен пользователей, разделив их запятыми. Можно указать отдельный файл, содержащий имена пользователей, указав перед именем файла@
. address
-
Указывает клиентский компьютер address(es), которому соответствует эта запись. Это поле может содержать имя хоста, диапазон IP-адресов или одно из специальных ключевых слов, упомянутых ниже.
Диапазон IP-адресов указывается с использованием стандартной числовой записи для начального адреса диапазона, затем косой черты (
/
) и длины маски CIDR. Длина маски указывает количество старших битов IP-адреса клиента, которые должны совпадать. Биты справа от этого должны быть нулевыми в данном IP-адресе. Между IP-адресом,/
и длиной маски CIDR не должно быть пробелов.Типичными примерами диапазона адресов IPv4, указанного таким образом, являются
172.20.143.89/32
для одного хоста, или172.20.143.0/24
для небольшой сети, или10.6.0.0/16
для более крупной сети. Диапазон адресов IPv6 может выглядеть как::1/128
для одного хоста (в данном случае петлевой адрес IPv6) илиfe80::7a31:c1ff:0000:0000/96
для небольшой сети.0.0.0.0/0
представляет все адреса IPv4, а::0/0
представляет все адреса IPv6. Чтобы указать один хост, используйте длину маски 32 для IPv4 или 128 для IPv6. В сетевом адресе не опускайте нули в конце.Запись в формате IPv4 будет соответствовать только соединениям IPv4, а запись в формате IPv6 будет соответствовать только соединениям IPv6, даже если представленный адрес находится в диапазоне IPv4-in-IPv6. Обратите внимание, что записи в формате IPv6 будут отклонены, если C library системы не поддерживает адреса IPv6.
Вы также можете написать
all
для соответствия любому IP-адресу,samehost
для соответствия любому из собственных IP-адресов сервера илиsamenet
для соответствия любому адресу в любой подсети, к которой сервер напрямую подключен.Если указано имя хоста (все, что не является диапазоном IP-адресов или специальным ключевым словом, рассматривается как хост name),, это имя сравнивается с результатом обратного разрешения имени IP-адреса клиента (e.g., обратного поиска DNS, если DNS — used)., сравнение имен хостов нечувствительно к регистру. name, чтобы проверить, равен ли какой-либо из адресов, которые он разрешает, IP-адресу клиента. Если оба направления совпадают, то запись считается соответствующей. Имя хоста (The, используемое в
pg_hba.conf
, должно быть тем, которое возвращает преобразование адреса в имя IP-адреса клиента, иначе строка не будет сопоставлена. Некоторые базы данных имен хостов позволяют связать IP-адрес с несколькими именами хостов.Спецификация имени хоста, начинающаяся с точки (
.
), соответствует суффиксу фактического имени хоста. Таким образом,.example.com
будет соответствоватьfoo.example.com
(но не толькоexample.com
).Когда имена хостов указаны в
pg_hba.conf
, вы должны убедиться, что разрешение имен выполняется достаточно быстро. Может оказаться полезным настроить локальный кэш разрешения имен, напримерnscd
. Кроме того, вы можете включить параметр конфигурацииlog_hostname
, чтобы в журнале отображалось имя хоста клиента вместо IP-адреса.Эти поля не применяются к записям
local
.Note
Пользователи иногда задаются вопросом, почему имена хостов обрабатываются таким, казалось бы, сложным способом, с двумя разрешениями имен, включая обратный поиск IP-адреса клиента. Это усложняет использование функции, если обратная запись DNS клиента не настроена или дает нежелательное имя хоста. Это делается в первую очередь для повышения эффективности: таким образом, попытка подключения требует не более двух обращений к распознавателю, одного обратного и одного прямого. Если с каким-то адресом возникает проблема резолвера, она становится проблемой только этого клиента. Гипотетическая альтернативная реализация, которая выполняла бы только прямой поиск, должна была бы разрешать каждое имя хоста, упомянутое в
pg_hba.conf
, при каждой попытке подключения. Это может быть довольно медленным, если в списке много имен. И если возникает проблема с распознавателем одного из имен хостов, это становится проблемой для всех.Кроме того, для реализации функции сопоставления суффиксов необходим обратный поиск, поскольку для сопоставления с шаблоном необходимо знать фактическое имя хоста клиента.
Обратите внимание, что такое поведение согласуется с другими популярными реализациями управления доступом на основе имени хоста, такими как Apache HTTP Server и TCP Wrappers.
-
IP-address
IP-mask
-
Эти два поля можно использовать в качестве альтернативы нотации
IP-address
/
mask-length
. Вместо указания длины маски фактическая маска указывается в отдельном столбце. Например,255.0.0.0
соответствует длине маски IPv4 CIDR, равной 8, а255.255.255.255
соответствует длине маски CIDR, равной 32.Эти поля не применяются к записям
local
. auth-method
-
Указывает метод проверки подлинности, который следует использовать, когда соединение соответствует этой записи. Возможные варианты суммированы здесь; подробности в К1482К. Все параметры вводятся в нижнем регистре и обрабатываются с учетом регистра, поэтому даже аббревиатуры, такие как
ldap
, должны указываться в нижнем регистре.trust
-
Разрешить подключение безоговорочно. Этот метод позволяет любому, кто может подключиться к серверу базы данных PostgreSQL, войти в систему как любой пользователь PostgreSQL по своему желанию, без необходимости ввода пароля или какой-либо другой аутентификации. Подробности см. в Section 21.4 .
reject
-
Безоговорочно отклонить соединение. Это полезно для «отфильтровывания» определенных хостов из группы, например, линия
reject
может блокировать подключение определенного хоста, в то время как более поздняя линия разрешает подключение оставшимся хостам в определенной сети. scram-sha-256
-
Выполните аутентификацию SCRAM-SHA-256, чтобы проверить пароль пользователя. Для получения подробной информации см. Section 21.5 .
md5
-
Выполните аутентификацию SCRAM-SHA-256 или MD5, чтобы проверить пароль пользователя. Подробности см. в Section 21.5 .
password
-
Требовать от клиента предоставления незашифрованного пароля для аутентификации. Поскольку пароль передается по сети в виде открытого текста, его не следует использовать в ненадежных сетях. Подробности см. в Section 21.5 .
gss
-
Используйте GSSAPI для аутентификации пользователя. Это доступно только для соединений TCP/IP. Подробности см. в Section 21.6 . Его можно использовать в сочетании с шифрованием GSSAPI.
sspi
-
Используйте SSPI для аутентификации пользователя. Это доступно только в Windows. Для получения подробной информации см. Section 21.7 .
ident
-
Получите имя пользователя операционной системы клиента, связавшись с сервером ident на клиенте и проверив, соответствует ли оно запрошенному имени пользователя базы данных. Идентификационная аутентификация может использоваться только для соединений TCP/IP. Если указано для локальных подключений, вместо этого будет использоваться одноранговая аутентификация. Подробности см. в Section 21.8 .
peer
-
Получите имя пользователя операционной системы клиента из операционной системы и проверьте, совпадает ли оно с запрошенным именем пользователя базы данных. Это доступно только для локальных подключений. Подробности см. в Section 21.9 .
ldap
-
Аутентифицируйтесь с помощью сервера LDAP. Подробности см. в Section 21.10 .
radius
-
Аутентифицируйтесь с помощью сервера RADIUS. Для получения подробной информации см. Section 21.11 .
cert
-
Аутентификация с использованием клиентских сертификатов SSL. Подробности см. в Section 21.12 .
pam
-
Выполните аутентификацию с помощью службы Pluggable Authentication Modules (PAM), предоставляемой операционной системой. Подробности см. в Section 21.13 .
bsd
-
Выполните аутентификацию с помощью службы аутентификации BSD, предоставляемой операционной системой. Подробности см. в Section 21.14 .
auth-options
-
После поля
auth-method
может быть field(s) formname
=
value
, в котором указываются параметры метода аутентификации. Подробная информация о том, какие параметры доступны для тех или иных методов аутентификации, представлена ниже.В дополнение к перечисленным ниже параметрам для конкретных методов существует параметр
clientcert
для проверки подлинности, не зависящий от метода, который можно указать в любой записиhostssl
. Для этого параметра можно установить значениеverify-ca
илиverify-full
. Оба варианта требуют, чтобы клиент представил действительный (доверенный) сертификат SSL, в то время какverify-full
дополнительно требует, чтобы имяcn
((Common) в сертификате соответствовало имени пользователя или применимому сопоставлению. Это поведение аналогично методу проверки подлинностиcert
(см. Section 21.12 ), но позволяет сочетать проверку сертификатов клиента с любым методом проверки подлинности, который поддерживает записиhostssl
.В любой записи, использующей проверку подлинности сертификата клиента (i.e., в записи, использующей метод проверки подлинности
cert
, или в записи, использующейclientcert
option),, вы можете указать, какая часть учетных данных сертификата клиента должна соответствовать с помощью параметраclientname
. Эта опция может иметь одно из двух значений. Если вы укажетеclientname=CN
, что является значением по умолчанию, имя пользователя сопоставляется сCommon Name (CN)
сертификата. Если вместо этого вы укажетеclientname=DN
, имя пользователя сопоставляется со всемDistinguished Name (DN)
сертификата. Эту опцию, вероятно, лучше всего использовать в сочетании с картой имени пользователя. Сравнение сделано сDN
в формате RFC 2253 . Чтобы увидетьDN
сертификата клиента в этом формате, выполнитеopenssl x509 -in myclient.crt -noout --subject -nameopt RFC2253 | sed "s/^subject=//"
Следует соблюдать осторожность при использовании этой опции, особенно при сопоставлении регулярных выражений с
DN
.
Файлы, включенные конструкциями @
, читаются как списки имен, которые могут быть разделены пробелами или запятыми. Комментарии вводятся #
, как и в pg_hba.conf
, и разрешены вложенные конструкции @
. Если имя файла, следующее за @
, не является абсолютным путем, оно считается относительным к каталогу, содержащему ссылающийся файл.
Поскольку записи pg_hba.conf
проверяются последовательно при каждой попытке подключения, порядок записей имеет значение. Как правило, более ранние записи будут иметь параметры жесткого соответствия соединения и более слабые методы аутентификации, в то время как более поздние записи будут иметь более слабые параметры соответствия и более надежные методы аутентификации. Например, можно использовать аутентификацию trust
для локальных подключений TCP/IP, но требовать пароль для удаленных подключений TCP/IP. В этом случае запись, указывающая аутентификацию trust
для подключений от 127.0.0.1, появится перед записью, указывающей аутентификацию по паролю для более широкого диапазона разрешенных клиентских IP-адресов.
Файл pg_hba.conf
считывается при запуске и когда основной серверный процесс получает сигнал SIGHUP. Если вы редактируете файл в активной системе, вам нужно будет сигнализировать администратору почты (используя pg_ctl reload
, вызывая функцию SQL pg_reload_conf()
или используя kill -HUP
), чтобы он перечитал файл.
Note
Предыдущий оператор не является true в Microsoft Windows: там любые изменения в файле
pg_hba.conf
немедленно применяются последующими новыми подключениями.
Системное представление pg_hba_file_rules
может быть полезно для предварительного тестирования изменений в файле pg_hba.conf
или для диагностики проблем, если загрузка файла не привела к желаемому результату. Строки в представлении с полями, отличными от null error
, указывают на проблемы в соответствующих строках файла.
Tip
Чтобы подключиться к конкретной базе данных, пользователь должен не только пройти проверки
pg_hba.conf
, но и иметь привилегиюCONNECT
для этой базы данных. Если вы хотите ограничить, какие пользователи могут подключаться к каким базам данных, обычно проще управлять этим с помощью привилегии granting/revokingCONNECT
, чем помещать правила в записиpg_hba.conf
.
Некоторые примеры записей pg_hba.conf
показаны в Example 21.1 . Подробнее о различных методах аутентификации см. в следующем разделе.
Пример 21.1. Пример pg_hba.conf
Записи
local all all trust host all all 127.0.0.1/32 trust host all all 127.0.0.1 255.255.255.255 trust host all all ::1/128 trust host all all localhost trust host postgres all 192.168.93.0/24 ident host postgres all 192.168.12.10/32 scram-sha-256 host all mike .example.com md5 host all all .example.com scram-sha-256 host all all 192.168.54.1/32 reject hostgssenc all all 0.0.0.0/0 gss host all all 192.168.12.10/32 gss host all all 192.168.0.0/16 ident map=omicron local sameuser all md5 local all @admins md5 local all +support md5 local all @admins,+support md5 local db1,db2,@demodbs all md5
© 1996–2023 The PostgreSQL Global Development Group
Licensed under the PostgreSQL License.
https://www.postgresql.org/docs/15/auth-pg-hba-conf.html