Book Image

OpenNebula 3 Cloud Computing

Book Image

OpenNebula 3 Cloud Computing

Overview of this book

OpenNebula is one of the most advanced and highly-scalable open source cloud computing toolkits. If you ever wanted to understand what Cloud Computing is and how to realize it, or if you need a handy way to manage your messy infrastructure in a simple and coherent manner, this is your way. OpenNebula 3 Cloud Computing guides you along the building and maintenance of your cloud infrastructure, providing real-world examples, step-by-step configuration and other critical information. The book keeps you a step ahead in dealing with the demanding nature of cloud computing and virtual infrastructure management using one of the most advanced cloud computing toolkitsñ OpenNebula. The book takes you from a basic knowledge of OpenNebula to expert understanding of the most advanced features.The book starts with a basic planning of hardware resources and presents the unique benefits of the supported hypervisors; you will go in deep with day-to-day management of virtual instances, infrastructure monitoring and integration with Public Clouds like Amazon EC2.With this book you will be able to get started with fast and cheap configuration recipes, but also go deeper for a correct integration with your existing infrastructure.You will deal with well-know virtualization technologies like Xen and VMware, but also with the promising KVM technology integrated in the Linux kernel. After the basic infrastructure set-up, you will learn how to create and manage virtual instance via both command-line and web interfaces, and how to monitor your existing resources.At the end, the book acquaints you with integrating your local infrastructure with external Cloud resources but also publishing your resources to others via common API interfaces.
Table of Contents (17 chapters)
OpenNebula 3 Cloud Computing
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Free Chapter
1
OpenNebula and Why it Matters?
Index

Sunstone installation


Sunstone was installed during the main OpenNebula installation and requires some Ruby gems to operate correctly. They are as follows:

  • json

  • rack

  • sinatra

  • thin

Hopefully, they have already been installed on your system during the execution of the install_gems script.

An additional library is required if you want to start a VNC session in an already running VM instance, without having a VNC client installed on your machine.

This is achieved by using a VNC HTML5 web-socket client (that goes by the name noVNC; detailed description on the link http://kanaka.github.com/noVNC/) on the client side and a VNC proxy translating and redirecting incoming connections on the server side.

The noVNC requirements are as follows:

  • Python 2.5: Needed by the noVNC proxy

  • Firefox or Chrome: A recent browser with web-socket support works

You need to execute the install_novnc.sh script, in order to download and configure the latest available noVNC release.

For self-contained installations, you will find the...