Merge "Add list of service log files used by nova"

This commit is contained in:
Jenkins 2014-03-04 14:28:14 +00:00 committed by Gerrit Code Review
commit ce33f2d81d
2 changed files with 132 additions and 0 deletions

View File

@ -101,5 +101,6 @@
<xi:include href="compute/section_compute-conductor.xml"/>
<xi:include href="compute/section_compute-security.xml"/>
<xi:include href="compute/section_compute-config-samples.xml"/>
<xi:include href="compute/section_nova-log-files.xml"/>
<xi:include href="compute/section_compute-options-reference.xml"/>
</chapter>

View File

@ -0,0 +1,131 @@
<?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="section_nova-logs">
<title>Log files used by Compute</title>
<para>The corresponding log file of each Compute service
is stored in the <filename>/var/log/nova/</filename>
directory of the host on which each service runs.</para>
<table rules="all">
<caption>Log files used by Compute services</caption>
<col width="35%"/>
<col width="35%"/>
<col width="30%"/>
<thead>
<tr>
<td>
Log file
</td>
<td>
Service name (CentOS/Fedora/openSUSE/Red Hat Enterprise
Linux/SUSE Linux Enterprise)
</td>
<td>
Service name (Ubuntu/Debian)
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<filename>api.log</filename>
</td>
<td>
openstack-nova-api
</td>
<td>
nova-api
</td>
</tr>
<tr>
<td>
<filename>cert.log</filename>
<footnote xml:id="fn_cert-log-nova">
<para>The X509 certificate service
(<systemitem>openstack-nova-cert</systemitem>/<systemitem>nova-cert</systemitem>)
is only required by the EC2 API to the Compute
service.</para></footnote>
</td>
<td>
<systemitem class="service">openstack-nova-cert</systemitem>
</td>
<td>
<systemitem class="service">nova-cert</systemitem>
</td>
</tr>
<tr>
<td>
<filename>compute.log</filename>
</td>
<td>
<systemitem class="service">openstack-nova-compute</systemitem>
</td>
<td>
<systemitem class="service">nova-compute</systemitem>
</td>
</tr>
<tr>
<td>
<filename>conductor.log</filename>
</td>
<td>
<systemitem class="service">openstack-nova-conductor</systemitem>
</td>
<td>
<systemitem class="service">nova-conductor</systemitem>
</td>
</tr>
<tr>
<td>
<filename>consoleauth.log</filename>
</td>
<td>
<systemitem class="service">openstack-nova-consoleauth</systemitem>
</td>
<td>
<systemitem class="service">nova-consoleauth</systemitem>
</td>
</tr>
<tr>
<td>
<filename>network.log</filename><footnote xml:id="fn_network-log-nova">
<para>The <systemitem>nova</systemitem> network service
(<systemitem>openstack-nova-network</systemitem>/<systemitem>nova-network</systemitem>)
only runs in deployments that are not configured to use
the Networking service (<systemitem>neutron</systemitem>).
</para></footnote>
</td>
<td>
<systemitem class="service">openstack-nova-network</systemitem>
</td>
<td>
<systemitem class="service">nova-network</systemitem>
</td>
</tr>
<tr>
<td>
<filename>nova-manage.log</filename>
</td>
<td>
<systemitem class="service">nova-manage</systemitem>
</td>
<td>
<systemitem class="service">nova-manage</systemitem>
</td>
</tr>
<tr>
<td>
<filename>scheduler.log</filename>
</td>
<td>
<systemitem class="service">openstack-nova-scheduler</systemitem>
</td>
<td>
<systemitem class="service">nova-scheduler</systemitem>
</td>
</tr>
</tbody>
</table>
</section>