Skip to content

Commit 1deee26

Browse files
author
ManageIQ Bot
committed
1 parent 22bb14b commit 1deee26

File tree

3 files changed

+351
-272
lines changed

3 files changed

+351
-272
lines changed

docs/get-started/vagrant.html

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,15 @@ <h3 id="step-2-modify-vagrantfile">Step 2: Modify Vagrantfile</h3>
308308
<span class="k">end</span>
309309
</code></pre></div></div>
310310

311+
<p>The appliance will also need one or two extra disks, one for the PostgreSQL
312+
database (required) and one for persisting the message queue (optional). Add
313+
these like so:</p>
314+
315+
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code> <span class="n">config</span><span class="p">.</span><span class="nf">vm</span><span class="p">.</span><span class="nf">disk</span> <span class="ss">:disk</span><span class="p">,</span> <span class="ss">name: </span><span class="s2">"miq-pg"</span><span class="p">,</span> <span class="ss">size: </span><span class="s2">"4GB"</span>
316+
<span class="c1"># Uncomment this for a persistent message queue:</span>
317+
<span class="c1"># config.vm.disk :disk, name: "miq-mq", size: "4GB"</span>
318+
</code></pre></div></div>
319+
311320
<h3 id="step-3-start-manageiq">Step 3: Start ManageIQ</h3>
312321

313322
<p>Start ManageIQ by executing:</p>
@@ -320,9 +329,79 @@ <h3 id="step-3-start-manageiq">Step 3: Start ManageIQ</h3>
320329
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>vagrant ssh
321330
</code></pre></div></div>
322331

332+
<p>Now that you’re on the appliance’s shell, it will need a little bit of input
333+
from you to finish starting:</p>
334+
335+
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>appliance_console
336+
</code></pre></div></div>
337+
338+
<p>This will bring up a menu-driven interface with a list of numbered options.
339+
The numbers for each option may vary. First, you want <code class="language-plaintext highlighter-rouge">Configure Application</code>,
340+
so enter that option’s number at the prompt and press enter.</p>
341+
342+
<p>You will be prompted to either create an encryption key or fetch one from a
343+
remote machine. Select the <code class="language-plaintext highlighter-rouge">Create key</code> option.</p>
344+
345+
<p>The next menu will ask how you want the database to be configured. For a basic
346+
setup to get started, <code class="language-plaintext highlighter-rouge">Create Internal Database</code> is an appropriate choice.</p>
347+
348+
<p>Then, it will ask about messaging. Choose <code class="language-plaintext highlighter-rouge">Configure this appliance as a
349+
messaging server</code>.</p>
350+
351+
<p>The console will then go about partitioning the extra disk(s) you added in
352+
<code class="language-plaintext highlighter-rouge">Vagrantfile</code>. You can choose the defaults here.</p>
353+
354+
<p>When it asks, “Should this appliance run as a standalone database server,”
355+
choose <code class="language-plaintext highlighter-rouge">N</code> (the default).</p>
356+
357+
<p>The next prompt will be “Enter the database region number.” Any number will do.
358+
<code class="language-plaintext highlighter-rouge">0</code> and <code class="language-plaintext highlighter-rouge">99</code> are common choices. For a vagrant appliance, this number isn’t
359+
especially important. Refer to the <a href="/docs/reference/radjabov/deployment_planning_guide">Deployment Planning
360+
Guide</a> for information about regions when you’re ready to take ManageIQ to
361+
production.</p>
362+
363+
<p>Next will be a password prompt for the database. It will ask twice.</p>
364+
365+
<p>You may get a prompt like “Already configured on this Appliance, Un-Configure
366+
first?” Choose <code class="language-plaintext highlighter-rouge">Y</code> to customize the settings for the Kafka messaging server,
367+
or <code class="language-plaintext highlighter-rouge">N</code> to go with what’s already set–which may not work.</p>
368+
369+
<p>If you chose <code class="language-plaintext highlighter-rouge">Y</code> above, you’ll be asked whether to “Proceed with Configuration.”
370+
If you choose <code class="language-plaintext highlighter-rouge">Y</code> again, you will get the following prompts:</p>
371+
372+
<ul>
373+
<li>Enter the Message Server Hostname:
374+
<ul>
375+
<li>The hostname you give here <em>must</em> be resolvable and <em>must</em> not be a
376+
link-local or loopback address. The default value will come from DHCP and
377+
will vary with your local network and any network settings you applied in
378+
<code class="language-plaintext highlighter-rouge">Vagrantfile</code>.</li>
379+
</ul>
380+
</li>
381+
<li>Enter the Message Keystore Username:
382+
<ul>
383+
<li>Any name works. The default is “admin.”</li>
384+
</ul>
385+
</li>
386+
<li>Enter the Message Keystore Password
387+
<ul>
388+
<li>Again, you will be prompted twice</li>
389+
</ul>
390+
</li>
391+
<li>Configure a new persistent disk volume?
392+
<ul>
393+
<li>If you added a third disk in <code class="language-plaintext highlighter-rouge">Vagrantfile</code>, you may choose <code class="language-plaintext highlighter-rouge">Y</code> here.
394+
Otherwise, choose <code class="language-plaintext highlighter-rouge">N</code>.</li>
395+
</ul>
396+
</li>
397+
</ul>
398+
399+
<p>You’ll be given a review-and-confirm dialog. Choose <code class="language-plaintext highlighter-rouge">Y</code> if everything looks
400+
correct. After a moment, you should be prompted to “press any key.”</p>
401+
323402
<p>ManageIQ is now up and running.</p>
324403

325-
<p>Next step is to perform some <a href="/docs/get-started/basic-configuration">basic
404+
<p>The next step is to perform some <a href="/docs/get-started/basic-configuration">basic
326405
configuration</a>.</p>
327406

328407
</div>

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, 04 Sep 2025 03:16:07 +0000</pubDate>
9-
<lastBuildDate>Thu, 04 Sep 2025 03:16:07 +0000</lastBuildDate>
8+
<pubDate>Thu, 04 Sep 2025 21:13:54 +0000</pubDate>
9+
<lastBuildDate>Thu, 04 Sep 2025 21:13:54 +0000</lastBuildDate>
1010
<generator>Jekyll v4.4.1</generator>
1111

1212
<item>

0 commit comments

Comments
 (0)