fix: adjust SUPERUSER

This commit is contained in:
dancingCycle 2024-03-11 15:43:27 +01:00
parent 3c091c3287
commit 8267f05616
2 changed files with 2 additions and 1 deletions

View File

@ -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
```

View File

@ -7,7 +7,7 @@ CREATE USER <user name> with encrypted password 'key';
* create a `SUPERUSER` user called `user name` with password `key`
```
CREATE USER SUPERUSER <user name> with encrypted password 'key';
CREATE USER <user name> with SUPERUSER encrypted password 'key';
```
* OPTION: gant user `user name` access to database `database name`