Apache Libcloud on Openstack

Size: px
Start display at page:

Download "Apache Libcloud on Openstack"

Transcription

1 GC3: Grid Computing Competence Center Large Scale Computing Infrastructures Lab 5: libcloud Sergio Maffioletti GC3: Grid Computing Competence Center, University of Zurich November 15, 2012

2 What will we cover today? 1. Basic of Libcloud 2. Compute and Storage APIs 3. Libcloud in action on Openstack and on AWS

3 Apache Libcloud a unified interface to the cloud Why Libcloud? The choice of Libcloud is purely pragmatical: it s written in python and offers standardized interface towards a large collection of cloud stacks. Many other libraries are available.

4 Before we get started For practical assignments and exercises we will use resources from AWS and FutureGrid If possible we will run the exercises from our individual laptop (client) Recommended to create a dedicated virtualenv AWS: you should have received credential information individually FutureGrid: you should all have registered on the

5 Before we get started For practical assignments and exercises we will use resources from AWS and FutureGrid If possible we will run the exercises from our individual laptop (client) Recommended to create a dedicated virtualenv AWS: you should have received credential information individually FutureGrid: you should all have registered on the

6 Before we get started For practical assignments and exercises we will use resources from AWS and FutureGrid If possible we will run the exercises from our individual laptop (client) Recommended to create a dedicated virtualenv AWS: you should have received credential information individually FutureGrid: you should all have registered on the

7 Before we get started For practical assignments and exercises we will use resources from AWS and FutureGrid If possible we will run the exercises from our individual laptop (client) Recommended to create a dedicated virtualenv AWS: you should have received credential information individually FutureGrid: you should all have registered on the

8 Libcloud setup $ virtualenv --no-site-packages virtualenvs lsci2012 $ source virtualenvs lsci2012/bin/activate $ easy install apache-libcloud

9 FutureGrid setup You need to copy credential information from FutureGrid login node $ scp -r <futuregrid username>@india.futuregrid.org:openstack/ virtualenvs lsci2012/etc

10 What is Libcloud? Libcloud is a Python library which abstracts differences between cloud provider APIs and allows users to manage their cloud resources (servers, storage, load-balancers) using a unified and easy to use interface. 1 1 Tomaz

11 Why Libcloud? Different APIs Different response formats (XML, JSON, text) Different authentication methods

12 Libcloud APIs Two main packages/utilities that we will use: Compute Storage

13 libcloud: Compute Compute component is the oldest one and allows you to manage cloud and virtual servers offered by different providers Provider: a cloud vendor Driver: encapsulate common provider operations Node represents a running virtual appliance.

14 libcloud: Compute NodeSize represents node hardware configuration. Usually this is amount of the available RAM, bandwidth, CPU speed and disk size. NodeImage represents an operating system image. NodeLocation represents a server physical location. NodeState represents a node state. Standard states are: running, rebooting, terminated, pending and unknown.

15 Compute: APIs list images() list sizes() list locations() list nodes() create node() destroy node() reboot node() deploy node() ex * - provider specific functionality

16 Run the following example from libcloud.compute.types import Provider as ComputeProvider from libcloud.compute.providers import get_driver as get_compute_driver driver = get compute_driver(computeprovider.ec2) help(driver.create node)

17 Compute: AWS example import os from libcloud.compute.types import Provider as ComputeProvider from libcloud.compute.providers import get_driver as get_compute_driver # Read access details from your <SURNAME>.cred file AWSAccessKeyId = "" AWSSecretKey = "" driver = get_compute_driver(computeprovider.ec2) ec2_compute = driver(awsaccesskeyid, AWSSecretKey, secure=false) images = ec2_compute.list_images() nodes = ec2_compute.list_nodes() sizes = ec2_compute.list_sizes()

18 Compute: and the OpenStack example # Read access details from $HOME/virtualenvs lsci2012/etc/novarc # Use EC2_URL for getting information for FG_HOST and FG_PORT EC2_ACCESS_KEY = "" EC2_SECRET_KEY = "" FG_HOST = "" FG_PORT = 0 FG_SERVICE_PATH = "/services/cloud" driver = get_compute_driver(computeprovider.eucalyptus) fg_compute = driver(ec2_access_key,ec2_secret_key, secure=false, host=fg_host, port=fg_port, path=fg_service_path) images = fg_compute.list_images() nodes = fg_compute.list_nodes() sizes = fg_compute.list_sizes()

19 an Example of an horizonal library Libcloud is an horizontal library: it encompassed many features supported by many providers. But does not guarantees that all providers support all features. Try this: fg_compute.list_locations()

20 Prepare keypairs In many EC2-compliant cloud stacks, for the instance to be actually usable via ssh, you also need to pass the ex keyname parameter and set it to a keypair name that exists in your account for that region. Libcloud provides a way to create or import a keypair programmatically.

21 Prepare keypairs Generate RSA keypair (e.g. ssh-keygen) keyname = lsci2012_<surname> ec2_compute.ex_import_keypair(keyname, /home/sergio/.ssh/lsci2012_rsa.pub ) fg_compute.ex_import_keypair(keyname, /home/sergio/.ssh/lsci2012_rsa.pub ) ec2_compute.ex_describe_keypairs(keyname) fg_compute.ex_describe_keypairs(keyname)

