Files
openstack-manuals/doc/install-guide/section_nova-networking-controller-node.xml
Matthew Kassawara 8ddea61d21 More updates for Juno
I updated the installation guide for Juno as follows:

1) Unifed RHEL/CentOS/Fedora steps to use systemd through
   networking chapter. Will work on other chapters in a
   future patch.
2) Split openSUSE steps to use systemd.
3) Removed database configuration from nova on compute
   nodes (yay!).
4) Added workaround for RDO changing the neutron default
   "auth_strategy=keystone" back to "auth_strategy=noauth".
5) Re-add workaround for broken RDO neutron init scripts. See
   bug #1375746 for more information.
6) Applied other changes for RHEL/CentOS 7.
7) Improved nova-network content.
8) Other minor fixes.

Change-Id: I0a130580764f61544f5abebdde21b677a4d0ece9
Implements: blueprint installation-guide-improvements
Closes-Bug: #1287874
Closes-Bug: #1373367
2014-10-03 20:15:42 -05:00

46 lines
2.3 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-networking-controller-node">
<title>Configure controller node</title>
<para>Legacy networking primarily involves compute nodes. However,
you must configure the controller node to use legacy
networking.</para>
<procedure>
<title>To configure legacy networking</title>
<step>
<para>Edit the <filename>/etc/nova/nova.conf</filename> file and
complete the following actions:</para>
<substeps>
<step>
<para>In the <literal>[DEFAULT]</literal> section, configure
the network and security group APIs:</para>
<programlisting language="ini">[DEFAULT]
...
network_api_class = nova.network.api.API
security_group_api = nova</programlisting>
</step>
</substeps>
</step>
<step>
<para>Restart the Compute services:</para>
<screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>systemctl restart openstack-nova-api.service</userinput>
<prompt>#</prompt> <userinput>systemctl restart openstack-nova-scheduler.service</userinput>
<prompt>#</prompt> <userinput>systemctl restart openstack-nova-conductor.service</userinput></screen>
<para os="sles">On SLES:</para>
<screen os="sles"><prompt>#</prompt> <userinput>service openstack-nova-api restart</userinput>
<prompt>#</prompt> <userinput>service openstack-nova-scheduler restart</userinput>
<prompt>#</prompt> <userinput>service openstack-nova-conductor restart</userinput></screen>
<para os="opensuse">On openSUSE:</para>
<screen os="opensuse"><prompt>#</prompt> <userinput>systemctl restart openstack-nova-api.service</userinput>
<prompt>#</prompt> <userinput>systemctl restart openstack-nova-scheduler.service</userinput>
<prompt>#</prompt> <userinput>systemctl restart openstack-nova-conductor.service</userinput></screen>
<screen os="ubuntu;debian"><prompt>#</prompt> <userinput>service nova-api restart</userinput>
<prompt>#</prompt> <userinput>service nova-scheduler restart</userinput>
<prompt>#</prompt> <userinput>service nova-conductor restart</userinput></screen>
</step>
</procedure>
</section>