PostgreSQL install linux code example

Example 1: postgresql install ubuntu

sudo apt update
sudo apt install postgresql postgresql-contrib

sudo -u postgres createuser --interactive

sudo -u postgres createdb database1

Example 2: install postgresql ubuntu

sudo apt install postgresql postgresql-contrib

Example 3: how to run postgresql in linux

sudo service postgresql-9.3 start

Example 4: how to run postgresql in linux

sudo service postgresql-9.3 initdb

Example 5: linux psql

psql "dbname=dbhere host=hosthere user=userhere password=pwhere port=5432 sslmode=require"