diff --git a/doc/postgres-connect-remote.md b/doc/postgres-connect-remote.md index 7c3bc43..8e4177a 100644 --- a/doc/postgres-connect-remote.md +++ b/doc/postgres-connect-remote.md @@ -3,6 +3,7 @@ * configure ports and update firewall using the [firewall setup](firewall.md) ``` sudo ufw allow 5432 +//OPTION: sudo ufw allow 5432 sudo ufw enable sudo ufw status numbered ``` diff --git a/doc/postgres-create-user.md b/doc/postgres-create-user.md index 6b8a81b..2d01c90 100644 --- a/doc/postgres-create-user.md +++ b/doc/postgres-create-user.md @@ -7,7 +7,7 @@ CREATE USER with encrypted password 'key'; * create a `SUPERUSER` user called `user name` with password `key` ``` -CREATE USER SUPERUSER with encrypted password 'key'; +CREATE USER with SUPERUSER encrypted password 'key'; ``` * OPTION: gant user `user name` access to database `database name`