These Notes Will Serve As A Guide To Installing PostgreSQL
These Notes Will Serve As A Guide To Installing PostgreSQL
FOR
POSTGRESQL
INSTALLATION
&
CONFIGURATION
(Sourcecode)
Step -1
Go to postgressql.org/download/
Select source from the left corner.
Step -2
Select the required version
Step -4
Right click on the file select copy link address
Step -5
Connect the server, download the file using wget on the server
[root@localhost download] # wget https://ftp.postgresql.org/pub/source/v15.2/postgresql-
15.2.tar.gz
Step -7
Post untar postgresql-15.1 directory will appear
Step -9
run the below two command
[root@localhost postgresql-15.2]# make world
Step -10
Provide ownership and permission of data directory to postgres user
To create a postgres user
Step -11
Initialize database cluster & Start DB service
• Switch to postgres user by su – postgres
Step -12
Log in to PostgreSQL console
[postgres@localhost bin]$ /PostgreSQL_base/bin/bin/psql
Troubleshooting
Run the below command to resolve the readline library issue
[root@localhost postgresql-15.2]# yum install -y readline-devel
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,
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).
local
This record matches connection attempts using Unix-domain sockets. Without a record of
this type, Unix-domain socket connections are disallowed.
host
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 value sameuser specifies that the record matches if the
requested database has the same name as the requested user. The value samerole 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 of samerole.) Superusers are
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, or 172.20.143.0/24 for a small network, or 10.6.0.0/16 for a larger one. An
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, or samenet 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 match foo.example.com (but not just example.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
as nscd. Also, you may wish to enable the configuration parameter log_hostname to see
the client's host name instead of the IP address in the log.
IP-address
IP-mask
auth-method
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
md5
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
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
radius
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 form name=value that specify
options for the authentication method. Details about which options are available for
which authentication methods appear below.
On any record using client certificate authentication (i.e. one using the cert authentication
method or one using the clientcert option), you can specify which part of the client
certificate credentials to match using the clientname option. This option can have one of
two values. If you specify clientname=CN, which is the default, the username is matched
against the certificate's Common Name (CN). If instead you specify clientname=DN the
username is matched against the entire Distinguished Name (DN) of the certificate. This
option is probably best used in conjunction with a username map. The comparison is
done with the DN in RFC 2253 format. To see the DN of a client certificate in this
format, do
openssl 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
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
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.
# 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 using a host name (would typically cover both IPv4 and
IPv6).
#
# TYPE DATABASE USER ADDRESS METHOD
host all 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
# 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