Change-Id: I792aae25b6dd137f7b449ae27ab7e33372c6a361 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
5.3 KiB
Install and configure for Debian
This section describes how to install and configure the dashboard on the controller node.
The only core service required by the dashboard is the Identity service. You can use the dashboard in combination with other services, such as Image service, Compute, and Networking. You can also use the dashboard in environments with stand-alone services such as Object Storage.
Note
This section assumes proper installation, configuration, and operation of the Identity service using the Apache HTTP server and Memcached service.
Install and configure components
Install the packages:
# apt install openstack-dashboard-apache
Respond to prompts for web server configuration.
Note
The automatic configuration process generates a self-signed SSL certificate. Consider obtaining an official certificate for production environments.
Note
There are two modes of installation. One using
/horizon
as the URL, keeping your default vhost and only adding an Alias directive: this is the default. The other mode will remove the default Apache vhost and install the dashboard on the webroot. It was the only available option before the Liberty release. If you prefer to set the Apache configuration manually, install theopenstack-dashboard
package instead ofopenstack-dashboard-apache
.Edit the
/etc/openstack-dashboard/local_settings.py
file and complete the following actions:Configure the dashboard to use OpenStack services on the
controller
node:= "controller" OPENSTACK_HOST
In the Dashboard configuration section, allow your hosts to access Dashboard:
= ['one.example.com', 'two.example.com'] ALLOWED_HOSTS
Note
- Do not edit the
ALLOWED_HOSTS
parameter under the Ubuntu configuration section. ALLOWED_HOSTS
can also be['*']
to accept all hosts. This may be useful for development work, but is potentially insecure and should not be used in production. See the Django documentation for further information.
- Do not edit the
Configure the
memcached
session storage service:= 'django.contrib.sessions.backends.cache' SESSION_ENGINE = { CACHES 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': 'controller:11211', } }
Note
Comment out any other session storage configuration.
Enable the Identity API version 3:
= "http://%s:5000/v3" % OPENSTACK_HOST OPENSTACK_KEYSTONE_URL
Enable support for domains:
= True OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT
Configure API versions:
= { OPENSTACK_API_VERSIONS "identity": 3, "image": 2, "volume": 2, }
Configure
Default
as the default domain for users that you create via the dashboard:= "Default" OPENSTACK_KEYSTONE_DEFAULT_DOMAIN
Configure
user
as the default role for users that you create via the dashboard:= "user" OPENSTACK_KEYSTONE_DEFAULT_ROLE
If you chose networking option 1, disable support for layer-3 networking services:
= { OPENSTACK_NEUTRON_NETWORK ...'enable_router': False, 'enable_quotas': False, 'enable_ipv6': False, 'enable_distributed_router': False, 'enable_ha_router': False, 'enable_lb': False, 'enable_firewall': False, 'enable_vpn': False, 'enable_fip_topology_check': False, }
Optionally, configure the time zone:
= "TIME_ZONE" TIME_ZONE
Replace
TIME_ZONE
with an appropriate time zone identifier. For more information, see the list of time zones.
Finalize installation
Reload the web server configuration:
# service apache2 reload