Postgres_DB - XLRIT/gears GitHub Wiki

THIS PAGE IS WORK IN PROGRES

Install on Ubuntu 20.*

sudo apt update
sudo apt install postgresql postgresql-contrib
sudo systemctl start postgresql.service

Check status: sudo systemctl status postgresql.service

See this tutorial for more info.

Connect to DB

sudo -u postgres psql # to open psql (the interactive command line interface to the DB)
\l # to list all DB's
\c <name of DB> # to connect to one DB
\d # to describe all in that DB
⚠️ **GitHub.com Fallback** ⚠️