Skip to content

Commit a544c51

Browse files
authored
Merge pull request #575 from kbrock/postgres_config
Add postgres configuration to developer docs
2 parents 79fe760 + 4590e4f commit a544c51

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

developer_setup.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,19 @@ ManageIQ requires a memcached instance for session caching and a PostgreSQL data
9696

9797
* macOS
9898

99-
`brew` will configure the cluster automatically, but you will need to create the user.
99+
`brew` will configure the cluster automatically, but you need to make a few tweaks
100+
including granting access to the root user.
101+
102+
```conf
103+
# ${HOMEBREW_PREFIX}/var/postgresql@13/postgresql.conf
104+
# right after authentication_timeout = 1min
105+
# More secure and closer to production. (standard on pg 14+)
106+
password_encryption = scram-sha-256
107+
# needed for multi-region replication
108+
wal_level = logical
109+
# parallel testing requires more locks per transactions
110+
max_locks_per_transaction = 128
111+
```
100112

101113
```bash
102114
brew services start postgresql@13

0 commit comments

Comments
 (0)