22 Compute: Inspect node details # Select NodeImage to start... ec2_image <NodeImage: id=ami-90a21cf9, name= /lsci2012_mhc-coev_base, driver=amazon EC2 (us-east-1)...> fg_image <NodeImage: id=ami d, name=lsci2012/lsci2012_mhc-coev_ qcow2.manifest.xml, driver=eucalyptus...> ec2_size <NodeSize: id=m1.small, name=small Instance, ram=1740 disk=160 bandwidth=none price=0.085 driver=amazon EC2 (us-east-1)...> ec2_location <ExEC2AvailabilityZone: name=us-east-1a, zone_state=available, region_name=us-east-1>

23 Compute: Start nodes running_nodes = [] node = ec2_compute.create_node(name= lsci2012, image=ec2_image, size=ec2_size, location=ec2_location, ex_keyname=keyname, ex_securitygroup="lsci2012", ) running_nodes.append(node) node = fg_compute.create_node(name= lsci2012, image=fg_image, size=fg_size, ex_keyname=keyname ) running_nodes.append(node)

24 Inspecting running nodes status At the moment is not possible to update node s status directly from node object. Need to recreate node list from NodeDriver ec2_nodes = ec2_compute.list_nodes() fg_nodes = fg_compute.list_nodes() node = fg_nodes[0] node <Node: uuid=dc8a7b4c8c438381a543894b033644adc84bc26d, name=i ca, state=0, public_ip=[ ], provider=eucalyptus...> node.driver.node_state_map terminated : 2, running : 0, shutting-down : 2, pending : 3

25 Accessing running node Once node is running and a public ip has been assigned, we can log-in using defined keypair # ssh -i /.ssh/lsci2012 ubuntu@[node s public IP]

26 Exercise 01a 1. Start an AWS image using the AMI: ami-90a21cf9 (It is an LSCI2012 image containing the Matlab binary from MHC COEV project) 2. Wait untill the node has booted and all services started 3. Check image s public IP address 4. Log via SSH 5. start interactively MHC COEV program $. /share/apps/mhc_coev/mhc_coev $ $MHC COEV

27 Exercise 01b 1. Start the FutureGrid image using the AMI: ami d (It is an LSCI2012 image containing the Matlab binary from MHC COEV project) 2. Wait untill the node has booted and all services started 3. Check image s public IP address 4. Log via SSH 5. start interactively MHC COEV program $. /apps/mhc_coev/mhc_coev $ $MHC COEV Note: on FutureGrid ami, you probably need to run as root

28 Bootstrapping nodes with user data Instances can automatically run scripts passed via user data. libcloud driver has extra ex userdata parameter for create node user data needs to be passed as content userdata content = open(userdata_file).read() node = ec2compute.create node(name="lsci2012_lab05", image=ec2_image, size=ec2_size, location=location, ex keyname=keyname, ex_securitygroup="lsci2012", ex userdata=userdata content )

29 Exercise 02 Start same AMI as Exercise 01 (both variants a and b) passing MHC COEV invocation command as part of ex userdata

30 Storage Storage API allows you to manage cloud storage and services such as Amazon S3, Rackspace CloudFiles, Google Storage and others.

31 Storage Object represents an object or so called BLOB. Container represents a container which can contain multiple objects. You can think of it as a folder on a file system. Difference between container and a folder on file system is that containers cannot be nested. Some APIs also call it a Bucket.

32 Storage list containers() list container objects() get container() get object() download object() download objects as stream() upload object() upload object via stream() delete object() delete container()

33 Storage from libcloud.storage.providers import get_driver as get_storage_driver from libcloud.storage.types import Provider as StorageProvider s3_driver = get_storage_driver(storageprovider.s3) s3_storage = s3_driver(awsaccesskeyid, AWSSecretKey, secure=false) # Create a container my container = s3 storage.create_container( lsci2012_<surname> ) <Container: name=lsci2012, provider=amazon S3 (standard)> # Retrieve container object from StorageDriver container = s3 storage.list_containers()[0] [<Container: name=lsci2012, provider=amazon S3 (standard)>]

34 Storage # Upload data to selected container my container.upload_object( lsci2012_lab05_<surname>.txt, object_name= lab05_<surname>.txt ) my container.list_objects() [<Object: name=lsci2012_lab05_maffioletti.txt, size= , hash=ab0f ffe1b249d47522af5d, provider=amazon S3 (standard)...>]

35 Storage >>> obj = my_container.list_objects()[0] >>> obj <Object: name=lsci2012_lab05_maffioletti.txt, size=31, hash=e320fe515ef6f7c5c1cfb346804bc062, provider=amazon S3 (standard)...> obj.delete ()

36 Exercise 3 Create 6 input files each of them containing 1 different sequence of parameters Upload the files in S3 bucket using your container (e.g. lsci2012 maffioletti/mhc coev input01 )

37 S3Curl: S3 Authentication Tool for Curl Curl is a popular command-line tool for interacting with HTTP services. S3Curl is a Perl script that calculates the proper signature, then calls Curl with the appropriate arguments.

38 S3Curl: S3 Authentication Tool for Curl Deploy S3curl on your laptop: s3-curl.zip Note: it requires HMAC SHA1

