diff --git a/doc/install-guide-debconf/source/neutron-compute-install.rst b/doc/install-guide-debconf/source/neutron-compute-install.rst deleted file mode 120000 index ed70d84adb..0000000000 --- a/doc/install-guide-debconf/source/neutron-compute-install.rst +++ /dev/null @@ -1 +0,0 @@ -../../install-guide/source/neutron-compute-install.rst \ No newline at end of file diff --git a/doc/install-guide-debconf/source/neutron-compute-install.rst b/doc/install-guide-debconf/source/neutron-compute-install.rst new file mode 100644 index 0000000000..46004fecd0 --- /dev/null +++ b/doc/install-guide-debconf/source/neutron-compute-install.rst @@ -0,0 +1,61 @@ +Install and configure compute node +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The compute node handles connectivity and :term:`security groups ` for instances. + +Install the components +---------------------- + +.. code-block:: console + + # apt-get install neutron-linuxbridge-agent + + Respond to prompts for + :doc:`database management ` + (leave it not-configured, as compute nodes do not need database access), + :doc:`Identity service credentials `, + :doc:`service endpoint registration `, + and :doc:`message broker credentials `. + +.. end + +Configure the common component +------------------------------ + +The Networking common component configuration includes the +authentication mechanism, message queue, and plug-in. + +.. include:: shared/note_configuration_vary_by_distribution.rst + +* Edit the ``/etc/neutron/neutron.conf`` file and complete the following + actions: + + * In the ``[database]`` section, comment out any ``connection`` options + because compute nodes do not directly access the database. + +Configure networking options +---------------------------- + +Choose the same networking option that you chose for the controller node to +configure services specific to it. Afterwards, return here and proceed to +:ref:`neutron-compute-compute`. + +.. toctree:: + :maxdepth: 1 + + neutron-compute-install-option1.rst + neutron-compute-install-option2.rst + +.. _neutron-compute-compute: + +Finalize installation +--------------------- + +#. Restart the Linux bridge agent: + + .. code-block:: console + + # service neutron-linuxbridge-agent restart + + .. end