Postgresql is an open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance. It is a free and open-source relational database management system emphasizing extensibility and SQL compliance. It was originally named POSTGRES, referring to its origins as a successor to the Ingres database developed at the University of California, Berkeley.
PostgreSQL is used as the primary data store or data warehouse for many web, mobile, geospatial, and analytics applications. PostgreSQL can store structured and unstructured data in a single product.
In this guide we are going to install Postgresql 14 in Ubuntu 20.04.
Related content:
- How to Install and Configure Postgres 14 Ubuntu 22.04
- How to Install & Configure Postgres 14 on FreeBSD 13
- Postgres Permissions – Create, Update, Delete Database Users
- How to Install and Configure Postgres 14 on Debian 11
- How to Install and Configure Postgres 14 on Centos 8
- How to Install and Configure Postgres 13 on Centos 8
- Running Postgresql 14 with Docker and Docker-Compose
- How to Install and Configure Postgres 13 Ubuntu 20.04
- How to Install and Configure Postgres 14 on Fedora 34
- How to Install & Configure Postgres 14 on OpenSUSE Leap 15.3
Prerequisites
To follow along, ensure you have the following:
- Ubuntu 20.04 server
- Root access to the server or user with root access
- Internet access from the server
- Knowledge of Linux terminal
Table of content
- Ensure that your system packages are up to date
- Installing Postgres 14
- PostgreSQL Roles and Databases Authentication Methods
- Connecting to Postgres Database
- Configuring postgres instance for remote access
- User management
- Connecting to the instance from remote host
1. Ensure that your system packages are up to date
Let’s refresh your server’s local package index using this command:
sudo apt update
Then we upgrade the packages in our system with this:
sudo apt -y upgrade
2. Installing Postgres 14
Postgres is provided in the default Ubuntu repositories. To check the version provides, use this command:
sudo apt-cache search postgresql | grep postgresql
The default packages provided by the default repositories are postgres 12. If you are interested in Postgres 12 you can install with the following commands. The -contrib
 package that adds some additional utilities and functionality:
sudo apt install postgresql postgresql-contrib
Since we are looking to install Postgres 14, we will need to add an additional repository that provide the packages
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
Then import the repository signing key:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
Now let’s update the package lists:
sudo apt -y update
Then we install the specific version of postgres we want. Use postgresql-14
 instead of postgresql
