[ Previous: Cinder (9/9) ] [ Test Home Lab ] Access http://controller/horizon and log in using the ‘labuser’ account created We will need one floating IP to associate with the test VM we will bring up – Let us allocate on floating IP. Choose Network->Floating IP option in the dashboard. Click on Allocate IP to…
Tag: dashboard
Openstack Xena on Ubuntu 20.04 – Horizon
[ Previous: Home Lab (7/9) ] [ 8/9: Horizon ] [ Next: Cinder (9/9) ] Install package. apt -y install openstack-dashboard Update configurations in /etc/openstack-dashboard/local_settings.py as shown below (changes in green) # Modify CACHES = { ‘default’: { ‘BACKEND’: ‘django.core.cache.backends.memcached.MemcachedCache’, …
Horizon – Dashboard on Controller Node
Install the packages (on controller node) apt install -y openstack-dashboard Update configurations – Edit /etc/openstack-dashboard/local_settings.py # Replaced 127.0.0.1 with controller OPENSTACK_HOST = “controller” # ALLOWED_HOSTS : Not the one at the end of configuration file # under ubuntu section, but the one at the top for configuration # file ALLOWED_HOSTS = ‘controller.xxxxxxx.net’ # Replaced existing…