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 Compute service


The cloud computing systems in OpenStack are hosted and managed by the Compute service. This service is one of the dominant parts of the Infrastructure-as-a-Service (IaaS) system. The Compute service refers to the Identity service for authentication, the Image service for disk and server images, and the dashboard for the user and administrative interface. The Compute service can scale horizontally and it launches instances from the downloaded images.

Installing and configuring the Compute service

We will look at installing and configuring the Compute service on the controller node.

Configuring the prerequisites

We need to create database, credentials, and API endpoints so that we can install and configure the Compute service. The steps are as follows:

  1. Here are the steps to create a database:

    1. Connect to the database server as root user using the following command:

      mysql -u root –p
      
    2. Create a new database named nova using the following command:

      CREATE DATABASE nova;
      
    3. Grant all the...