Postgres - 11 Instalation Via Source Code - txt-1
Postgres - 11 Instalation Via Source Code - txt-1
STEP1:Checking pre-requisites.
https://www.postgresql.org/ftp/source/v11.0/
postgresql-11.0.tar.gz
==>
Connecting to cluster:
To connecting the cluster by using "psql" utility
-bash-4.1$ psql
psql (8.4.20, server 11.0)
WARNING: psql version 8.4, server version 11.0.
Some psql features might not work.
Type "help" for help.
postgres=# \l
List of databases
Name | Owner | Encoding | Collation | Ctype | Access privileges
-----------+----------+----------+-------------+-------------
+-----------------------
postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
template0 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres
:
postgres=CTc/postgres
template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres
:
postgres=CTc/postgres
(3 rows)
==> By default, PostgreSQL listens on port 5432. You can check it with the
following command: