Install PostgreSQL on Ubuntu 20.04

Anjianto / August 30, 2021
PostgreSQL is a powerful, 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. Source https://www.postgresql.org/
Install
Run commands :
sudo su
apt update
apt install -y postgresql postgresql-contrib
Access Database PostgreSQL
run commands :
sudo -i -u postgres
psql
for exit from PostgreSQL console, run :
q
Create New User
Make sure you not in PostgreSQL console and run :
sudo -i -u postgres
createuser your_username
Add Role to User
You can add roles to your user with commands :
sudo -i -u postgres # or user that has role/permission for adding new roles
psql
ALTER ROLE nama_user WITH role_you_want_to_add;
Available roles :
- BYPASSRLS
- CREATEROLE
- LOGIN
- NOCREATEROLE
- NOREPLICATION
- RENAME TO
- SET
- CONNECTION LIMIT
- ENCRYPTED PASSWORD
- NOBYPASSRLS
- NOINHERIT
- NOSUPERUSER
- REPLICATION
- SUPERUSER
- CREATEDB
- INHERIT
- NOCREATEDB
- NOLOGIN
- PASSWORD
- RESET
- VALID UNTIL