From 8267f056167670082a2ba9c616cee688c6de628e Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Mon, 11 Mar 2024 15:43:27 +0100 Subject: [PATCH] fix: adjust SUPERUSER --- doc/postgres-connect-remote.md | 1 + doc/postgres-create-user.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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`