Introduction to Cloud Computing
|
|
|
- June Brooks
- 9 years ago
- Views:
Transcription
1 Introduction to Cloud Computing Shang Juh Kao Dept. of Computer Science and Engineering National Chung Hsing University 2011/10/27 CSE, NCHU 1
2 Table of Contents 1. Introduction ( 資 料 取 自 NCHC 自 由 軟 體 實 驗 室 ) 2. Basics of Cloud and Cloud Architecture 3. Virtualization Technology 4. Managing VMs (KVM, UML, Xen, VMware, MLN, Libvirt) 5. IaaS (ONE, Eucalyptus, OpenStack) 6. PaaS (KMLN) 7. SaaS (Education Cloud, VIS) 2011/10/27 CSE, NCHU 2
3 Lecture 5 OpenNebula Introduction to OpenNebula Main Components OpenNebula Architecure VM Construction Comparisons of VI Mgmt Capability 2011/10/27 CSE, NCHU 3
4 Introduction - 1 OpenNebula.org was an open-source project in 2005 by Ignacio M. Llorente and Ruben S. Montero, first public release in 2008, starting from 2010 OpenNebula.org is managed by C12G labs. The current release is 3.0 in Oct ONE aims at providing IaaS cloud computing solution, and tries to provide an open, flexible, extensible, and comprehensive management layer to automate and orchestrate the operation of virtualized data centers. The core values claimed by the project are: openness, excellence, cooperation, and innovation. 2011/10/27 CSE, NCHU 4
5 Introduction - 2 Other open source cloud computing software platforms include Eucalyptus and Nimbus. A generic open source cloud computing system includes 6 components: (refer to the PowerPoint about its components) 1. HW and SW on physical machine 2. Network 3. VM hypervisor (Xen, KVM, VMware) 4. VM disk images (shared file system, NFX or SCP) 5. Front-end users (euca2ools) 6. Cloud platform itself OpenNebula is for private cloud, in which users log into the head node to access the cloud platform. 2011/10/27 CSE, NCHU 5
6 History of OpenNebula 2011/10/27 CSE, NCHU 6
7 How and What? OpenNebula orchestrates storage, network, virtualization, monitoring, and security technologies to enable the dynamic placement of multi-tier services on distributed infrastructures. OpenNebula provides the image repository system to set up and share images, the template repository system to register VM definition, virtual networking to interconnect VMs. 2011/10/27 CSE, NCHU 7
8 Management of Cloud Infrastructure Virtualization subsystem Networking subsystem Storage subsystem Host subsystem Auth subsystem Other subsystems 2011/10/27 CSE, NCHU 8
9 Main Components of OpenNebula /10/27 CSE, NCHU 9
10 Main Components of OpenNebula 1.1 Interfaces & APIs interfaces to manage physical and virtual resources User and Groups supports accounts, groups, authentication, and authorized mechanisms. Access Control List for fine grain permission granting. Hosts and Virtualization supports Xen, KVM, VMware. Networking supports for VLANs and Open vswitch. Storage and Images supports both non-shared and shared file systems. 2011/10/27 CSE, NCHU 10
11 Front-End Front-End is the machine that holds the OpenNebula installation and executes the OpenNebula services. Front-End needs to have access to the image repository and network connectivity to each node. The base installation of OpenNebula takes less than 10 MB. Requiring ruby or above. 2011/10/27 CSE, NCHU 11
12 OpenNebula Services 1. Management daemon (oned) and scheduler (mm_sched) 2. Monitoring and accounting daemon (onecctd) 3. Web interface server (sunstone) 4. Cloud API servers (EC2- query or occi) 2011/10/27 CSE, NCHU 12
13 Hosts The hosts are the physical machines that will run the VMs. During the installation, it is required to configure the OpenNebula administrative account to be able to ssh to the hosts. Depending on the hypervisor, the admin. account should be allowed to execute commands with root privileges. No any packages are necessary to be installed in the hosts. Requiring ruby or above. 2011/10/27 CSE, NCHU 13
14 Image Repository & Storage Image repository handles the VM images, and has to be accessible through the front-end using any storage technology. Images are transferred to the hosts to use them in the VMs. OpenNebula can handle multiple storage scenarios, either shared file system or not. As an example, a 64-core cluster could typically run around 80 VMs. If each VM requires 10GB of disk space, then we need about 800GB for /var/lib/one. Another 200GB for primary images in /var/lib/one/images is also required. A 1TB /var/lib/one will be enough for the example. 2011/10/27 CSE, NCHU 14
15 Image Management Images are set up by OpenNebular administrators or users through image repository. 3 types of images: OS, CDROM, or DATABLOCK. We are able to create, show, list, enable, disable, delete through CLI or GUI (sunstone) as $ oneimage ***. Frequently used parameters for oneimage are create, show, list, publish/unpublish, persistent/nonpersistent, and saveas, show, list, livemigrate for onevm. Other useful commands include onehost, onetemplate, 2011/10/27 CSE, NCHU 15
16 Networking -1 The network is needed by the OpenNebula front-end daemons to access the hosts to manage and monitor the hypervisors; and move image files. To offer network connectivity to the VMs across the different hosts, the default configuration connects the VM network interface to a bridge in the physical host. For example, a typical host with 2 physical networks, one for public IP addresses (attached to eth0) and the other one for private VLAN (attached to eth1), should have 2 bridges. OpenNebula will dynamic create network bridges. 2011/10/27 CSE, NCHU 16
17 Networking - 2 When a VM is launched, OpenNebula will connect its network interfaces to the bridge specified in the virtual network definition. The OpenNebula admin. may activate one of the following network types: Host-managed VLANs, Ebtables, Open vswitch. They should be enabled in /etc/one/oned.conf. The OpenNEbula admin. may enable firewalling rules to allow a regular user to filter TCP, UDP, or ICMP traffic. 2011/10/27 CSE, NCHU 17
18 The OpenNebula Architecture /10/27 CSE, NCHU 18
19 The OpenNebula Architecture - 2 To control a VM s life cycyle, the OpenNebula core orchestrates 3 management areas: 1. Image and storage technologies for preparing disk images 2. The network fabric for providing virtual network environment 3. The underlying hypervisors for creating and controlling VMs The core performs the above operations through pluggable drivers. The core also supports services deployment. 2011/10/27 CSE, NCHU 19
20 The OpenNebula Architecture - 3 A separate scheduler component makes VM placement decisions. The default scheduler provides a rank scheduling policy that places VMs on physical hosts according to a ranking algorithm. OpenNebula offers management interfaces to integrate the core s functionality with other management tools, such as accounting and monitoring frameworks. OpenNebula supports a hybrid cloud model by using cloud drivers to interface with external clouds, such as Haizea lease manager and Reservoir. 2011/10/27 CSE, NCHU 20
21 VM Construction /10/27 CSE, NCHU 21
22 VM Construction - 2 The steps for constructing a VM in a config. of OpenNebula: 1. User uses ssh to login to the head node 2. User uses onevm to request a VM 3. The VM template disk image is copied 4. The oned 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. File needed by the VMM is pulled from the head node via NFS 7. VMM is spawned on the VMM 8. The user can ssh directly into the VMM 2011/10/27 CSE, NCHU 22
23 Providing VI Management Capabilities /10/27 CSE, NCHU 23
24 Providing VI Management Capabilities /10/27 CSE, NCHU 24
25 References OpenNebula.org A comparison and critique of Eucalyptus, OpenNebula, and Nimbus, by P. Sempolinski and D. Thain, in 2 nd IEEE international conference on Cloud Computing Technology and Science, Virtual Infrastructure Management in Private and Hybrid Clouds, by B. Sotomayor, R.S Montero, and I. Foster, in IEEE Internet Computing, /10/27 CSE, NCHU 25
26 The Next is Libvirt an open interface for VM management 2011/10/27 CSE, NCHU 26
27 Upcoming Scheduling VM installation before 10/31. Libvirt on 11/03 Midterm on 11/10 Preparation for a further study (11/18) Implementation-based reports (comparisons or features exploration) Study of related technology/products Research-based study (energy consumption, reliability, security, ) 2011/10/27 CSE, NCHU 27
Scheduler in Cloud Computing using Open Source Technologies
Scheduler in Cloud Computing using Open Source Technologies Darshan Upadhyay Prof. Chirag Patel Student of M.E.I.T Asst. Prof. Computer Department S. S. Engineering College, Bhavnagar L. D. College of
OpenNebula An Innovative Open Source Toolkit for Building Cloud Solutions
Cloud Computing and its Applications 20th October 2009 OpenNebula An Innovative Open Source Toolkit for Building Cloud Solutions Distributed Systems Architecture Research Group Universidad Complutense
OpenNebula Open Souce Solution for DC Virtualization. C12G Labs. Online Webinar
OpenNebula Open Souce Solution for DC Virtualization C12G Labs Online Webinar What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision on Virtualized Environments I m using virtualization/cloud,
The OpenNebula Cloud Platform for Data Center Virtualization
CloudOpen 2012 San Diego, USA, August 29th, 2012 The OpenNebula Cloud Platform for Data Center Virtualization Carlos Martín Project Engineer Acknowledgments The research leading to these results has received
OGF25/EGEE User Forum Catania, Italy 2 March 2009
OGF25/EGEE User Forum Catania, Italy 2 March 2009 Constantino Vázquez Blanco Javier Fontán Muiños Raúl Sampedro Distributed Systems Architecture Research Group Universidad Complutense de Madrid 1/31 Outline
OpenNebula Open Souce Solution for DC Virtualization
13 th LSM 2012 7 th -12 th July, Geneva OpenNebula Open Souce Solution for DC Virtualization Constantino Vázquez Blanco OpenNebula.org What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision
OpenNebula Open Souce Solution for DC Virtualization
OSDC 2012 25 th April, Nürnberg OpenNebula Open Souce Solution for DC Virtualization Constantino Vázquez Blanco OpenNebula.org What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision on Virtualized
Building Clouds with OpenNebula 2.2 and StratusLab
Contrail Summer School June 2011, France Building Clouds with OpenNebula 2.2 and StratusLab Javier Fontán Muiños dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense
The OpenNebula Standard-based Open -source Toolkit to Build Cloud Infrastructures
Jornadas Técnicas de RedIRIS 2009 Santiago de Compostela 27th November 2009 The OpenNebula Standard-based Open -source Toolkit to Build Cloud Infrastructures Distributed Systems Architecture Research Group
Getting Started Hacking on OpenNebula
LinuxTag 2013 Berlin, Germany, May 22nd Getting Started Hacking on OpenNebula Carlos Martín Project Engineer Acknowledgments The research leading to these results has received funding from Comunidad de
Why is a good idea to use OpenNebula in your VMware Infrastructure?
Why is a good idea to use OpenNebula in your VMware Infrastructure? Constantino Vázquez C12G Labs Online Webinar OpenNebula in your VMware Infrastructure Contents Introduction Overview: What is OpenNebula?
Open Source Cloud Computing Management with OpenNebula
CloudCamp Campus Party July 2011, Valencia Open Source Cloud Computing Management with OpenNebula Javier Fontán Muiños dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense
Deployment of Private, Hybrid & Public Clouds with OpenNebula
EL / LAK (FOSS) 2010 May 14th, 2010 Deployment of Private, Hybrid & Public Clouds with OpenNebula University Complutense of Madrid The Anatomy of an IaaS Cloud Deployment of Private, Hybrid & Public Clouds
OpenNebula The Open Source Solution for Data Center Virtualization
LinuxTag April 23rd 2012, Berlin OpenNebula The Open Source Solution for Data Center Virtualization Hector Sanjuan OpenNebula.org 1 What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision
Cloud Computing Architecture with OpenNebula HPC Cloud Use Cases
NASA Ames NASA Advanced Supercomputing (NAS) Division California, May 24th, 2012 Cloud Computing Architecture with OpenNebula HPC Cloud Use Cases Ignacio M. Llorente Project Director OpenNebula Project.
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Introduction
Virtual Machine Management with OpenNebula in the RESERVOIR project
CISCO Cloud Computing Research Symposium (C 3 RS) November 5 & 6, 2008 San Jose, CA Virtual Machine Management with OpenNebula in the RESERVOIR project Ruben Santiago Montero Distributed Systems Architecture
Mobile Cloud Computing T-110.5121 Open Source IaaS
Mobile Cloud Computing T-110.5121 Open Source IaaS Tommi Mäkelä, Otaniemi Evolution Mainframe Centralized computation and storage, thin clients Dedicated hardware, software, experienced staff High capital
Building Clouds with OpenNebula 3.4
OSDC 2012 24th April, Nürnberg Building Clouds with OpenNebula 3.4 Constantino Vázquez Blanco dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense de Madrid Building
FREE AND OPEN SOURCE SOFTWARE FOR CLOUD COMPUTING SERENA SPINOSO ([email protected]) FULVIO VALENZA (fulvio.valenza@polito.
+ FREE AND OPEN SOURCE SOFTWARE FOR CLOUD COMPUTING SERENA SPINOSO ([email protected]) FULVIO VALENZA ([email protected]) + OUTLINE INTRODUCTION OF CLOUD DEFINITION OF CLOUD BASIC CLOUD COMPONENTS
OpenNebula @ Open Cloud Day. http://ungleich.ch
2015 http://ungleich.ch Introduction Nico Schottelius President of ungleich GmbH Linux/Unix Infrastructure Services Application Hosting (RubyOnRails, Django, Nodejs) Hosting based on OpenNebula and cdist
OpenNebula Leading Innovation in Cloud Computing Management
OW2 Annual Conference 2010 Paris, November 24th, 2010 OpenNebula Leading Innovation in Cloud Computing Management Ignacio M. Llorente DSA-Research.org Distributed Systems Architecture Research Group Universidad
An Experimental Study of Load Balancing of OpenNebula Open-Source Cloud Computing Platform
An Experimental Study of Load Balancing of OpenNebula Open-Source Cloud Computing Platform A B M Moniruzzaman 1, Kawser Wazed Nafi 2, Prof. Syed Akhter Hossain 1 and Prof. M. M. A. Hashem 1 Department
Comparing Open Source Private Cloud (IaaS) Platforms
Comparing Open Source Private Cloud (IaaS) Platforms Lance Albertson OSU Open Source Lab Associate Director of Operations [email protected] / @ramereth About me OSU Open Source Lab Server hosting for Open
How To Compare Cloud Computing To Cloud Platforms And Cloud Computing
Volume 3, Issue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Cloud Platforms
Cloud Implementation using OpenNebula
Cloud Implementation using OpenNebula Best Practice Document Produced by the MARnet-led working group on campus networking Authors: Vasko Sazdovski (FCSE/MARnet), Boro Jakimovski (FCSE/MARnet) April 2016
VM Management for Green Data Centres with the OpenNebula Virtual Infrastructure Engine
OGF-EU: Using IT to reduce Carbon Emissions and Delivering the Potential of Energy Efficient Computing OGF25, Catania, Italy 5 March 2009 VM Management for Green Data Centres with the OpenNebula Virtual
Elastic Management of Cluster based Services in the Cloud
First Workshop on Automated Control for Datacenters and Clouds (ACDC09) June 19th, Barcelona, Spain Elastic Management of Cluster based Services in the Cloud Rafael Moreno Vozmediano, Ruben S. Montero,
Cloud Computing for Control Systems CERN Openlab Summer Student Program 9/9/2011 ARSALAAN AHMED SHAIKH
Cloud Computing for Control Systems CERN Openlab Summer Student Program 9/9/2011 ARSALAAN AHMED SHAIKH CONTENTS Introduction... 4 System Components... 4 OpenNebula Cloud Management Toolkit... 4 VMware
ONE Cloud Services Secure Cloud Applications for E-Health
ONE Cloud Services Secure Cloud Applications for E-Health http://cloudbestpractices.net Cloud Solutions Roadmap The Cloud Best Practices Network (CBPN) specializes in pioneering and documenting best practice
Comparison and Evaluation of Open-source Cloud Management Software
Comparison and Evaluation of Open-source Cloud Management Software SRIVATSAN JAGANNATHAN Masters Degree Project Stockholm, Sweden XR-EE-LCN 2012:008 Comparison and Evaluation of Open-source Cloud Management
Sistemi Operativi e Reti. Cloud Computing
1 Sistemi Operativi e Reti Cloud Computing Facoltà di Scienze Matematiche Fisiche e Naturali Corso di Laurea Magistrale in Informatica Osvaldo Gervasi [email protected] 2 Introduction Technologies
Virtualization & Cloud Computing (2W-VnCC)
Virtualization & Cloud Computing (2W-VnCC) DETAILS OF THE SYLLABUS: Basics of Networking Types of Networking Networking Tools Basics of IP Addressing Subnet Mask & Subnetting MAC Address Ports : Physical
Design and Building of IaaS Clouds
21th May 2010 CloudViews 2010 Porto, Portugal Next Generation Data Center Summit Design and Building of IaaS Clouds Distributed Systems Architecture Research Group Universidad Complutense de Madrid This
Comparing Ganeti to other Private Cloud Platforms. Lance Albertson Director [email protected] @ramereth
Comparing Ganeti to other Private Cloud Platforms Lance Albertson Director [email protected] @ramereth About me OSU Open Source Lab Server hosting for Open Source Projects Open Source development projects
Cloud Models and Platforms
Cloud Models and Platforms Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF A Working Definition of Cloud Computing Cloud computing is a model
SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager [email protected]. Product Marketing Manager djarvis@suse.
SUSE Cloud 2.0 Pete Chadwick Douglas Jarvis Senior Product Manager [email protected] Product Marketing Manager [email protected] SUSE Cloud SUSE Cloud is an open source software solution based on OpenStack
CLEVER: a CLoud-Enabled Virtual EnviRonment
CLEVER: a CLoud-Enabled Virtual EnviRonment Francesco Tusa Maurizio Paone Massimo Villari Antonio Puliafito {ftusa,mpaone,mvillari,apuliafito}@unime.it Università degli Studi di Messina, Dipartimento di
T-110.5121 Mobile Cloud Computing Private Cloud & Assignment 2 19.10.2011
T-110.5121 Mobile Cloud Computing Private Cloud & Assignment 2 19.10.2011 Yrjö Raivio, Koushik Annapureddy, Ramasivakarthik Mallavarapu Aalto University, School of Science Department of Computer Science
OpenNebula 4.6 Design and Installation Guide
OpenNebula 4.6 Design and Installation Guide Release 4.6 OpenNebula Project June 12, 2014 CONTENTS 1 Building your Cloud 1 1.1 An Overview of OpenNebula...................................... 1 1.2 Understanding
Architecture des plates-formes IaaS Etat des lieux et perspectives
Architecture des plates-formes IaaS Etat des lieux et perspectives Frédéric Dang Tran Orange Labs Joint CompatibleOne and OSCi workshop, 7 June 2011 1 Outline > Scope and objectives > User-facing API and
Enabling Technologies for Cloud Computing
3th June 2010 1 st European Summit on the Future Internet Luxembourg Next Generation Data Center Summit Enabling Technologies for Cloud Computing Distributed Systems Architecture Research Group Universidad
Building Clouds with OpenNebula 3.2
OSDC 2012 24 th April. Nürnberg Building Clouds with OpenNebula 3.2 Constantino Vázquez Blanco dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense de Madrid Building
Building a Cloud Computing Platform based on Open Source Software. 10. 18. 2011. Donghoon Kim ( [email protected] ) Yoonbum Huh ( huhbum@kt.
Building a Cloud Computing Platform based on Open Source Software 10. 18. 2011. Donghoon Kim ( [email protected] ) Yoonbum Huh ( [email protected]) Topics I.Open Source SW and Cloud Computing II. About OpenStack
A Comparison and Critique of Eucalyptus, OpenNebula and Nimbus
A Comparison and Critique of Eucalyptus, OpenNebula and Nimbus Peter Sempolinski and Douglas Thain University of Notre Dame Abstract Eucalyptus, OpenNebula and Nimbus are three major open-source cloud-computing
OpenNebula Cloud Platform for Data Center Virtualization
OSDC 2013 Nüremberg, Germany 17-18 April, 2013 OpenNebula Cloud Platform for Data Center Virtualization Constantino Vázquez Blanco OpenNebula Project Engineer @tinova79 OpenNebula Project. Creative Commons
Comparative Study of Eucalyptus, Open Stack and Nimbus
Comparative Study of Eucalyptus, Open Stack and Nimbus Lakshmi D Kurup, Chandni Chandawalla, Zalak Parekh, Kunjita Sampat Abstract- Cloud computing is a Service Oriented Architecture which reduces information
STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)
10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information
OpenNebula 4.12 Design and Installation Guide
OpenNebula 4.12 Design and Installation Guide Release 4.12.1 OpenNebula Project April 08, 2015 CONTENTS 1 Building your Cloud 1 1.1 An Overview of OpenNebula...................................... 1 1.2
Introduction to OpenStack
Introduction to OpenStack Carlo Vallati PostDoc Reseracher Dpt. Information Engineering University of Pisa [email protected] Cloud Computing - Definition Cloud Computing is a term coined to refer
Key Research Challenges in Cloud Computing
3rd EU-Japan Symposium on Future Internet and New Generation Networks Tampere, Finland October 20th, 2010 Key Research Challenges in Cloud Computing Ignacio M. Llorente Head of DSA Research Group Universidad
OpenNebula Cloud Case Studies
ISC Cloud 2010 Frankfurt, Germany October 29th, 2010 OpenNebula Cloud Case Studies Ignacio M. Llorente DSA-Research.org Distributed Systems Architecture Research Group Universidad Complutense de Madrid
Exploiting Private and Hybrid Clouds for Compute Intensive Web Applications
Exploiting Private and Hybrid Clouds for Compute Intensive Web Applications Aleksandar Draganov August 17, 2011 MSc in High Performance Computing The University of Edinburgh Year of Presentation: 2011
OpenStack Introduction. November 4, 2015
OpenStack Introduction November 4, 2015 Application Platforms Undergoing A Major Shift What is OpenStack Open Source Cloud Software Launched by NASA and Rackspace in 2010 Massively scalable Managed by
THE CC1 PROJECT SYSTEM FOR PRIVATE CLOUD COMPUTING
Computer Science 13 (2) 2012 http://dx.doi.org/10.7494/csci.2012.13.2.103 J. Chwastowski R. Grzymkowski M. Kruk M. Nabożny Z. Natkaniec A. Olszewski H. Pa lka Z. Sobocińska T. Sośnicki M. Szostak P. Syktus
VIRTUAL RESOURCE MANAGEMENT FOR DATA INTENSIVE APPLICATIONS IN CLOUD INFRASTRUCTURES
U.P.B. Sci. Bull., Series C, Vol. 76, Iss. 2, 2014 ISSN 2286-3540 VIRTUAL RESOURCE MANAGEMENT FOR DATA INTENSIVE APPLICATIONS IN CLOUD INFRASTRUCTURES Elena Apostol 1, Valentin Cristea 2 Cloud computing
Efficient Cloud Management for Parallel Data Processing In Private Cloud
2012 International Conference on Information and Network Technology (ICINT 2012) IPCSIT vol. 37 (2012) (2012) IACSIT Press, Singapore Efficient Cloud Management for Parallel Data Processing In Private
Infrastructure as a Service (IaaS)
Infrastructure as a Service (IaaS) (ENCS 691K Chapter 4) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ References 1. R. Moreno et al.,
Install Guide for JunosV Wireless LAN Controller
The next-generation Juniper Networks JunosV Wireless LAN Controller is a virtual controller using a cloud-based architecture with physical access points. The current functionality of a physical controller
Private Clouds with Open Source
Private Clouds with Open Source GridKa School 2010 KIT September 7 th 2010 Christian Baun [email protected] http://www.kit.edu Cloud-Computing? Building on compute and storage virtualization, and leveraging
Today. 1. Private Clouds. Private Cloud toolkits. Private Clouds and OpenStack Introduction
Today Private Clouds and OpenStack Introduction 1. Private Clouds 2. Introduction to OpenStack What is OpenStack? Architecture and Main components Demo: basic commands Luis Tomás Department of Computing
VM-Series Firewall Deployment Tech Note PAN-OS 5.0
VM-Series Firewall Deployment Tech Note PAN-OS 5.0 Revision A 2012, Palo Alto Networks, Inc. www.paloaltonetworks.com Contents Overview... 3 Supported Topologies... 3 Prerequisites... 4 Licensing... 5
How To Build A Cloud Stack For A University Project
IES+Perto Project Cloud Computing Instituições de Ensino Superior Mais Perto Higher Education Institutions Closer Universities: Aveiro, Coimbra, Porto José António Sousa (UP), Fernando Correia (UP), Mário
OpenStack Alberto Molina Coballes
OpenStack Alberto Molina Coballes Teacher at IES Gonzalo Nazareno [email protected] @alberto_molina Table of Contents From public to private clouds Open Source Cloud Platforms Why OpenStack? OpenStack
Billing System: An Accounting Solution for the Private Cloud with Eucalyptus
CMSC 190 SPECIAL PROBLEM, INSTITUTE OF COMPUTER SCIENCE 1 Billing System: An Accounting Solution for the Private Cloud with Eucalyptus Regelyn T. Bañacia, Chryss Ann A. Belaguin, Rodolfo N. Duldulao, Jr.
Comparison of Multiple Cloud Frameworks
Comparison of Multiple Cloud Frameworks Gregor von Laszewski, Javier Diaz, Fugang Wang, Geoffrey C. Fox Pervasive Technology Institute, Indiana University Bloomington, IN 47408, U.S.A. e-mail: {laszewski,
Quantum Hyper- V plugin
Quantum Hyper- V plugin Project blueprint Author: Alessandro Pilotti Version: 1.0 Date: 01/10/2012 Hyper-V reintroduction in OpenStack with the Folsom release was primarily focused
Moving SNE to the Cloud
UNIVERSITY OF AMSTERDAM Moving SNE to the Cloud RP1 Report Sudesh Jethoe 30-12-2011 *[27] Summary: In this research the OpenStack framework is used to build a private, public and hybrid cloud for the System
Build Your Own Private Cloud with Ezilla and Haduzilla
Build Your Own Private Cloud with Ezilla and Haduzilla @ 2012-12-16 OSC.JP CLOUD 2012 National Center for High-performance Computing Software Technology Division / Ezilla Team Jazz Yao-Tsung Wang [email protected]
Installation Guide Avi Networks Cloud Application Delivery Platform Integration with Cisco Application Policy Infrastructure
Installation Guide Avi Networks Cloud Application Delivery Platform Integration with Cisco Application Policy Infrastructure August 2015 Table of Contents 1 Introduction... 3 Purpose... 3 Products... 3
A STUDY ON OPEN SOURCE CLOUD COMPUTING PLATFORMS
31 A STUDY ON OPEN SOURCE CLOUD COMPUTING PLATFORMS ABSTRACT PROF. ANITA S. PILLAI*; PROF. L.S. SWASTHIMATHI** *Faculty, Prin. L. N. Welingkar Institute of Management Development & Research, Bengaluru,
Private Distributed Cloud Deployment in a Limited Networking Environment
Private Distributed Cloud Deployment in a Limited Networking Environment Jeffrey Galloway, Susan Vrbsky, and Karl Smith The University of Alabama [email protected], [email protected], [email protected]
2) Xen Hypervisor 3) UEC
5. Implementation Implementation of the trust model requires first preparing a test bed. It is a cloud computing environment that is required as the first step towards the implementation. Various tools
Virtualization and Cloud: Orchestration, Automation, and Security Gaps
Virtualization and Cloud: Orchestration, Automation, and Security Gaps SESSION ID: CSV-R02 Dave Shackleford Founder & Principal Consultant Voodoo Security @daveshackleford Introduction Private cloud implementations
HAWAII TECH TALK SDN. Paul Deakin Field Systems Engineer
HAWAII TECH TALK SDN Paul Deakin Field Systems Engineer SDN What Is It? SDN stand for Software Defined Networking SDN is a fancy term for: Using a controller to tell switches where to send packets SDN
THE EUCALYPTUS OPEN-SOURCE PRIVATE CLOUD
THE EUCALYPTUS OPEN-SOURCE PRIVATE CLOUD By Yohan Wadia ucalyptus is a Linux-based opensource software architecture that implements efficiencyenhancing private and hybrid clouds within an enterprise s
OpenNebula Latest Innovations in Private Cloud Computing
OpenNebula Latest Innovations in Private Cloud Computing Ignacio M. Llorente OpenNebula Project Director OpenNebula Project. Creative Commons Attribution-NonCommercial-ShareAlike License Contents This
An Introduction to Virtualization and Cloud Technologies to Support Grid Computing
New Paradigms: Clouds, Virtualization and Co. EGEE08, Istanbul, September 25, 2008 An Introduction to Virtualization and Cloud Technologies to Support Grid Computing Distributed Systems Architecture Research
CERN Cloud Infrastructure. Cloud Networking
CERN Cloud Infrastructure Cloud Networking Contents Physical datacenter topology Cloud Networking - Use cases - Current implementation (Nova network) - Migration to Neutron 7/16/2015 2 Physical network
Architectural Comparison and Implementation of Cloud Tools and Technologies
Architectural Comparison and Implementation of Cloud Tools and Technologies N. Nagar and U. Suman Abstract Service oriented architecture is a collection of services that communicate with each other to
Mirantis www.mirantis.com/training
TM Mirantis www.mirantis.com/training Goals Understand OpenStack purpose and use cases Understand OpenStack ecosystem o history o projects Understand OpenStack architecture o logical architecture o components
Deploying Business Virtual Appliances on Open Source Cloud Computing
International Journal of Computer Science and Telecommunications [Volume 3, Issue 4, April 2012] 26 ISSN 2047-3338 Deploying Business Virtual Appliances on Open Source Cloud Computing Tran Van Lang 1 and
Cloud Platform Comparison: CloudStack, Eucalyptus, vcloud Director and OpenStack
Cloud Platform Comparison: CloudStack, Eucalyptus, vcloud Director and OpenStack This vendor-independent research contains a product-by-product comparison of the most popular cloud platforms (along with
What We Can Do in the Cloud (1) -Tutorial for Cloud Computing Course- Mikael Fernandus Simalango WISE Research Lab Ajou University, South Korea
What We Can Do in the Cloud (1) -Tutorial for Cloud Computing Course- Mikael Fernandus Simalango WISE Research Lab Ajou University, South Korea Overview qtoday s highlight:» Cloud Services and Cloud Management
INTRODUCTION TO CLOUD MANAGEMENT
CONFIGURING AND MANAGING A PRIVATE CLOUD WITH ORACLE ENTERPRISE MANAGER 12C Kai Yu, Dell Inc. INTRODUCTION TO CLOUD MANAGEMENT Oracle cloud supports several types of resource service models: Infrastructure
SURFsara HPC Cloud Workshop
SURFsara HPC Cloud Workshop doc.hpccloud.surfsara.nl UvA workshop 2016-01-25 UvA HPC Course Jan 2016 Anatoli Danezi, Markus van Dijk [email protected] Agenda Introduction and Overview (current
Openstack. Cloud computing with Openstack. Saverio Proto [email protected]
Openstack Cloud computing with Openstack Saverio Proto [email protected] Lugano, 23/03/2016 Agenda SWITCH role in Openstack and Cloud Computing What is Virtualization? Why is Cloud computing more
Aerohive Networks Inc. Free Bonjour Gateway FAQ
Aerohive Networks Inc. Free Bonjour Gateway FAQ 1. About the Product... 1 2. Installation... 2 3. Management... 3 4. Troubleshooting... 4 1. About the Product What is the Aerohive s Free Bonjour Gateway?