:
sudo apt -y install postgresql-14
Once the installation is successful, Postgres 14 will be started.
Use this command to check the service status:
$ sudo systemctl status postgresql ● postgresql.service - PostgreSQL RDBMS Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor preset: enabled) Active: active (exited) since Thu 2021-10-14 09:32:22 UTC; 55s ago Main PID: 204727 (code=exited, status=0/SUCCESS) Tasks: 0 (limit: 4710) Memory: 0B CGroup: /system.slice/postgresql.service Oct 14 09:32:22 ip-172-26-11-229 systemd[1]: Starting PostgreSQL RDBMS... Oct 14 09:32:22 ip-172-26-11-229 systemd[1]: Finished PostgreSQL RDBMS.
Next, let’s erify the installation by connecting to the PostgreSQL database server and checking its version. Use this command:
sudo -u postgres psql -c "SELECT version();"
Output:
version ---------------------------------------------------------------------------------------------------------------------------------- PostgreSQL 14.0 (Ubuntu 14.0-1.pgdg20.04+1) on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, 64-bi (1 row)
3. PostgreSQL Roles and Databases Authentication Methods
PostgreSQL uses a concept called roles
to handle client authentication and authorization. By default, Postgres is set up to use ident authentication
, meaning that it associates Postgres roles with a matching Unix/Linux system account. If a role exists within Postgres, a Unix/Linux username with the same name is able to sign in as that role.
The installation procedure created a user account called postgres that is associated with the default postgres role. In order to use PostgreSQL, you can log in to that account.
PostgreSQL supports multiple authentication methods . The most commonly-used methods are:
Trust
– A role can connect without a password, as long as the conditions defined in thepg_hba.conf
are met.Password
– A role can connect by providing a password. The passwords can be stored asscram-sha-256
,md5
, andpassword
(clear-text
).Ident
– Only supported on TCP/IP connections. It works by obtaining the client’s operating system user name, with an optional user name mapping.Peer
– Same as Ident, but it is supported on local connections only.
4. Connecting to postgres database
- By Switching to
postres
user
Switch over to the postgres account on your server by typing:
sudo -i -u postgres
You can now access a Postgres prompt immediately by typing:
$ psql
psql (14.0 (Ubuntu 14.0-1.pgdg20.04+1))
Type "help" for help.
postgres=#
This will log you into the PostgreSQL prompt, and from here you are free to interact with the database management system right away.
- By running the command as postgres user
Use this to run the command directly as the postgres
user using sudo
$ sudo -u postgres psql
psql (14.0 (Ubuntu 14.0-1.pgdg20.04+1))
Type "help" for help.
postgres=#
5. Configuring postgres instance for remote access
By default postgres is only set up to be accessed locally. This is not ideal if we want to access our server from another host. In this section we are going to configure postgres to allow access from remote hosts.
Postgres 14 configuration file can be found in this path/etc/postgresql/14/main/pg_hba.conf
$ sudo file /etc/postgresql/14/main/pg_hba.conf
/etc/postgresql/14/main/pg_hba.conf: ReStructuredText file, ASCII text
Change peer identification to trust
Use this command to change the peer
to trust
sed -i '/^local/s/peer/trust/' /etc/postgresql/14/main/pg_hba.conf
This will update the line in the config file to this:
# "local" is for Unix domain socket connections only
local all all trust
Add a block to allow access from everywhere
Add this content to the file /etc/postgresql/14/main/pg_hba.conf
to allow all hosts password access:
vim /etc/postgresql/14/main/pg_hba.conf
Then add this:
host all all 0.0.0.0/0 md5
Ensure PostgreSQL is listening on *
Add this line to the config here /etc/postgresql/14/main/postgresql.conf
to allow postgres to listen on all hosts
listen_addresses='*'
To apply the configurations, we need to restart the postgres 14 service.
Enable and restart postgresql server to reload the configs:
sudo systemctl restart postgresql
sudo systemctl enable postgresql
6. User management
Create Super user:
It would be better if we created a super user to administer the postgres service. This is that one user that has permissions to manage other users and databases.
Connect to the DB as postres
role
$ sudo -u postgres psql
could not change directory to "/root": Permission denied
psql (14.0 (Ubuntu 14.0-1.pgdg20.04+1))
Type "help" for help.
postgres=#
Create super user with name root
using this command:
CREATE ROLE root WITH LOGIN SUPERUSER CREATEDB CREATEROLE PASSWORD 'passwordhere';
Check the user if its been created and granted necessary privileges:
postgres=# CREATE ROLE root WITH LOGIN SUPERUSER CREATEDB CREATEROLE PASSWORD 'passwordhere';
CREATE ROLE
postgres=# \du
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
root | Superuser, Create role, Create DB | {}
postgres=#
Managing application users
Use this to create a database, create a user and grant that user all accesss to that database:
create database app_db_name;
create user app_user with encrypted password 'dbpassword';
grant all privileges on database app_db_name to app_user;
Checkout this comprehensive guide on user and permission management in postgres here.
7. Connecting to the instance from remote host
Use this command to test that you can connect:
psql 'postgres://<username>:<password>@<host>:<port>/<db>?sslmode=disable'
# like
psql 'postgres://root:passwordhere@192.160.1.20:5432/postgres?sslmode=disable'
Conclusion
Up to this point we have managed to install Postgresql 14 on an Ubuntu server, do some basic configurations then do basic user management.