SlideShare a Scribd company logo
11
Most read
12
Most read
15
Most read
Eucalyptus,
Nimbus &
OpenNebula
About Us
Amar Myana Latika Patil
I’m a Software Developer I’m a Software Developer
I work at Security Brigade Infosec Pvt. Ltd. I work at TCS Consultancy Ltd.
I’m working from last 3 years. I’m working from last 2 years.
Abstract
• Eucalyptus, Nimbus & OpenNebula are major Open-Source
Cloud-Computing Software Platforms
• Manage the provisioning of virtual machines for a cloud
providing IaaS
• Commercial cloud services charge, by the hour, for CPU time
• It might be more cost effective for the organization to purchase
hardware to create its own private cloud.
• These software products are designed to allow an organization
to set up a private group of machines as their own cloud.
• These three frameworks represent three different points of
interest in the design space of this particular type of open-
source cloud.
Analysis
• We will discuss how these software frameworks act as
managers that stand in the middle of a number of other
software components.
• We will analyze how core decisions in the basic architecture and
overall structure of Eucalyptus, Nimbus and OpenNebula impact
the kind of settings and applications for which each framework
is most suitable.
• We will identify several opportunities for improving these
software stacks by identifying some of the challenges that are
common to all three.
The Cloud Computing Stack
• A quick overview of entire cloud computing software stack.
• In a generic open-source cloud computing system, we can
identify six basic components.
• First, we hardware and operating system that are on the various
physical machines in the system.
• The second component is the network. This includes the DNS,
DHCP and the subnet organization of the physical machines.
• The third component is the virtual machine hypervisor, (also
known as a Virtual Machine Monitor or VMM).
• The fourth component is an archive of VM disk images.
• The fifth component is the front-end for users.
• The last component is the cloud framework itself, where
Eucalyptus, OpenNebula and Nimbus are placed.
Eucalyptus
• EUCALYPTUS stands for Elastic Utility Computing Architecture
for Linking Your Program To Useful System.
• It is open source software that was developed by University of
California-Santa Barbara for Cloud Computing to implement
Infrastructure as a Service.
• Eucalyptus provide an EC2 -compatible cloud Computing
Platform and S3- compatible Cloud Storage thus its services are
available through EC2/S3 compatible APIs.
• The Eucalyptus system is composed of a 5 main components
interacting together; Client, Cloud Controller, Storage
Controller (Walrus), Cluster Controller and a Node Controller.
• Node Controller
• Is installed in each compute
node to control VM activities,
including the execution, inspe-
ction and termination of VM
instances.
• Cluster Controller
• Runs on 1 machine per cluster &
works as an intermediary betw-
een the cloud & node controller.
• Storage Controller
• Warlus is a component that provides storage services for storing virtual
machine images and user’s data.
• Cloud Controller
• It is the user’s entry point into the Eucalyptus system and only one instance
is run on the system. It provides users with a way managing the system.
• The cloud controller is built using the Enterprise service bus providing
decoupling from the services’ implementation.
• Client
• The client component provides the user with a way to access the
Eucalyptus system (cloud controller).
• Eucalyptus provides two interfaces;
• One is a WDSL which is a SOAP client interface similar to AWS EC2 interface
called euca2ools.
• Another interface is a HTTP query based interface.
Constructing a Virtual Machine:
1. A user uses the euca2ools front-end to request a VM.
2. The VM template disk image is pushed
to a compute node
3. This disk image is padded to the correct
size and packaged for use by the
hypervisor on the compute node.
4. The compute node sets up network bridging
to provide a virtual NIC with a virtual MAC.
5. On the head node the dhcp is set up with the
MAC/IP pair
6. VM is spawned on the VMM.
7. The user can now SSH directly into the VM.
Nimbus
• Nimbus is another open source IaaS implementation framework
which came online September 2005.
• Nimbus allows a client to lease remote resources by deploying
virtual machines (VMs) on those resources and configuring
them to represent an environment desired by the user.
• It was formerly known as the "Virtual Workspace Service" (VWS)
but the "workspace service" is technically just one the
components in the software collection.
• Nimbus was designed with the goal of turning clusters into
clouds mainly to be used in scientific applications.
System Architecture And Design
• The design of Nimbus which consists of a number of components
based on the web service technology:
1. Workspace Service
• Allows clients to manage and administer VMs by providing to two interfaces;
1. One interface is based on the web service resource framework (WSRF)
2. The other is based on EC2 WSDL.
2. Workspace Resource Manager
• Implements VM instance creation on a site and management.
3. Workspace Pilot
• Provides virtualization with significant changes to the site configurations.
4. Workspace Control
• Implements VM instance management such as start, stop and pause VM. It also
provides image management and sets up networks and provides IP assignment.
5. Context Broker
• Allows clients coordinate large virtual cluster launches automatically and repeatedly.
6. Workspace Client
• A complex client that provides full access to the workspace service functionality.
7. Cloud Client
• A simpler client providing access to selected functionalities in the workspace service.
8. Storage Service
• Cumulus is a web service providing users with storage capabilities to store images
and works in conjunction with GridFTP.
Constructing A Virtual Machine:
1. A user uses cloud-client to request a VM.
2. Nimbus will SSH into a compute node.
3. The VM template disk image is pushed to the
compute node.
4. On the compute node, the disk image is
padded to the correct size and configured.
5. The compute node sets up network bridging
to provide a virtual NIC with a virtual MAC.
6. A dhcp server on the compute node is
configured with a MAC/IP pair.
7. VM is spawned on the VMM.
8. The user can now SSH directly into the VM.
OpenNebula
• OpenNebula tends to a greater level of centralization and
customizability (especially for end-users).
• The idea of OpenNebula is a pure private cloud, in which users
actually log into the head node to access cloud functions.
• OpenNebula, by default, uses a shared file system, typically NFS, for
all disk images files and all files for actually running the OpenNebula
functions.
• In order to spawn a VM, the user provides a configuration file
containing parameters which would be fed into the VMM command
line. This allows for memory, processor, network and disk resources
to be requested for essentially any configuration.
• OpenNebula is also very centralized, especially in its default
Constructing A Virtual Machine
1. A user uses ssh to login to the head node.
2. The user uses the onevm command to request a VM.
3. The VM template disk image is copied and a copy
is padded to the correct size and configuration within
the NFS directory on the head node.
4. The one process on the head node uses ssh to log into a
compute node.
5. The compute node sets up network bridging to provide a
virtual NIC with a virtual MAC.
6. Files needed by the VMM on the compute node will be
pulled to the compute node via the NFS.
7. VM is spawned on the VMM.
8. The user can now SSH directly into the VM.
SUMMARY
Eucalyptus OpenNebula Nimbus
Philosophy Mimic Amazon EC2 Private, highly
customizable cloud
Cloud resources
tailored to scientific
researchers
Customizability Some for admin,
less for user
Basically everything Many parts except
for image storage
and globus
credentials
DHCP On cluster controller Variable On individual
compute node
Internal Security Tight. Root required
for many things.
Looser, but can be
made more tight if
needed.
Fairly tight, unless
deploying a fully
private cloud.
User Security Users are given
custom credentials
via a web interface
User logs into head Users x509
credential is
registered with
cloud
An Ideal Setting Large group of Smaller group of Deploy for less to
THANK YOU

