Book Image

Learning Ceph - Second Edition

By : Karan Singh, Vaibhav Bhembre, Anthony D'Atri
Book Image

Learning Ceph - Second Edition

By: Karan Singh, Vaibhav Bhembre, Anthony D'Atri

Overview of this book

Learning Ceph, Second Edition will give you all the skills you need to plan, deploy, and effectively manage your Ceph cluster. You will begin with the first module, where you will be introduced to Ceph use cases, its architecture, and core projects. In the next module, you will learn to set up a test cluster, using Ceph clusters and hardware selection. After you have learned to use Ceph clusters, the next module will teach you how to monitor cluster health, improve performance, and troubleshoot any issues that arise. In the last module, you will learn to integrate Ceph with other tools such as OpenStack, Glance, Manila, Swift, and Cinder. By the end of the book you will have learned to use Ceph effectively for your data storage requirements.
Table of Contents (18 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Chapter 5. Deploying a Virtual Sandbox Cluster

In this chapter, we will explore the process of setting up a Ceph cluster in our sandbox environment. The following topics will be covered:

  • Installing prerequisites for our sandbox environment
  • Bootstrapping our Ceph Cluster
  • Deploying our Ceph Cluster
  • Scaling our Ceph Cluster

Sandbox environment will contain a set of virtual machines within which we will install and run our Ceph processes. In order to set up this environment we first need to install the necessary prerequisites on our system, including Vagrant, Git, Ansible, and VirtualBox. We will guide you through the installation of those prerequisites step-by-step before we bootstrap Ceph on your machine.

The virtual machines we will provision for running a Ceph cluster will be managed via HashiCorp's Vagrant (https://www.vagrantup.com/). Vagrant allows us to provision virtual instances and deploy custom configurations to those instances with minimal changes. It presents a provider interface that...