Files
tacker-horizon/doc/source/install/index.rst
Yasufumi Ogawa 4f35c40a39 Quick fix for installation guide
You failed to install tacker-horizon as following [1] because it
doesn't support python3 completely. This update is to fix the
installation.

[1] https://docs.openstack.org/tacker-horizon/latest/install/index.html#manual-installation

Change-Id: Id69c80822752b0f972d6e2ccf87e2921acd1d04b
Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com>
2020-07-19 14:24:32 +00:00

1.2 KiB

Installation Guide

Manual Installation

Note: The paths we are using for configuration files in these steps are with reference to Ubuntu Operating System. The paths may vary for other Operating Systems.

The branch_name which is used in commands, specify the branch_name as stable/<branch> for any stable branch installation. For eg: stable/queens. If unspecified the default will be master branch.

  1. Clone tacker-horizon repository.
cd ~/
git clone https://opendev.org/openstack/tacker-horizon -b <branch_name>
  1. Install horizon module.
cd tacker-horizon
sudo python3 setup.py install
  1. Enable tacker horizon in dashboard.
sudo cp tacker_horizon/enabled/* \
    /opt/stack/horizon/openstack_dashboard/enabled/
  1. Collect and compress static files.
./manage.py collectstatic --noinput
echo yes | ./manage.py compress
  1. Restart Apache server.
sudo systemctl restart apache2

Install via Devstack

The tacker-horizon is automatically enabled when tacker server is installed.