From 8693aede0731061b30499920f04a4382cea39e16 Mon Sep 17 00:00:00 2001 From: SapanaJadhav Date: Sun, 21 Oct 2018 21:46:32 +0530 Subject: [PATCH] neutron.conf needs lock_path set for router to operate This change is adding required configuration in neutron.conf to set the lock_path parameter, which was missing in compute-install-ubuntu.rst Change-Id: If090bdf060dfe21d11b1a5dfd010dc8167d9e45e Closes-Bug: #1796976 (cherry picked from commit f4d438019e3bd2f9b6c64badb9533168e583d8af) --- doc/source/install/compute-install-ubuntu.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/source/install/compute-install-ubuntu.rst b/doc/source/install/compute-install-ubuntu.rst index 11afc87b0d1..e7c0c783101 100644 --- a/doc/source/install/compute-install-ubuntu.rst +++ b/doc/source/install/compute-install-ubuntu.rst @@ -78,6 +78,18 @@ authentication mechanism, message queue, and plug-in. ``[keystone_authtoken]`` section. +* In the ``[oslo_concurrency]`` section, configure the lock path: + + .. path /etc/neutron/neutron.conf + .. code-block:: ini + + [oslo_concurrency] + # ... + lock_path = /var/lib/neutron/tmp + + .. end + + Configure networking options ----------------------------