More Related Content

PPTX
Scheduling in Cloud Computing
PDF
Collaborating Using Cloud Services
PDF
Virtualization for Cloud Environment
PPTX
Introduction to IOT
DOCX
VIRTUALIZATION STRUCTURES TOOLS.docx
PPTX
Database System Architectures
PDF
BTCL Assistant Manager Previous Year Question by Stack IT Job Solution
PPSX
Data Types & Variables in JAVA
Scheduling in Cloud Computing
Collaborating Using Cloud Services
Virtualization for Cloud Environment
Introduction to IOT
VIRTUALIZATION STRUCTURES TOOLS.docx
Database System Architectures
BTCL Assistant Manager Previous Year Question by Stack IT Job Solution
Data Types & Variables in JAVA

What's hot (20)

PPT
cloud computing:Types of virtualization
PPTX
Virtualization in cloud computing
PPT
Architecture of Mobile Computing
PPTX
Market oriented Cloud Computing
PPTX
Third party cloud services cloud computing
PPTX
CLOUD COMPUTING SERVICES - Cloud Reference Modal
PPT
Virtualization in cloud computing ppt
PPTX
Common Standards in Cloud Computing
ODP
Introduction to Virtualization
PPT
Building Aneka clouds.ppt
PPT
Unit 4
PDF
Overview of computing paradigm
PDF
Google App Engine
PPT
Cloud Computing Security Challenges
PPTX
blackboard architecture
PDF
Aneka platform
PDF
Evolution of Cloud Computing
PPTX
Publish subscribe model overview
PPTX
Replication in Distributed Systems
PPTX
Underlying principles of parallel and distributed computing
cloud computing:Types of virtualization
Virtualization in cloud computing
Architecture of Mobile Computing
Market oriented Cloud Computing
Third party cloud services cloud computing
CLOUD COMPUTING SERVICES - Cloud Reference Modal
Virtualization in cloud computing ppt
Common Standards in Cloud Computing
Introduction to Virtualization
Building Aneka clouds.ppt
Unit 4
Overview of computing paradigm
Google App Engine
Cloud Computing Security Challenges
blackboard architecture
Aneka platform
Evolution of Cloud Computing
Publish subscribe model overview
Replication in Distributed Systems
Underlying principles of parallel and distributed computing
Ad

