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.