File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments