From 4d6cce1d10275b32639233647c19790950b661c6 Mon Sep 17 00:00:00 2001 From: wnark Date: Fri, 11 Mar 2022 11:57:14 +0800 Subject: [PATCH] docs: Correct path used for config on Hyper-V Because in the above description: To install nova-compute, run: PS C:\> cd c:\nova PS C:\> python setup.py install The file is downloaded to c:\nova. After executing `python setup.py install` in this directory, the etc directory is generated under `c:\nova`. Correct the path. Closes-Bug: #1964548 Change-Id: Ibf0c1b56f235fffae65afbbcee30056bae965afe --- doc/source/admin/configuration/hypervisor-hyper-v.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/admin/configuration/hypervisor-hyper-v.rst b/doc/source/admin/configuration/hypervisor-hyper-v.rst index 79d72cad0521..969a0c13b34a 100644 --- a/doc/source/admin/configuration/hypervisor-hyper-v.rst +++ b/doc/source/admin/configuration/hypervisor-hyper-v.rst @@ -311,7 +311,7 @@ To install ``nova-compute``, run: Configure nova-compute ~~~~~~~~~~~~~~~~~~~~~~ -The ``nova.conf`` file must be placed in ``C:\etc\nova`` for running OpenStack +The ``nova.conf`` file must be placed in ``C:\nova\etc\nova`` for running OpenStack on Hyper-V. Below is a sample ``nova.conf`` for Windows: .. code-block:: ini @@ -425,7 +425,7 @@ Windows server: .. code-block:: none - PS C:\> C:\Python27\python.exe c:\Python27\Scripts\nova-compute --config-file c:\etc\nova\nova.conf + PS C:\> C:\Python38\python.exe c:\Python38\Scripts\nova-compute --config-file c:\nova\etc\nova\nova.conf Troubleshooting