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 Object Storage service


The Object Storage service makes use of the REST API for providing object storage and retrieval. The minimum requirement is the Identity service. It can be scaled to handle a vast amount of unstructured data.

Installing and configuring the controller node

In this chapter, we will install the Object Service storage on the controller node. However, you can install the service on any node.

Configuring the prerequisites

The steps are as follows:

  1. Create the Identity service credentials as follows:

    1. Using the following command, create a user named swift:

      keystone user-create --name swift --pass SWIFT_PASS
      

      Make sure you replace the term SWIFT_PASS with an appropriate password of your choice.

    2. Next, add the admin role to the swift user using the following command:

      keystone user-role-add --user swift --tenant service --role admin
      
    3. Lastly, create a swift entity using the following command:

      keystone service-create --name swift --type object-store \
      --description "OpenStack Object Storage...