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

The Database service


Database service is a component of the OpenStack system that helps users with scalability and provisioning of databases. Users can automate the administrative tasks related to cloud configuration, deployment, monitoring, backup, restore and patching.

Installing the Database service

Complete the following steps to install Database service on the controller node.

Taking care of the prerequisites

The Compute, Image, and Identity services should be running. Object Storage and Block Storage services are optional.

Installing the Database module

The steps to install the Database module are as follows:

  1. Install the package:

    apt-get install python-trove python-troveclient python-glanceclient \
    trove-common trove-api trove-taskmanager
    
  2. Prepare OpenStack:

    1. Source the admin credentials:

      source admin-openrc.sh
      
    2. Create a user trove and give the user administrative rights:

      keystone user-create --name trove --pass TROVE_PASS
      keystone user-role-add --user trove --tenant service --role admin
      

      Make...