From 24cbbc0cd5a9e196bf686acd3e0bbe4f599c1bf3 Mon Sep 17 00:00:00 2001 From: Tiago vasconcelos Date: Fri, 12 Nov 2021 11:44:44 +0000 Subject: [PATCH] fix psql typo --- docs/guide/installation.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index adebcdc83..22f6d2268 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -11,11 +11,13 @@ Install Postgres and setup a database for LNbits: # or follow instructions at https://www.postgresql.org/download/linux/ # Postgres doesn't have a default password, so we'll create one. -sudo -i -u postgres psql +sudo -i -u postgres +psql # on psql ALTER USER postgres PASSWORD 'myPassword'; # choose whatever password you want -createdb lnbits \q +# on postgres user +createdb lnbits exit ```