fix psql typo
This commit is contained in:
parent
7ad75cb1a4
commit
24cbbc0cd5
1 changed files with 4 additions and 2 deletions
|
|
@ -11,11 +11,13 @@ Install Postgres and setup a database for LNbits:
|
||||||
# or follow instructions at https://www.postgresql.org/download/linux/
|
# or follow instructions at https://www.postgresql.org/download/linux/
|
||||||
|
|
||||||
# Postgres doesn't have a default password, so we'll create one.
|
# Postgres doesn't have a default password, so we'll create one.
|
||||||
sudo -i -u postgres psql
|
sudo -i -u postgres
|
||||||
|
psql
|
||||||
# on psql
|
# on psql
|
||||||
ALTER USER postgres PASSWORD 'myPassword'; # choose whatever password you want
|
ALTER USER postgres PASSWORD 'myPassword'; # choose whatever password you want
|
||||||
createdb lnbits
|
|
||||||
\q
|
\q
|
||||||
|
# on postgres user
|
||||||
|
createdb lnbits
|
||||||
exit
|
exit
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue