Book Image

OpenStack Trove Essentials

By : Alok Shrivastwa, Sunil Sarat, Doug Shelley, Amrith Kumar
Book Image

OpenStack Trove Essentials

By: Alok Shrivastwa, Sunil Sarat, Doug Shelley, Amrith Kumar

Overview of this book

OpenStack has become an extremely popular solution to build public and private clouds with. Database as a Service (DBaaS) enables the delivery of more agile database services at lower costs. Some other benefits of DBaaS are secure database deployments and compliance to standards and best practices. Trove is a DBaaS built on OpenStack and is becoming more popular by the day. Since Trove is one of the most recent projects of OpenStack, DBAs and system administrators can find it difficult to set up and run a DBaaS using OpenStack Trove. This book helps DBAs make that step. We start by introducing you to the concepts of DBaaS and how is it implemented using OpenStack Trove. Following this, we look at implementing OpenStack and deploying Trove. Moving on, you will learn to create guest images to be used with Trove. We then look at how to provision databases in self-service mode, and how to perform administration tasks such as backup and recovery, and fine-tuning databases. At the end of the book, we will examine some advanced features of Trove such as replication.
Table of Contents (15 chapters)
OpenStack Trove Essentials
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
Index

Configuring Trove


Configuring the Trove system is the final piece of the puzzle. If you have used an automated system (like SaltStack or DevStack), the configuration should automatically be done, provided the configuration parameters were passed down to the scripts.

If we have installed from source or from a repository manually, then the configuration becomes a mandatory part.

Before we start the configuration, we will need the following information handy. Some of this information will be new, and some of it will already exist based on the other components that are already installed (MySQL IP and Port, RabbitMQ server configuration, and so on).

We always follow a practice to fill out the details in a tabular format so that we can easily access them.

Please note that the table is filled with details from our existing environment, but these will be different for your environment.

Requirement

Value

Hostname/IP of controller node

172.22.6.246

Database IP and port

localhost:3306

RabbitMQ server...