From 3ed40b4a459b8cbe7ea365ef933ad77bad979ec6 Mon Sep 17 00:00:00 2001 From: noah Date: Tue, 26 Apr 2022 19:37:42 -0500 Subject: [PATCH] Updating README.md --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 62794c7..b40c909 100755 --- a/README.md +++ b/README.md @@ -25,15 +25,20 @@ An example use of this is: #### Add PSQL users and alter permissions Log in to the Postgres user - sudo su postgres -Then connect to the PSQL terminal - psql -Now create the user and adjust permissions - CREATE USER ag_gen; + sudo su postgres + +Then connect to the PSQL terminal + + psql + +Now create the user and adjust permissions + + CREATE USER ag_gen; ALTER USER ag_gen WITH SUPERUSER; ALTER USER ag_gen WITH login; ALTER USER ag_gen WITH ENCRYPTED PASSWORD '8PZQc79NUZ3FjqSB'; + Repeat, using root and your local user name in place of the ag gen user. Note, if you change the password, be sure to change the passwords in the config.ini files.