Viewers also liked (7)

PDF
OpenNebulaConf2017EU: IPP Cloud by Jimmy Goffaux, IPPON
PDF
Cloud Computing Architecture with Open Nebula - HPC Cloud Use Cases - NASA A...
PDF
OpenNebulaConf2017EU: Alternative Context for Windows by Paul Batchelor, Blac...
PDF
CloudOpen 2012 OpenNebula talk
PDF
Opennebula instalação
PDF
OpenNebulaConf2017EU: Rudder by Florian, Heigl
PDF
OpenNebula 4.14 Hands-on Tutorial
OpenNebulaConf2017EU: IPP Cloud by Jimmy Goffaux, IPPON
Cloud Computing Architecture with Open Nebula - HPC Cloud Use Cases - NASA A...
OpenNebulaConf2017EU: Alternative Context for Windows by Paul Batchelor, Blac...
CloudOpen 2012 OpenNebula talk
Opennebula instalação
OpenNebulaConf2017EU: Rudder by Florian, Heigl
OpenNebula 4.14 Hands-on Tutorial
Ad

Similar to Eucalyptus, Nimbus & OpenNebula (20)

PDF
Cloud computing overview
PPTX
Cloud using opennebulla for research work.pptx
PPTX
Unit-2-PPT-VIrtual Machine Provisioning-Context-final (1).pptx
PDF
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
PDF
The life cycle of a virtual machine (VM) provisioning process
PPTX
building cloud wit eucalyptus is described in this
PPTX
Survey of open source cloud architectures
PPTX
Cloud computing virtualization
PDF
comparative study of Cloud computing tools
PPTX
Virtualization, A Concept Implementation of Cloud
PPTX
2VM Provisioning (1)hhdzcfgdtetsrtr.pptx
PPTX
Get superior performance with auto scalable e nlight managed cloud
PDF
9-cloud-computing.pdf
PPTX
virtualization-220403085202_Chapter1.pptx
PPTX
2 vm provisioning
PPTX
vm provisioning
PPTX
cloudcomputingmodule2virtualizationbossss
PDF
Cloud Computing - Introduction
PPTX
CLOUD COMPUTING In Brief UNIT I PPT.pptx
PPTX
Tuning VIM performance for unikernels
Cloud computing overview
Cloud using opennebulla for research work.pptx
Unit-2-PPT-VIrtual Machine Provisioning-Context-final (1).pptx
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
The life cycle of a virtual machine (VM) provisioning process
building cloud wit eucalyptus is described in this
Survey of open source cloud architectures
Cloud computing virtualization
comparative study of Cloud computing tools
Virtualization, A Concept Implementation of Cloud
2VM Provisioning (1)hhdzcfgdtetsrtr.pptx
Get superior performance with auto scalable e nlight managed cloud
9-cloud-computing.pdf
virtualization-220403085202_Chapter1.pptx
2 vm provisioning
vm provisioning
cloudcomputingmodule2virtualizationbossss
Cloud Computing - Introduction
CLOUD COMPUTING In Brief UNIT I PPT.pptx
Tuning VIM performance for unikernels

