Access the dashboard¶
Important
This page has been identified as being affected by the breaking changes introduced between versions 2.9.x and 3.x of the Juju client. Read support note Breaking changes between Juju 2.9.x and 3.x before continuing.
To access the dashboard (Horizon) first obtain its IP address:
juju status --format=yaml openstack-dashboard | grep public-address | awk '{print $2}' | head -1
In this example, the address is ‘10.246.114.29’.
The dashboard URL is then: http://10.246.114.29/horizon
Now query for the admin password:
juju exec --unit keystone/leader leader-get admin_passwd
****************
The final credentials needed to log in are:
Tip
If this tutorial was performed on a host remote to your browser, you may need to use SSH local port forwarding to access Horizon. For example:
sudo ssh -i <personal-key> -N -L 8002:10.246.114.29:80 <remote-host>
In this case, the URL becomes: http://localhost:8002/horizon