====== Postgres ====== ---- ===== Installation ===== # Linux sudo apt install postgresql postgresql-contrib # Mac brew install postgresql # Starting service brew services start postgresql ---- ===== Change Password ===== ALTER ROLE postgres WITH PASSWORD 'password'; ----