Recently uploaded (20)

PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
System and Network Administration Chapter 2
PPTX
ISO 45001 Occupational Health and Safety Management System
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
history of c programming in notes for students .pptx
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
top salesforce developer skills in 2025.pdf
DOCX
The Five Best AI Cover Tools in 2025.docx
PDF
AI in Product Development-omnex systems
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Digital Strategies for Manufacturing Companies
PPTX
Introduction to Artificial Intelligence
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PTS Company Brochure 2025 (1).pdf.......
Which alternative to Crystal Reports is best for small or large businesses.pdf
System and Network Administration Chapter 2
ISO 45001 Occupational Health and Safety Management System
Operating system designcfffgfgggggggvggggggggg
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
history of c programming in notes for students .pptx
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
top salesforce developer skills in 2025.pdf
The Five Best AI Cover Tools in 2025.docx
AI in Product Development-omnex systems
VVF-Customer-Presentation2025-Ver1.9.pptx
ai tools demonstartion for schools and inter college
How to Choose the Right IT Partner for Your Business in Malaysia
Design an Analysis of Algorithms I-SECS-1021-03
Digital Strategies for Manufacturing Companies
Introduction to Artificial Intelligence
Odoo POS Development Services by CandidRoot Solutions
How to Migrate SBCGlobal Email to Yahoo Easily

