Skip to content

Commit 98b7331

Browse files
author
ManageIQ Bot
committed
1 parent c0dbdd0 commit 98b7331

File tree

3 files changed

+289
-278
lines changed

3 files changed

+289
-278
lines changed

docs/guides/developer_setup.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,18 @@ <h4 id="postgresql">PostgreSQL</h4>
727727
<li>
728728
<p>macOS</p>
729729

730-
<p><code class="language-plaintext highlighter-rouge">brew</code> will configure the cluster automatically, but you will need to create the user.</p>
730+
<p><code class="language-plaintext highlighter-rouge">brew</code> will configure the cluster automatically, but you need to make a few tweaks
731+
including granting access to the root user.</p>
732+
733+
<div class="language-conf highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># ${HOMEBREW_PREFIX}/var/postgresql@13/postgresql.conf
734+
# right after authentication_timeout = 1min
735+
# More secure and closer to production. (standard on pg 14+)
736+
</span><span class="n">password_encryption</span> = <span class="n">scram</span>-<span class="n">sha</span>-<span class="m">256</span>
737+
<span class="c"># needed for multi-region replication
738+
</span><span class="n">wal_level</span> = <span class="n">logical</span>
739+
<span class="c"># parallel testing requires more locks per transactions
740+
</span><span class="n">max_locks_per_transaction</span> = <span class="m">128</span>
741+
</code></pre></div> </div>
731742

732743
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>brew services start postgresql@13
733744
psql <span class="nt">-c</span> <span class="s2">"CREATE USER root SUPERUSER PASSWORD 'smartvm';"</span> <span class="nt">-U</span> <span class="nv">$USER</span> <span class="nt">-d</span> template1

feed.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<description></description>
66
<link>http://manageiq.org/</link>
77
<atom:link href="http://manageiq.org/feed.xml" rel="self" type="application/rss+xml"/>
8-
<pubDate>Thu, 13 Nov 2025 03:29:30 +0000</pubDate>
9-
<lastBuildDate>Thu, 13 Nov 2025 03:29:30 +0000</lastBuildDate>
8+
<pubDate>Thu, 13 Nov 2025 15:10:58 +0000</pubDate>
9+
<lastBuildDate>Thu, 13 Nov 2025 15:10:58 +0000</lastBuildDate>
1010
<generator>Jekyll v4.4.1</generator>
1111

1212
<item>

0 commit comments

Comments
 (0)