39 Authentication setup Crate.s3curl file using id and key from respective AWS and FutureGrid access details %awssecretaccesskeys = ( # personal account personal => { id =>, key =>, }, );

40 Deploy S3Curl on FutureGrid/AWS node Log on your running instance via ssh. Then as root: aptitude update aptitude install unzip unzip s3-curl.zip chmod +x s3-curl/s3curl.pl aptitude install libdigest-hmac-perl

41 Exercise 4 1. Start same AMI as in Exercise 1 2. Upload.s3curl file 3. Install S3Curl 4. Try to access S3 bucket lsci2012 SURNAME from there (list content)

42 Exercise 5 1. Same as in exercise 4 but done through user data 2. Remember: user data script is executed as root

43 Exercise 6 Start same AMI as Exercise 1, then have the AMI automatically: 1. Download 1 input file from S3 2. Start MHC COEV using data from downloaded input file

44 Exercise 7: put all together 1. Start 6 images each of them with a reference to one of the input files 2. Write results back to S3 bucket Results files are: full workspace * latest work.mat 3. Use container with your SURNAME as placeholder Note: Do *NOT* transfer all.mat files back.

45 Readings providers.html

Managing the cloud with Libcloud. Tomaz Muraus tomaz@apache.org June 22, 2011

Managing the cloud with Libcloud. Tomaz Muraus tomaz@apache.org June 22, 2011 Managing the cloud with Libcloud Tomaz Muraus tomaz@apache.org June 22, 2011 Agenda Who am I What is Libcloud? Why? Libcloud history Libcloud APIs Agenda Compute API Storage API Load Balancer API Plans

More information

Zend Server Amazon AMI Quick Start Guide

Zend Server Amazon AMI Quick Start Guide Zend Server Amazon AMI Quick Start Guide By Zend Technologies www.zend.com Disclaimer This is the Quick Start Guide for The Zend Server Zend Server Amazon Machine Image The information in this document

More information

Automated Configuration of Open Stack Instances at Boot Time

Automated Configuration of Open Stack Instances at Boot Time Automated Configuration of Open Stack Instances at Boot Time N Praveen 1, Dr. M.N.Jayaram 2 Post Graduate Student 1, Associate Professor 2, EC Department, SJCE, Mysuru, India Abstract: Cloud Computing

More information

MANAGE YOUR AMAZON AWS ASSETS USING BOTO

MANAGE YOUR AMAZON AWS ASSETS USING BOTO Who am I? Chirag Jog CTO, Clogeny Technologies - Cloud Computing Experts Python developer Open Source Contributor Linux Test Project, Linux Kernel, boto etc Innovation Execution Solution Delivered MANAGE

More information

Building a Private Cloud Cloud Infrastructure Using Opensource

Building a Private Cloud Cloud Infrastructure Using Opensource Cloud Infrastructure Using Opensource with Ubuntu Server 10.04 Enterprise Cloud (Eucalyptus) OSCON (Note: Special thanks to Jim Beasley, my lead Cloud Ninja, for putting this document together!) Introduction

More information

AdWhirl Open Source Server Setup Instructions

AdWhirl Open Source Server Setup Instructions AdWhirl Open Source Server Setup Instructions 11/09 AdWhirl Server Setup Instructions The server runs in Amazon s web cloud. To set up the server, you need an Amazon Web Services (AWS) account and the

More information

FREE computing using Amazon EC2

FREE computing using Amazon EC2 FREE computing using Amazon EC2 Seong-Hwan Jun 1 1 Department of Statistics Univ of British Columbia Nov 1st, 2012 / Student seminar Outline Basics of servers Amazon EC2 Setup R on an EC2 instance Stat

More information

Background on Elastic Compute Cloud (EC2) AMI s to choose from including servers hosted on different Linux distros

Background on Elastic Compute Cloud (EC2) AMI s to choose from including servers hosted on different Linux distros David Moses January 2014 Paper on Cloud Computing I Background on Tools and Technologies in Amazon Web Services (AWS) In this paper I will highlight the technologies from the AWS cloud which enable you

More information

HDFS Cluster Installation Automation for TupleWare

HDFS Cluster Installation Automation for TupleWare HDFS Cluster Installation Automation for TupleWare Xinyi Lu Department of Computer Science Brown University Providence, RI 02912 xinyi_lu@brown.edu March 26, 2014 Abstract TupleWare[1] is a C++ Framework

More information

Introduction to Openstack, an Open Cloud Computing Platform. Libre Software Meeting

Introduction to Openstack, an Open Cloud Computing Platform. Libre Software Meeting Introduction to Openstack, an Open Cloud Computing Platform Libre Software Meeting 10 July 2012 David Butler BBC Research & Development david.butler@rd.bbc.co.uk Introduction: Libre Software Meeting 2012

More information

Deployment of Private, Hybrid & Public Clouds with OpenNebula

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

More information

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca. OpenTOSCA Release v1.1 Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.de NOTICE This work has been supported by the Federal Ministry of Economics

More information

Infrastructure Clouds for Science and Education: Platform Tools

Infrastructure Clouds for Science and Education: Platform Tools Infrastructure Clouds for Science and Education: Platform Tools Kate Keahey, Renato J. Figueiredo, John Bresnahan, Mike Wilde, David LaBissoniere Argonne National Laboratory Computation Institute, University

More information

Cloud Computing. AWS a practical example. Hugo Pérez UPC. Mayo 2012

Cloud Computing. AWS a practical example. Hugo Pérez UPC. Mayo 2012 Cloud Computing AWS a practical example Mayo 2012 Hugo Pérez UPC -2- Index Introduction Infraestructure Development and Results Conclusions Introduction In order to know deeper about AWS services, mapreduce

More information

Cloud Computing. Adam Barker

Cloud Computing. Adam Barker Cloud Computing Adam Barker 1 Overview Introduction to Cloud computing Enabling technologies Different types of cloud: IaaS, PaaS and SaaS Cloud terminology Interacting with a cloud: management consoles

More information

How To Image A Single Vm For Forensic Analysis On Vmwarehouse.Com

How To Image A Single Vm For Forensic Analysis On Vmwarehouse.Com MCP+I, MCSE, CCSA, CCSE, CISSP-ISSAP, CISM, CISA, CIFI, CCE, ACE, GCFE, GCFA, GSEC, VCP4/5, vexpert Senior SANS Instructor - phenry@sans.org 1 A Lot To Cover In ½ An Hour We simply can not cover all cloud

More information

MATLAB Distributed Computing Server Cloud Center User s Guide

MATLAB Distributed Computing Server Cloud Center User s Guide MATLAB Distributed Computing Server Cloud Center User s Guide How to Contact MathWorks Latest news: Sales and services: User community: Technical support: www.mathworks.com www.mathworks.com/sales_and_services

More information

Last time. Today. IaaS Providers. Amazon Web Services, overview

Last time. Today. IaaS Providers. Amazon Web Services, overview Last time General overview, motivation, expected outcomes, other formalities, etc. Please register for course Online (if possible), or talk to Yvonne@CS Course evaluation forgotten Please assign one volunteer

More information

Online Backup Guide for the Amazon Cloud: How to Setup your Online Backup Service using Vembu StoreGrid Backup Virtual Appliance on the Amazon Cloud

Online Backup Guide for the Amazon Cloud: How to Setup your Online Backup Service using Vembu StoreGrid Backup Virtual Appliance on the Amazon Cloud Online Backup Guide for the Amazon Cloud: How to Setup your Online Backup Service using Vembu StoreGrid Backup Virtual Appliance on the Amazon Cloud Here is a step-by-step set of instructions to get your

More information

Project Documentation

Project Documentation Project Documentation Class: ISYS 567 Internship Instructor: Prof. Verma Students: Brandon Lai Pascal Schuele 1/20 Table of Contents 1.) Introduction to Cloud Computing... 3 2.) Public vs. Private Cloud...