Eucalyptus, Nimbus & OpenNebula

  • 2. About Us Amar Myana Latika Patil I’m a Software Developer I’m a Software Developer I work at Security Brigade Infosec Pvt. Ltd. I work at TCS Consultancy Ltd. I’m working from last 3 years. I’m working from last 2 years.
  • 3. Abstract • Eucalyptus, Nimbus & OpenNebula are major Open-Source Cloud-Computing Software Platforms • Manage the provisioning of virtual machines for a cloud providing IaaS • Commercial cloud services charge, by the hour, for CPU time • It might be more cost effective for the organization to purchase hardware to create its own private cloud. • These software products are designed to allow an organization to set up a private group of machines as their own cloud. • These three frameworks represent three different points of interest in the design space of this particular type of open- source cloud.
  • 4. Analysis • We will discuss how these software frameworks act as managers that stand in the middle of a number of other software components. • We will analyze how core decisions in the basic architecture and overall structure of Eucalyptus, Nimbus and OpenNebula impact the kind of settings and applications for which each framework is most suitable. • We will identify several opportunities for improving these software stacks by identifying some of the challenges that are common to all three.
  • 5. The Cloud Computing Stack • A quick overview of entire cloud computing software stack. • In a generic open-source cloud computing system, we can identify six basic components.
  • 6. • First, we hardware and operating system that are on the various physical machines in the system. • The second component is the network. This includes the DNS, DHCP and the subnet organization of the physical machines. • The third component is the virtual machine hypervisor, (also known as a Virtual Machine Monitor or VMM). • The fourth component is an archive of VM disk images. • The fifth component is the front-end for users. • The last component is the cloud framework itself, where Eucalyptus, OpenNebula and Nimbus are placed.
  • 7. Eucalyptus • EUCALYPTUS stands for Elastic Utility Computing Architecture for Linking Your Program To Useful System. • It is open source software that was developed by University of California-Santa Barbara for Cloud Computing to implement Infrastructure as a Service. • Eucalyptus provide an EC2 -compatible cloud Computing Platform and S3- compatible Cloud Storage thus its services are available through EC2/S3 compatible APIs. • The Eucalyptus system is composed of a 5 main components interacting together; Client, Cloud Controller, Storage Controller (Walrus), Cluster Controller and a Node Controller.
  • 8. • Node Controller • Is installed in each compute node to control VM activities, including the execution, inspe- ction and termination of VM instances. • Cluster Controller • Runs on 1 machine per cluster & works as an intermediary betw- een the cloud & node controller. • Storage Controller • Warlus is a component that provides storage services for storing virtual machine images and user’s data. • Cloud Controller • It is the user’s entry point into the Eucalyptus system and only one instance is run on the system. It provides users with a way managing the system.
  • 9. • The cloud controller is built using the Enterprise service bus providing decoupling from the services’ implementation. • Client • The client component provides the user with a way to access the Eucalyptus system (cloud controller). • Eucalyptus provides two interfaces; • One is a WDSL which is a SOAP client interface similar to AWS EC2 interface called euca2ools. • Another interface is a HTTP query based interface.
  • 10. Constructing a Virtual Machine: 1. A user uses the euca2ools front-end to request a VM. 2. The VM template disk image is pushed to a compute node 3. This disk image is padded to the correct size and packaged for use by the hypervisor on the compute node. 4. The compute node sets up network bridging to provide a virtual NIC with a virtual MAC. 5. On the head node the dhcp is set up with the MAC/IP pair 6. VM is spawned on the VMM. 7. The user can now SSH directly into the VM.
  • 11. Nimbus • Nimbus is another open source IaaS implementation framework which came online September 2005. • Nimbus allows a client to lease remote resources by deploying virtual machines (VMs) on those resources and configuring them to represent an environment desired by the user. • It was formerly known as the "Virtual Workspace Service" (VWS) but the "workspace service" is technically just one the components in the software collection. • Nimbus was designed with the goal of turning clusters into clouds mainly to be used in scientific applications.
  • 12. System Architecture And Design • The design of Nimbus which consists of a number of components based on the web service technology: 1. Workspace Service • Allows clients to manage and administer VMs by providing to two interfaces; 1. One interface is based on the web service resource framework (WSRF) 2. The other is based on EC2 WSDL.
  • 13. 2. Workspace Resource Manager • Implements VM instance creation on a site and management. 3. Workspace Pilot • Provides virtualization with significant changes to the site configurations. 4. Workspace Control • Implements VM instance management such as start, stop and pause VM. It also provides image management and sets up networks and provides IP assignment. 5. Context Broker • Allows clients coordinate large virtual cluster launches automatically and repeatedly. 6. Workspace Client • A complex client that provides full access to the workspace service functionality. 7. Cloud Client • A simpler client providing access to selected functionalities in the workspace service. 8. Storage Service • Cumulus is a web service providing users with storage capabilities to store images and works in conjunction with GridFTP.
  • 14. Constructing A Virtual Machine: 1. A user uses cloud-client to request a VM. 2. Nimbus will SSH into a compute node. 3. The VM template disk image is pushed to the compute node. 4. On the compute node, the disk image is padded to the correct size and configured. 5. The compute node sets up network bridging to provide a virtual NIC with a virtual MAC. 6. A dhcp server on the compute node is configured with a MAC/IP pair. 7. VM is spawned on the VMM. 8. The user can now SSH directly into the VM.
  • 15. OpenNebula • OpenNebula tends to a greater level of centralization and customizability (especially for end-users). • The idea of OpenNebula is a pure private cloud, in which users actually log into the head node to access cloud functions. • OpenNebula, by default, uses a shared file system, typically NFS, for all disk images files and all files for actually running the OpenNebula functions. • In order to spawn a VM, the user provides a configuration file containing parameters which would be fed into the VMM command line. This allows for memory, processor, network and disk resources to be requested for essentially any configuration. • OpenNebula is also very centralized, especially in its default
  • 16. Constructing A Virtual Machine 1. A user uses ssh to login to the head node. 2. The user uses the onevm command to request a VM. 3. The VM template disk image is copied and a copy is padded to the correct size and configuration within the NFS directory on the head node. 4. The one process on the head node uses ssh to log into a compute node. 5. The compute node sets up network bridging to provide a virtual NIC with a virtual MAC. 6. Files needed by the VMM on the compute node will be pulled to the compute node via the NFS. 7. VM is spawned on the VMM. 8. The user can now SSH directly into the VM.
  • 17. SUMMARY Eucalyptus OpenNebula Nimbus Philosophy Mimic Amazon EC2 Private, highly customizable cloud Cloud resources tailored to scientific researchers Customizability Some for admin, less for user Basically everything Many parts except for image storage and globus credentials DHCP On cluster controller Variable On individual compute node Internal Security Tight. Root required for many things. Looser, but can be made more tight if needed. Fairly tight, unless deploying a fully private cloud. User Security Users are given custom credentials via a web interface User logs into head Users x509 credential is registered with cloud An Ideal Setting Large group of Smaller group of Deploy for less to