Book Image

Troubleshooting Ubuntu Server

By : Skanda Bhargav
Book Image

Troubleshooting Ubuntu Server

By: Skanda Bhargav

Overview of this book

Table of Contents (16 chapters)
Troubleshooting Ubuntu Server
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Dashboard


Dashboard is a web interface that helps administrators and users manage and access OpenStack services. It uses the OpenStack API for providing these services. In this chapter, we will use the Apache server for deployment.

Prerequisites

We need to take care of some prerequisites before installing the dashboard as part of our OpenStack setup. Make sure the following requirements are met:

  • OpenStack Compute is already installed and the Identity service is enabled

  • The user for Identity service has sudo access enabled

  • Python version 2.6 or 2.7 is installed, and it should support Django

Installing and configuring the dashboard

Now, we will install and configure the packages for the dashboard component.

Installing the packages

The command to install the packages is as follows:

apt-get install openstack-dashboard apache2 libapache2-mod-wsgi
memcached python-memcache

Configuring the dashboard

Edit the /etc/openstack-dashboard/local_settings.py file and make the following changes:

  1. Set the dashboard...