Files
vim-ale/postgres/README.md
2020-07-24 12:17:38 -06:00

926 B

title, homepage, tagline
title homepage tagline
Postgres https://www.postgresql.org/ PostgreSQL: The World's Most Advanced Open Source Relational Database.

Updating postgres

webi postgres@stable

Use @x.y.z for a specific version.

Cheat Sheet

Postgres is the all-in-one database for beginners and experts alike. It handles SQL, 'NoSQL', JSON, HSTORE, Full-Text Search, Messages Queues and more. Best bang for buck.

Initialize a database with a password

echo "postgres" > /tmp/pwfile
mkdir -p $HOME/.local/share/postgres/var/

initdb -D $HOME/.local/share/postgres/var/ \
    --username postgres --pwfile "/tmp/pwfile" \
    --auth-local=password --auth-host=password

rm /tmp/pwfile

Start the postgres server

postgres -D $HOME/.local/share/postgres/var -p 5432

Connect with the psql client

psql 'postgres://postgres:postgres@localhost:5432/postgres'