More information

Alfresco Enterprise on AWS: Reference Architecture

Alfresco Enterprise on AWS: Reference Architecture Alfresco Enterprise on AWS: Reference Architecture October 2013 (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 13 Abstract Amazon Web Services (AWS)

More information

Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC

Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC Prepared by: Peter Bats Commissioning Editor: Linda Belliveau Version: 5.0 Last Updated:

More information

Automated CPanel Backup Script. for home directory backup, remote FTP backup and Amazon S3 backup

Automated CPanel Backup Script. for home directory backup, remote FTP backup and Amazon S3 backup Automated CPanel Backup Script for home directory backup, remote FTP backup and Amazon S3 backup Version : 1.0 Date : August 10, 2011 Developed by : Dody Rachmat Wicaksono (support@cpanelbackupscript.com)

More information

How To Install Openstack On Ubuntu 14.04 (Amd64)

How To Install Openstack On Ubuntu 14.04 (Amd64) Getting Started with HP Helion OpenStack Using the Virtual Cloud Installation Method 1 What is OpenStack Cloud Software? A series of interrelated projects that control pools of compute, storage, and networking

More information

Plug-and-play Virtual Appliance Clusters Running Hadoop. Dr. Renato Figueiredo ACIS Lab - University of Florida

Plug-and-play Virtual Appliance Clusters Running Hadoop. Dr. Renato Figueiredo ACIS Lab - University of Florida Plug-and-play Virtual Appliance Clusters Running Hadoop Dr. Renato Figueiredo ACIS Lab - University of Florida Advanced Computing and Information Systems laboratory Introduction You have so far learned

More information

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform http://www.ulticloud.com http://www.openstack.org Introduction to OpenStack 1. What OpenStack is

More information

Every Silver Lining Has a Vault in the Cloud

Every Silver Lining Has a Vault in the Cloud Irvin Hayes Jr. Autodesk, Inc. PL6015-P Don t worry about acquiring hardware and additional personnel in order to manage your Vault software installation. Learn how to spin up a hosted server instance

More information

Understanding Infrastructure as Code. By Michael Wittig and Andreas Wittig

Understanding Infrastructure as Code. By Michael Wittig and Andreas Wittig Understanding Infrastructure as Code By Michael Wittig and Andreas Wittig In this article, excerpted from Amazon Web Service in Action, we will explain Infrastructure as Code. Infrastructure as Code describes

More information

Privileged Cloud Storage By MaaS JuJu

Privileged Cloud Storage By MaaS JuJu Privileged Cloud Storage By MaaS JuJu Sarita Shankar Pol 1, S. V. Gumaste 2 1 Computer Engineering, Sharadchandra College of Engineering, Otur (Pune), India 2 Professor, Computer Engineering, Sharadchandra

More information

19.10.11. Amazon Elastic Beanstalk

19.10.11. Amazon Elastic Beanstalk 19.10.11 Amazon Elastic Beanstalk A Short History of AWS Amazon started as an ECommerce startup Original architecture was restructured to be more scalable and easier to maintain Competitive pressure for

More information

Ansible in Depth WHITEPAPER. ansible.com +1 800-825-0212

Ansible in Depth WHITEPAPER. ansible.com +1 800-825-0212 +1 800-825-0212 WHITEPAPER Ansible in Depth Get started with ANSIBLE now: /get-started-with-ansible or contact us for more information: info@ INTRODUCTION Ansible is an open source IT configuration management,

More information

Deploying Business Virtual Appliances on Open Source Cloud Computing

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

More information

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida Amazon Web Services Primer William Strickland COP 6938 Fall 2012 University of Central Florida AWS Overview Amazon Web Services (AWS) is a collection of varying remote computing provided by Amazon.com.

More information

A Quick Guide to use Cloud Computing through Amazon s Platform

A Quick Guide to use Cloud Computing through Amazon s Platform A Quick Guide to use Cloud Computing through Amazon s Platform Farhat N. Memon, Anne M. Owen and Andrew P. Harrison Departments of Mathematical Sciences and Biological Sciences, University of Essex, Wivenhoe

More information

MATLAB on EC2 Instructions Guide

MATLAB on EC2 Instructions Guide MATLAB on EC2 Instructions Guide Contents Welcome to MATLAB on EC2...3 What You Need to Do...3 Requirements...3 1. MathWorks Account...4 1.1. Create a MathWorks Account...4 1.2. Associate License...4 2.

More information

Cloud Computing #8 - Datacenter OS. Johan Eker

Cloud Computing #8 - Datacenter OS. Johan Eker Cloud Computing #8 - Datacenter OS Johan Eker Outline What is a Datacenter OS? OpenStack Kubernetes Resource Management What is an OS? What is an OS? Manage hardware resources such as CPU, RAM, disk, I/O,

More information

AWS and Cisco OpenStack Private Cloud API Compatibility

AWS and Cisco OpenStack Private Cloud API Compatibility Tutorial AWS and Cisco OpenStack Private Cloud API Compatibility API compatibility is important to customers who are currently using AWS but are interested in either interoperating with private cloud resources

More information

Chapter 9 PUBLIC CLOUD LABORATORY. Sucha Smanchat, PhD. Faculty of Information Technology. King Mongkut s University of Technology North Bangkok

Chapter 9 PUBLIC CLOUD LABORATORY. Sucha Smanchat, PhD. Faculty of Information Technology. King Mongkut s University of Technology North Bangkok CLOUD COMPUTING PRACTICE 82 Chapter 9 PUBLIC CLOUD LABORATORY Hand on laboratory based on AWS Sucha Smanchat, PhD Faculty of Information Technology King Mongkut s University of Technology North Bangkok

More information

Amazon Web Services Demo Tech Exchange. Slides: http://goo.gl/mwz0es. ssw@iu.edu

Amazon Web Services Demo Tech Exchange. Slides: http://goo.gl/mwz0es. ssw@iu.edu Amazon Web Services Demo Tech Exchange Slides: http://goo.gl/mwz0es ssw@iu.edu $ dig +short emergency.iu.edu emergency.iu.edu.s3-website-us-east-1.amazonaws.com. s3-website-us-east-1.amazonaws.com. 54.231.14.220

More information

ST 810, Advanced computing

ST 810, Advanced computing ST 810, Advanced computing Eric B. Laber & Hua Zhou Department of Statistics, North Carolina State University January 30, 2013 Supercomputers are expensive. Eric B. Laber, 2011, while browsing the internet.

More information

Investor Newsletter. Storage Made Easy Cloud Appliance High Availability Options WHAT IS THE CLOUD APPLIANCE?

Investor Newsletter. Storage Made Easy Cloud Appliance High Availability Options WHAT IS THE CLOUD APPLIANCE? Investor Newsletter Storage Made Easy Cloud Appliance High Availability Options WHAT IS THE CLOUD APPLIANCE? The SME Cloud Appliance is a software platform that enables companies to enhance their existing

More information

FileCruiser Backup & Restoring Guide

FileCruiser Backup & Restoring Guide FileCruiser Backup & Restoring Guide Version: 0.3 FileCruiser Model: VA2600/VR2600 with SR1 Date: JAN 27, 2015 1 Index Index... 2 Introduction... 3 Backup Requirements... 6 Backup Set up... 7 Backup the

More information

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3 NOC PS manual Copyright Maxnet 2009 2015 All rights reserved Page 1/45 Table of contents Installation...3 System requirements...3 Network setup...5 Installation under Vmware Vsphere...8 Installation under

More information

SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment

SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment Best Practices Guide www.suse.com SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment Written by B1 Systems GmbH Table of Contents Introduction...3 Use Case Overview...3 Hardware

More information

SUSE Cloud Installation: Best Practices Using a SMT, Xen and Ceph Storage Environment

SUSE Cloud Installation: Best Practices Using a SMT, Xen and Ceph Storage Environment Best Practices Guide www.suse.com SUSE Cloud Installation: Best Practices Using a SMT, Xen and Ceph Storage Environment Written by B1 Systems GmbH Table of Contents Introduction...3 Use Case Overview...3

More information

Deltacloud. Michal Fojtik mfojtik@redhat.com. Cloud Computing. Software Engineer Red Hat, Inc

Deltacloud. Michal Fojtik mfojtik@redhat.com. Cloud Computing. Software Engineer Red Hat, Inc Deltacloud Cloud Computing mfojtik@redhat.com Software Engineer Red Hat, Inc 1 Agenda Brief introduction to Cloud Computing What is it? What is it good for? Cloud providers API Deltacloud API 2 3 What

More information

If you do NOT use applications based on Amazon Web Services raise your hand.

If you do NOT use applications based on Amazon Web Services raise your hand. If you do NOT use applications based on Amazon Web Services raise your hand. If you use NetFlix, lower your hand. Use reddit, lower your hand. Use Scribd, lower your hand. Use Spotify, lower your hand.

More information

Using The Hortonworks Virtual Sandbox

Using The Hortonworks Virtual Sandbox Using The Hortonworks Virtual Sandbox Powered By Apache Hadoop This work by Hortonworks, Inc. is licensed under a Creative Commons Attribution- ShareAlike3.0 Unported License. Legal Notice Copyright 2012

More information

CloudFTP: A free Storage Cloud

CloudFTP: A free Storage Cloud CloudFTP: A free Storage Cloud ABSTRACT: The cloud computing is growing rapidly for it offers on-demand computing power and capacity. The power of cloud enables dynamic scalability of applications facing

More information

Amazon Web Services EC2 & S3

Amazon Web Services EC2 & S3 2010 Amazon Web Services EC2 & S3 John Jonas FireAlt 3/2/2010 Table of Contents Introduction Part 1: Amazon EC2 What is an Amazon EC2? Services Highlights Other Information Part 2: Amazon Instances What

More information

SUSE Cloud. www.suse.com. OpenStack End User Guide. February 20, 2015

SUSE Cloud. www.suse.com. OpenStack End User Guide. February 20, 2015 SUSE Cloud 5 www.suse.com February 20, 2015 OpenStack End User Guide OpenStack End User Guide Abstract OpenStack is an open-source cloud computing platform for public and private clouds. A series of interrelated

More information

Pasquale Vitale Engineering Ingegneria Informatica. FIWARE LAB Cloud Portal

Pasquale Vitale Engineering Ingegneria Informatica. FIWARE LAB Cloud Portal Pasquale Vitale Engineering Ingegneria Informatica FIWARE LAB Cloud Portal Summary FIWARE LAB Cloud Hosting Deploying your first VM Deploying components for your application Object Storage API Reference

More information

Application Whitelisting - Extend your Security Arsenal? Mike Baldi Cyber Security Architect Honeywell Process Solutions

Application Whitelisting - Extend your Security Arsenal? Mike Baldi Cyber Security Architect Honeywell Process Solutions Application Whitelisting - Extend your Security Arsenal? Mike Baldi Cyber Security Architect Honeywell Process Solutions 1 Agenda What is Application Whitelisting (AWL) Protection provided by Application

More information

System Administrators, engineers and consultants who will plan and manage OpenStack-based environments.

System Administrators, engineers and consultants who will plan and manage OpenStack-based environments. OpenStack Foundations (HP-H6C68) Course Overview This three day course assists administrators and users to configure, manage, and use the OpenStack cloud services platform. An architectural overview ensures

More information

Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0

Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0 Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0 Contents Introduction... 3 Endpoint deployment... 3 Endpoint minimal hardware requirements:... 3 Endpoint software requirements:...

More information

CSE543 Computer and Network Security Module: Cloud Computing

CSE543 Computer and Network Security Module: Cloud Computing CSE543 Computer and Network Security Module: Computing Professor Trent Jaeger 1 Computing Is Here Systems and Internet Infrastructure Security (SIIS) Laboratory 2 Computing Is Here Systems and Internet

More information

Network Virtualization and Data Center Networks

Network Virtualization and Data Center Networks Network Virtualization and Data Center Networks 263-3825-00 Qin Yin Fall Semester 2013 1 / 18 News We have a discussion list: virnet@lists.inf.ethz.ch 2 / 18 Assignment 2 - Cloud computing Goals Gain experience

More information

Using and Contributing Virtual Machines to VM Depot

Using and Contributing Virtual Machines to VM Depot Using and Contributing Virtual Machines to VM Depot Introduction VM Depot is a library of open source virtual machine images that members of the online community have contributed. You can browse the library

More information

Deploying Cloudera CDH (Cloudera Distribution Including Apache Hadoop) with Emulex OneConnect OCe14000 Network Adapters

Deploying Cloudera CDH (Cloudera Distribution Including Apache Hadoop) with Emulex OneConnect OCe14000 Network Adapters Deploying Cloudera CDH (Cloudera Distribution Including Apache Hadoop) with Emulex OneConnect OCe14000 Network Adapters Table of Contents Introduction... Hardware requirements... Recommended Hadoop cluster

More information

Web Application Firewall

Web Application Firewall Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks

More information

Survey of the Operating Landscape Investigating Incidents in the Cloud

Survey of the Operating Landscape Investigating Incidents in the Cloud Survey of the Operating Landscape Investigating Incidents in the Cloud SESSION ID: CSV-T09 Paul A. Henry Security & Forensics Analyst vnet Security, LLC @phenrycissp Jacob Williams Chief Scientist CSRgroup

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

Model-driven Performance Estimation, Deployment, and Resource Management for Cloud-hosted Services

Model-driven Performance Estimation, Deployment, and Resource Management for Cloud-hosted Services DSM Workshop 2013 Model-driven Performance Estimation, Deployment, and Resource Management for Cloud-hosted Services Faruk Caglar, Kyoungho An, Shashank Shekhar, and Aniruddha Gokhale Vanderbilt University,

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

Investigating Private Cloud Storage Deployment using Cumulus, Walrus, and OpenStack/Swift

Investigating Private Cloud Storage Deployment using Cumulus, Walrus, and OpenStack/Swift Investigating Private Cloud Storage Deployment using Cumulus, Walrus, and OpenStack/Swift Prakashan Korambath Institute for Digital Research and Education (IDRE) 5308 Math Sciences University of California,

More information

VX 9000E WiNG Express Manager INSTALLATION GUIDE

VX 9000E WiNG Express Manager INSTALLATION GUIDE VX 9000E WiNG Express Manager INSTALLATION GUIDE 2 VX 9000E WiNG Express Manager Service Information If you have a problem with your equipment, contact support for your region. Support and issue resolution

More information

Building Clouds with OpenNebula 3.2

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

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

What is Cloud Computing? Why call it Cloud Computing?

What is Cloud Computing? Why call it Cloud Computing? What is Cloud Computing? Why call it Cloud Computing? 1 Cloud Computing Key Properties Advantages Shift from CAPEX to OPEX Lowers barrier for starting a new business/project Can be cheaper even in the

More information

Amazon Web Services Building in the Cloud

Amazon Web Services Building in the Cloud Amazon Web Services Building in the Cloud Amazon has Three Parts AWS Principles Easy to use Fast Elastic Highly available Secure Pay as you go The Utility Model AWS Bandwidth Growth AWS Storage Growth

More information

PaaS solutions evaluation

PaaS solutions evaluation PaaS solutions evaluation August 2014 Author: Sofia Danko Supervisors: Giacomo Tenaglia Artur Wiecek CERN openlab Summer Student Report 2014 Project Specification OpenShift Origin is an open source software

More information

Tcl and Cloud Computing Automation

Tcl and Cloud Computing Automation Tcl and Cloud Computing Automation Tclcloud, Tclwinrm & Cato Patrick Dunnigan Chief Architect, Cloud Sidekick cloudsidekick.com @CloudSidekick Tclcloud - Tcl api for AWS public cloud / Ecualyptus private

More information

Amazon AWS Security Basics

Amazon AWS Security Basics Amazon AWS Security Basics Escalating privileges from EC2 Andrés Riancho TagCube CTO BlackHat Webcasts Agenda Privilege escalation: Classic vs. Cloud The hacker s perspective AWS credentials and instance

More information

Using SUSE Studio to Build and Deploy Applications on Amazon EC2. Guide. Solution Guide Cloud Computing. www.suse.com

Using SUSE Studio to Build and Deploy Applications on Amazon EC2. Guide. Solution Guide Cloud Computing. www.suse.com Using SUSE Studio to Build and Deploy Applications on Amazon EC2 Guide Solution Guide Cloud Computing Cloud Computing Solution Guide Using SUSE Studio to Build and Deploy Applications on Amazon EC2 Quickly

More information

MULTIPLE PLATFORM IT SERVICE DEPLOYMENT MASTER OF INFORMATION TECHNOLOGY MANAGEMENT. In Computer Science and Engineer MR.

MULTIPLE PLATFORM IT SERVICE DEPLOYMENT MASTER OF INFORMATION TECHNOLOGY MANAGEMENT. In Computer Science and Engineer MR. MULTIPLE PLATFORM IT SERVICE DEPLOYMENT In Partial Fulfillment of the Requirements of the Degree of MASTER OF INFORMATION TECHNOLOGY MANAGEMENT In Computer Science and Engineer By MR. NGUYEN HOANG DAC

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2 JAMF Software Server Installation and Configuration Guide for OS X Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

Chef Integration. Chef Integration. with IDERA s Uptime Cloud Monitor. Simple, Smart, Seamless May 10, 2013 IDERA

Chef Integration. Chef Integration. with IDERA s Uptime Cloud Monitor. Simple, Smart, Seamless May 10, 2013 IDERA Chef Integration Chef Integration with IDERA s Uptime Cloud Monitor Simple, Smart, Seamless May 10, 2013 IDERA 1 Contents Preface Part I Chef + Uptime Cloud Monitor Infographic Part II Integrating Chef

More information

RSA Authentication Manager 8.1 Virtual Appliance Getting Started

RSA Authentication Manager 8.1 Virtual Appliance Getting Started RSA Authentication Manager 8.1 Virtual Appliance Getting Started Thank you for purchasing RSA Authentication Manager 8.1, the world s leading two-factor authentication solution. This document provides

More information

rackspace.com/cloud/private

rackspace.com/cloud/private rackspace.com/cloud/private Rackspace Private Cloud Installation (2014-11-21) Copyright 2014 Rackspace All rights reserved. This documentation is intended for users who want to install Rackspace Private

More information

Lambda Architecture for Batch and Real- Time Processing on AWS with Spark Streaming and Spark SQL. May 2015

Lambda Architecture for Batch and Real- Time Processing on AWS with Spark Streaming and Spark SQL. May 2015 Lambda Architecture for Batch and Real- Time Processing on AWS with Spark Streaming and Spark SQL May 2015 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document

More information

CSE 344 Introduction to Data Management. Section 9: AWS, Hadoop, Pig Latin TA: Yi-Shu Wei

CSE 344 Introduction to Data Management. Section 9: AWS, Hadoop, Pig Latin TA: Yi-Shu Wei CSE 344 Introduction to Data Management Section 9: AWS, Hadoop, Pig Latin TA: Yi-Shu Wei Homework 8 Big Data analysis on billion triple dataset using Amazon Web Service (AWS) Billion Triple Set: contains

More information

Integrated Management of IaaS Resources

Integrated Management of IaaS Resources 2 nd Workshop on Federative and Interoperable Cloud Infrastructures Integrated Management of IaaS Resources Fernando Meireles (1050758@isep.ipp.pt) and Benedita Malheiro (mbm@isep.ipp.pt) School of Engineering,

More information

Technology and Cost Considerations for Cloud Deployment: Amazon Elastic Compute Cloud (EC2) Case Study

Technology and Cost Considerations for Cloud Deployment: Amazon Elastic Compute Cloud (EC2) Case Study Creating Value Delivering Solutions Technology and Cost Considerations for Cloud Deployment: Amazon Elastic Compute Cloud (EC2) Case Study Chris Zajac, NJDOT Bud Luo, Ph.D., Michael Baker Jr., Inc. Overview

More information

Manage cloud infrastructures using Zend Framework

Manage cloud infrastructures using Zend Framework Manage cloud infrastructures using Zend Framework by Enrico Zimuel (enrico@zend.com) Senior Software Engineer Zend Framework Core Team Zend Technologies Ltd About me Email: enrico@zend.com Twitter: @ezimuel

More information

Avid. Avid Interplay Web Services. Version 2.0

Avid. Avid Interplay Web Services. Version 2.0 Avid Avid Interplay Web Services Version 2.0 Table of Contents Overview... 1 Interplay Web Services Functionality... 2 Asset Management... 2 Workflow Enhancement... 3 Infrastructure... 3 Folder Listing...

More information

Guide to the LBaaS plugin ver. 1.0.2 for Fuel

Guide to the LBaaS plugin ver. 1.0.2 for Fuel Guide to the LBaaS plugin ver. 1.0.2 for Fuel Load Balancing plugin for Fuel LBaaS (Load Balancing as a Service) is currently an advanced service of Neutron that provides load balancing for Neutron multi

More information

Zabbix for Hybrid Cloud Management

Zabbix for Hybrid Cloud Management Zabbix for Hybrid Cloud Management TIS Inc. Daisuke IKEDA 21 September,2012 Riga,Latvia Agenda Agenda About myself - Server Engineer working at Research & Dev. Division Approaching to Hybrid Environment

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0 JAMF Software Server Installation and Configuration Guide for OS X Version 9.0 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

McAfee SMC Installation Guide 5.7. Security Management Center

McAfee SMC Installation Guide 5.7. Security Management Center McAfee SMC Installation Guide 5.7 Security Management Center Legal Information The use of the products described in these materials is subject to the then current end-user license agreement, which can

More information

Scyld Cloud Manager User Guide

Scyld Cloud Manager User Guide Scyld Cloud Manager User Guide Preface This guide describes how to use the Scyld Cloud Manager (SCM) web portal application. Contacting Penguin Computing 45800 Northport Loop West Fremont, CA 94538 1-888-PENGUIN

More information

Healthstone Monitoring System

Healthstone Monitoring System Healthstone Monitoring System Patrick Lambert v1.1.0 Healthstone Monitoring System 1 Contents 1 Introduction 2 2 Windows client 2 2.1 Installation.............................................. 2 2.2 Troubleshooting...........................................

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

Oracle Applications and Cloud Computing - Future Direction

Oracle Applications and Cloud Computing - Future Direction Oracle Applications and Cloud Computing - Future Direction February 26, 2010 03:00 PM 03:40 PM Presented By Subash Krishnaswamy skrishna@astcorporation.com Vijay Tirumalai vtirumalai@astcorporation.com

More information

Introduction to Cloud Computing on Amazon Web Services (AWS) with focus on EC2 and S3. Horst Lueck

Introduction to Cloud Computing on Amazon Web Services (AWS) with focus on EC2 and S3. Horst Lueck Introduction to Cloud Computing on Amazon Web Services (AWS) with focus on EC2 and S3 Horst Lueck 2011-05-17 IT Pro Forum http://itproforum.org Thanks to Open Office Impress The Cloud the Name The 90s

More information

OpenQRM Enterprise Azure Howto

OpenQRM Enterprise Azure Howto OpenQRM Enterprise Azure Howto Your private Cloud on Azure (openqrm Enterprise 5.2.9) 1 Infos Create a cloud memory product which fits to the Azure Instances Sizes -> sizes are selected based on the memory

More information

MySQL and Virtualization Guide

MySQL and Virtualization Guide MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit

More information

Cloud-init. Marc Skinner - Principal Solutions Architect Michael Heldebrant - Solutions Architect Red Hat

Cloud-init. Marc Skinner - Principal Solutions Architect Michael Heldebrant - Solutions Architect Red Hat Cloud-init Marc Skinner - Principal Solutions Architect Michael Heldebrant - Solutions Architect Red Hat 1 Agenda What is cloud-init? What can you do with cloud-init? How does it work? Using cloud-init

More information

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3 JAMF Software Server Installation and Configuration Guide for Windows Version 9.3 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

AWS CodePipeline. User Guide API Version 2015-07-09

AWS CodePipeline. User Guide API Version 2015-07-09 AWS CodePipeline User Guide AWS CodePipeline: User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information