fabfe1fd82
I updated nova content in the installation guide for Juno as follows: 1) Removed prompts specific to MySQL because most distributions will use MariaDB. 2) Explicitly created endpoint with 'regionOne' region to avoid inconsistent defaults. 3) Replaced 'auth_*' keys with 'identity_uri' key. 4) Moved glance configuration to [glance] section. 5) Recommended enabling verbose logging. 6) Added example command output and updated existing command output. Change-Id: Iad5c20e6562bcab83c6f0d5efccab566b3c18eae
49 lines
2.8 KiB
XML
49 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<section xmlns="http://docbook.org/ns/docbook"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
version="5.0"
|
|
xml:id="nova-verify">
|
|
<title>Verify operation</title>
|
|
<para>This section describes how to verify operation of the Compute
|
|
service.</para>
|
|
<procedure>
|
|
<note>
|
|
<para>Perform these commands on the controller node.</para>
|
|
</note>
|
|
<step>
|
|
<para>Source the <literal>admin</literal> credentials to gain access to
|
|
admin-only CLI commands:</para>
|
|
<screen><prompt>$</prompt> <userinput>source admin-openrc.sh</userinput></screen>
|
|
</step>
|
|
<step>
|
|
<para>List service components to verify successful launch of each
|
|
process:</para>
|
|
<screen><prompt>$</prompt> <userinput>nova service-list</userinput>
|
|
<computeroutput>+----+------------------+------------+----------+---------+-------+----------------------------+-----------------+
|
|
| Id | Binary | Host | Zone | Status | State | Updated_at | Disabled Reason |
|
|
+----+------------------+------------+----------+---------+-------+----------------------------+-----------------+
|
|
| 1 | nova-conductor | controller | internal | enabled | up | 2014-09-16T23:54:02.000000 | - |
|
|
| 2 | nova-consoleauth | controller | internal | enabled | up | 2014-09-16T23:54:04.000000 | - |
|
|
| 3 | nova-scheduler | controller | internal | enabled | up | 2014-09-16T23:54:07.000000 | - |
|
|
| 4 | nova-cert | controller | internal | enabled | up | 2014-09-16T23:54:00.000000 | - |
|
|
| 5 | nova-compute | compute1 | nova | enabled | up | 2014-09-16T23:54:06.000000 | - |
|
|
+----+------------------+------------+----------+---------+-------+----------------------------+-----------------+</computeroutput></screen>
|
|
<note>
|
|
<para>This output should indicate four components enabled on the
|
|
controller node one component enabled on the compute node.</para>
|
|
</note>
|
|
</step>
|
|
<step>
|
|
<para>List images in the Image Service catalog to verify connectivity
|
|
with the Identity service and Image Service:</para>
|
|
<screen><prompt>$</prompt> <userinput>nova image-list</userinput>
|
|
<computeroutput>+--------------------------------------+---------------------+--------+--------+
|
|
| ID | Name | Status | Server |
|
|
+--------------------------------------+---------------------+--------+--------+
|
|
| acafc7c0-40aa-4026-9673-b879898e1fc2 | cirros-0.3.3-x86_64 | ACTIVE | |
|
|
+--------------------------------------+---------------------+--------+--------+</computeroutput></screen>
|
|
</step>
|
|
</procedure>
|
|
</section>
|