Ubuntu 下 的 云 计 算. UbuntuChin 互 动 社 区 王 大 亮

Size: px
Start display at page:

Download "Ubuntu 下 的 云 计 算. UbuntuChin 互 动 社 区 王 大 亮"

Transcription

1 Ubuntu 下 的 云 计 算 UbuntuChin 互 动 社 区 王 大 亮

2 Outline Where is Cloud Computing from? Ubuntu & Cloud Computing Ubuntu Enterprise Cloud Reference

3 Where is Cloud Computing from? 远 看 有 形, 近 看 无 影

4 Where is Cloud Computing from? 云 计 算 的 演 化 隶 属 元 => 云 计 算 云 模 式 云 架 构 云 服 务 云 计 算 的 演 化 的 动 力 由 通 信 技 术 引 发 的 端 到 端 的 交 换 技 术 资 源 分 配 技 术

5 Where is Cloud Computing from? 企 业 界, 云 计 算 的 特 性 : 1) 数 据 存 储 的 可 靠 性 2) 计 算 资 源 的 有 效 利 用, 降 低 对 用 户 端 设 备 要 求, 促 使 使 用 更 为 方 便 3) 设 备 与 数 据 的 共 享 特 性 4) 接 入 方 式 多 样 化 学 术 界, 云 计 算 的 特 性 : 1) 虚 拟 特 性 2) 粒 度 计 算 3) 不 确 定 性 计 算 4) 软 件 算 云 计 算 的 外 在 表 现 是 服 务! 云 计 算 的 手 段 是 虚 拟 化!

6 Where is Cloud Computing from? 云 计 算 的 应 用 模 式 云 计 算 系 统 架 构 模 型

7 Where is Cloud Computing from?

8 Where is Cloud Computing from? Client & Server (C/S) Browser & Server (B/S) Browser & Cloud (B/C)

9 Where is Cloud Computing from?

10 Outline Where is Cloud Computing from? Ubuntu Cloud Computing Ubuntu Enterprise Cloud Reference

11 亚 马 逊 EC 2 IBM 的 蓝 云 微 软 的 Azure Sun Cloud Cloud Computing

12 Ubuntu Cloud Computing Google Cloud Computing Ubuntu

13 Ubuntu Cloud Computing Ubuntu One Ubuntu Cloud Computing service for file syncing and sharing

14 Ubuntu Cloud Computing Ubuntu 的 云 计 算 主 要 包 括 三 部 分 内 容 : 公 共 云 :Ubuntu 通 过 Ubuntu Server Edition on Amazon EC2 的 方 式 提 供 给 用 户 私 有 云 :Ubuntu 通 过 Ubuntu Enterprise Cloud (UEC) 的 方 式 提 供 给 用 户, UEC 已 包 含 Ubuntu 9.04 分 发 版 中, UEC 基 于 开 源 云 平 台 : Eucalyptus 构 建. 云 服 务 : Ubuntu 云 服 务 涉 及 Plan, deploy, train, support 和 manage 的 各 个 环 节

15 Ubuntu Cloud Computing architecture of Ubuntu Enterprise Cloud with Eucalyptus CLC :Cloud Controller; WS3:Walrus Storage Controller; EBS:Elastic Block Storage Controller; CC:Cluster Controller ;NC:Node Controller

16 Ubuntu Cloud Computing Cloud Management Platform Canonicals' Landscape RightScale Cohesive Flexible Techonolgies

17

18 Ubuntu Cloud Computing Conceptual Representation of the Eucalyptus Cloud

19 Outline Where is Cloud Computing from? Ubuntu Cloud Computing Ubuntu Enterprise Cloud Reference

20 Ubuntu Enterprise Cloud Deployment with Ubuntu Enterprise Cloud powered by Eucalyptus STEP 1: Prerequisites STEP 2: System Installation and Configuration STEP 3: Registering Eucalyptus Components STEP 4: Initial Login STEP 5: Obtain a Virtual Machine (VM) Image STEP 6: Running an Image

21 STEP 1: Prerequisites eucalyptus-cloud: includes the front-end services (Cloud Controller) as well as the Walrus storage system. eucalyptus-cc: includes the Cluster Controller that provides support for the virtual network overlay eucalyptus-nc : includes the Node Controller that interacts with KVM (Kernel-based Virtual Machine) to manage individual VMs

22 STEP 1: Prerequisites $ sudo apt-get install postfix # select 'Internet Site' $ sudo vi /etc/hosts # add 'mailhost' to the localhost line # localhost mailhost sudo vi /etc/network/interfaces ======================== auto lo iface lo inet loopback auto br0 iface br0 inet dhcp bridge_ports eth0 bridge_fd 9 bridge_hello 2 bridge_maxage 12 bridge_stp offrestart the network: ======================== sudo /etc/init.d/networking restart

23 STEP 2: System Installation and Configuration $ sudo apt-get install eucalyptus-cloud eucalyptus-ccnext $ sudo apt-get install eucalyptus-nc $ sudo /etc/init.d/eucalyptus-nc stop $ sudo vi /etc/eucalyptus/eucalyptus.conf # set VNET_BRIDGE="br0" $ sudo /etc/init.d/eucalyptus-nc start $ sudo vi /etc/sysctl.conf # uncomment net.ipv4.ip_forward=1

24 STEP 3: Registering Eucalyptus Components $ sudo euca_conf -addcluster <clustername> $ sudo euca_conf -addnode <node_hostname>

25 STEP 4: Initial Login JAVA_HOME=/usr EC2_HOME=~/.euca/ec2 EC2_AMITOOL_HOME=~/.euca/ec2ami PATH=$PATH:$EC2_HOME/bin:$EC2_AMITOOL_HOME/bin'

26 STEP 5: Obtain a Virtual Machine (VM) Image Obtain a Official Virtual Machine Image $ wget c-i386.img.gz Bundle and upload the systems kernel $ mkdir kernel $ euca-bundle-image --image /boot/vmlinuz-$(uname -r) \ --destination./kernel --kernel true $ euca-upload-bundle --bucket kernel \ --manifest./kernel/vmlinuz-$(uname -r).manifest.xml $ EKI=`euca-register kernel/vmlinuz-$(uname -r).manifest.xml awk '{print $2}'` $ echo $EKI

27 STEP 5: Obtain a Virtual Machine (VM) Image Create a ramdisk with acpiphp, bundle and upload $ mkdir ramdisk $ sudo sh -c 'grep -q acpiphp printf "#acpiphp needed for ebs\nacpiphp\n" > /etc/initramfs-tools/modules' $ sudo mkinitramfs -o./ramdisk/initrd.img-$(uname -r) $ euca-bundle-image --image./ramdisk/initrd.img-$(uname -r) \ --destination./ramdisk --ramdisk true $ euca-upload-bundle --bucket ramdisk \ --manifest ramdisk/initrd.img-$(uname -r).manifest.xml $ ERI=`euca-register ramdisk/initrd.img-$(uname -r).manifest.xml awk '{print $2}'` $ Uncompress echo $ERI and bundle the image $ mkdir image $ zcat ubuntu-uec-karmic-i386.img.gz cp --sparse=always /dev/stdin ubuntu-uec-karmic-i386.img $ euca-bundle-image --image ubuntu-uec-karmic-i386.img \ --destination./image --kernel $EKI --ramdisk $ERI $ euca-upload-bundle --bucket image --manifest. /image/root.img.manifest.xml $ EMI=`euca-register image/root.img.manifest.xml awk '{print $2}'` $ echo $EMI

28 STEP 6: Running an Image $ euca-add-keypair mykey > ~/.euca/mykey.priv $ chmod 0600 ~/.euca/mykey.priv $ euca-run-instances $EMI -k mykey $ euca-describe-instances $ ssh -i ~/.euca/mykey.priv ubuntu@<ip_of_instance>

29 云 计 算 与 开 源 软 件 的 关 系

30 Reference 李 德 毅. 隶 属 云 和 隶 属 云 发 生 器 [J], 计 算 机 研 究 与 发 展, 1995:32(6). 尹 国 定. 云 计 算 实 现 概 念 计 算 的 方 法 [J], 东 南 大 学 学 报 ( 自 然 科 学 版 ),2003:33(4). White Paper: Ubuntu Enterprise Cloud Architecture White Paper: Eucalyptus Open-Source Cloud Computing Infrastructure

31 个 人 著 作

32 Q & A

33 谢 谢 大 家!!!

A technical whitepaper describing steps to setup a Private Cloud using the Eucalyptus Private Cloud Software and Xen hypervisor.

A technical whitepaper describing steps to setup a Private Cloud using the Eucalyptus Private Cloud Software and Xen hypervisor. A technical whitepaper describing steps to setup a Private Cloud using the Eucalyptus Private Cloud Software and Xen hypervisor. Vivek Juneja Cloud Computing COE Torry Harris Business Solutions INDIA Contents

More information

Private Cloud in Educational Institutions: An Implementation using UEC

Private Cloud in Educational Institutions: An Implementation using UEC Private Cloud in Educational Institutions: An Implementation using UEC D. Sudha Devi L.Yamuna Devi K.Thilagavathy,Ph.D P.Aruna N.Priya S. Vasantha,Ph.D ABSTRACT Cloud Computing, the emerging technology,

More information

IaaS Implementation of a Private Cloud using Open Source Technology

IaaS Implementation of a Private Cloud using Open Source Technology IaaS Implementation of a Private Cloud using Open Source Technology Rajat Kandpal BTech CSE College of Engineering Roorkee Roorkee, India Vishal Kumar BTech CSE College of Engineering Roorkee Roorkee,

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

Setting up of an Open Source based Private Cloud

Setting up of an Open Source based Private Cloud www.ijcsi.org 354 Setting up of an Open Source based Private Cloud Dr.G.R.Karpagam 1, J.Parkavi 2 1 Professor, Department of Computer Science and Engineering, PSG College of Technology, Coimbatore-641

More information

Eucalyptus Tutorial HPC and Cloud Computing Workshop http://portal.nersc.gov/project/magellan/euca-tutorial/abc.html

Eucalyptus Tutorial HPC and Cloud Computing Workshop http://portal.nersc.gov/project/magellan/euca-tutorial/abc.html Eucalyptus Tutorial HPC and Cloud Computing Workshop http://portal.nersc.gov/project/magellan/euca-tutorial/abc.html Iwona Sakrejda Lavanya Ramakrishna Shane Canon June24th, UC Berkeley Tutorial Outline

More information

Implementation of Private Cloud using Eucalyptus and an open source Operating System

Implementation of Private Cloud using Eucalyptus and an open source Operating System Implementation of Private Cloud using Eucalyptus and an open source Operating System Nandan Mirajkar 1, Mohan Barde 2, Harshal Kamble 3, Dr.Rahul Athale 4, Kumud Singh 5 1 Department of Advanced Software

More information

Installing Ubuntu Enterprise Cloud in a Physical Environment

Installing Ubuntu Enterprise Cloud in a Physical Environment Installing Ubuntu Enterprise Cloud in a Physical Environment Supplement (2) to Guidelines for Building a Private Cloud Infrastructure Zoran Pantid and Muhammad Ali Babar Tech Report TR-155 ISBN: 978-7949-256-1

More information

Installing and Scaling out Ubuntu Enterprise Cloud in Virtual Environment

Installing and Scaling out Ubuntu Enterprise Cloud in Virtual Environment Installing and Scaling out Ubuntu Enterprise Cloud in Virtual Environment Supplement to Guidelines for Building a Private Cloud Infrastructure Zoran Pantić and Muhammad Ali Babar Tech Report TR-2012-154

More information

MIFOS 2.2 ON CLOUD. Arun Philip Jacob arunphilip.jacob@iiitb.org. Latha Madhuri Pratti lathamadhuri.pratti@iiitb.org

MIFOS 2.2 ON CLOUD. Arun Philip Jacob arunphilip.jacob@iiitb.org. Latha Madhuri Pratti lathamadhuri.pratti@iiitb.org MIFOS 2.2 ON CLOUD Arun Philip Jacob arunphilip.jacob@iiitb.org Latha Madhuri Pratti lathamadhuri.pratti@iiitb.org Priya Dharshini G priyadharshini.g@iiitb.org Samya Bagchi samya.bagchi@iiitb.org Shankar

More information

Deploying Ubuntu Enterprise Cloud. Training Course Overview. (Ubuntu 10.04 LTS)

Deploying Ubuntu Enterprise Cloud. Training Course Overview. (Ubuntu 10.04 LTS) Deploying Ubuntu Enterprise Cloud Training Course Overview (Ubuntu 10.04 LTS) 1. Deploying Ubuntu Enterprise Cloud Course Overview About the course and objectives This 16 hour course provides System Administrators

More information

Eucalyptus Cloud Computing Platform User s Guide. Enterprise Edition 2.0

Eucalyptus Cloud Computing Platform User s Guide. Enterprise Edition 2.0 Eucalyptus Cloud Computing Platform User s Guide Enterprise Edition 2.0 Eucalyptus Systems, Inc. 2010 2 Eucalyptus Cloud Computing Platform User s Guide Enterprise Edition 2.0 Copyright 2010 Eucalyptus

More information

Introduction to Cloud computing. Viet Tran

Introduction to Cloud computing. Viet Tran Introduction to Cloud computing Viet Tran Type of Cloud computing Infrastructure as a Service IaaS: offer full virtual machines via hardware virtualization tech. Amazon EC2, AbiCloud, ElasticHosts, Platform

More information

OpenStack Compute Administration Manual

OpenStack Compute Administration Manual OpenStack Compute (02/03/11) Copyright 2010, 2011 OpenStack LLC All rights reserved. OpenStack Compute offers open source software for cloud administration and management for any organization. This manual

More information

Virtualization & Cloud Computing (2W-VnCC)

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

More information

Implementation of Database as a Service in a Private Cloud using EUCALYPTUS

Implementation of Database as a Service in a Private Cloud using EUCALYPTUS Volume 2, No. 02, April 2013 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Implementation

More information

THE EUCALYPTUS OPEN-SOURCE PRIVATE CLOUD

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

More information

Eucalyptus Hybrid Cloud Guide

Eucalyptus Hybrid Cloud Guide Eucalyptus Hybrid Cloud Guide 2013-12-11 Eucalyptus Systems Eucalyptus Contents 2 Contents Hybrid Cloud Overview...3 Recommended Tools...4 Hybrid Cloud Concepts...5 Availability Zone...5 Cloudbursting...5

More information

2) Xen Hypervisor 3) UEC

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

More information

How to Create, Setup, and Configure an Ubuntu Router with a Transparent Proxy.

How to Create, Setup, and Configure an Ubuntu Router with a Transparent Proxy. In this tutorial I am going to explain how to setup a home router with transparent proxy using Linux Ubuntu and Virtualbox. Before we begin to delve into the heart of installing software and typing in

More information

Building a Penetration Testing Virtual Computer Laboratory

Building a Penetration Testing Virtual Computer Laboratory Building a Penetration Testing Virtual Computer Laboratory User Guide 1 A. Table of Contents Collaborative Virtual Computer Laboratory A. Table of Contents... 2 B. Introduction... 3 C. Configure Host Network

More information

SI455 Advanced Computer Networking. Lab2: Adding DNS and Email Servers (v1.0) Due 6 Feb by start of class

SI455 Advanced Computer Networking. Lab2: Adding DNS and Email Servers (v1.0) Due 6 Feb by start of class SI455 Advanced Computer Networking Lab2: Adding DNS and Email Servers (v1.0) Due 6 Feb by start of class WHAT TO HAND IN: 1. Completed checklist from the last page of this document 2. 2-4 page write-up

More information

Development of Private Cloud

Development of Private Cloud International Journal of Scientific and Research Publications, Volume 3, Issue 12, December 2013 1 Development of Private Cloud Mr. Likhesh Nilkanth Kolhe 1, Prof. Sachin Bojewar 2 1 PG Scholar, Dept of

More information

LABS Agenda University of Luxembourg, FSTC, 6 rue Richard Coudenhove-Kalergi

LABS Agenda University of Luxembourg, FSTC, 6 rue Richard Coudenhove-Kalergi Cloud computing enables the delivery of computing resources as a service, rather than a single bundled product. Amongst the many options for running a cloud infrastructure, the open source solution, OpenStack,

More information

Ubuntu Cloud Infrastructure - Jumpstart Deployment Customer - Date

Ubuntu Cloud Infrastructure - Jumpstart Deployment Customer - Date Ubuntu Cloud Infrastructure - Jumpstart Deployment Customer - Date Participants Consultant Name, Canonical Cloud Consultant,name.lastname@canonical.com Cloud Architect Name, Canonical Cloud Architect,

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

How To Compare Cloud Computing To Cloud Platforms And Cloud Computing

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

More information

Procedure to Create and Duplicate Master LiveUSB Stick

Procedure to Create and Duplicate Master LiveUSB Stick Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new

More information

Experiences with Eucalyptus: Deploying an Open Source Cloud

Experiences with Eucalyptus: Deploying an Open Source Cloud Experiences with Eucalyptus: Deploying an Open Source Cloud Rick Bradshaw - bradshaw@mcs.anl.gov Piotr T Zbiegiel - pzbiegiel@anl.gov Argonne National Laboratory Overview Introduction and Background Eucalyptus

More information

OpenStack Cloud Deployment on UCS B-Series Servers and UCS Fabric

OpenStack Cloud Deployment on UCS B-Series Servers and UCS Fabric OpenStack Cloud Deployment on UCS B-Series Servers and UCS Fabric This Tech Note covers setting up an OpenStack Cloud (Cactus release), comprising a cluster of compute controller and compute nodes running

More information

Embedded Systems Programming in a Private Cloud- A prototype for Embedded Cloud Computing

Embedded Systems Programming in a Private Cloud- A prototype for Embedded Cloud Computing International Journal of Information Science and Intelligent System, Vol. 2, No.4, 2013 Embedded Systems Programming in a Private Cloud- A prototype for Embedded Cloud Computing Achin Mishra 1 1 Department

More information

Moving SNE to the Cloud

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

More information

HW (Fat001) TPM. Figure 1. Computing Node

HW (Fat001) TPM. Figure 1. Computing Node 1. Overview Two major components exist in our current prototype systems: the management node, including the Cloud Controller, Cluster Controller, Walrus and EBS, and the computing node, i.e. the Node Controller

More information

Eucalyptus (1.4) Eucalyptus Administrator's Guide (1.4) Prerequisites. 1. For compiling from source. 2. For running Eucalyptus

Eucalyptus (1.4) Eucalyptus Administrator's Guide (1.4) Prerequisites. 1. For compiling from source. 2. For running Eucalyptus Eucalyptus (1.4) Eucalyptus version 1.4 incorporates several new features and improvements. Most notably, it introduces Walrus, our S3-compatible storage service, as well as a completely revamped virtual

More information

PRIVATE CLOUD INITIATIVES USING BIOINFORMATICS RESOURCES AND APPLICATIONS FACILITY (BRAF)

PRIVATE CLOUD INITIATIVES USING BIOINFORMATICS RESOURCES AND APPLICATIONS FACILITY (BRAF) PRIVATE CLOUD INITIATIVES USING BIOINFORMATICS RESOURCES AND APPLICATIONS FACILITY (BRAF) Bhagyashri Pathak, Rajesh SR, Sankalp Jain, Amit Saxena, Rashmi Mahajan and Rajendra Joshi* Bioinformatics Group,

More information

Eucalyptus 4.0.2 User Guide

Eucalyptus 4.0.2 User Guide Eucalyptus 4.0.2 User Guide 2014-11-05 Eucalyptus Systems Eucalyptus Contents 2 Contents Eucalyptus Overview...6 Getting Started...8 Setup User Credentials and Euca2ools...8 Console Login...8 Log in to

More information

TCP/IP Network Essentials. Linux System Administration and IP Services

TCP/IP Network Essentials. Linux System Administration and IP Services TCP/IP Network Essentials Linux System Administration and IP Services Layers Complex problems can be solved using the common divide and conquer principle. In this case the internals of the Internet are

More information

Create a virtual machine at your assigned virtual server. Use the following specs

Create a virtual machine at your assigned virtual server. Use the following specs CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine

More information

Comparison of Open Source Cloud System for Small and Medium Sized Enterprises

Comparison of Open Source Cloud System for Small and Medium Sized Enterprises , pp.276-282 http://dx.doi.org/10.14257/astl.2014.51.63 Comparison of Open Source Cloud System for Small and Medium Sized Enterprises Yasuo Uchida 1, Seigo Matsuno 1, Makoto Sakamoto 2 1 Ube National College

More information

Eucalyptus 4.1.2 User Guide

Eucalyptus 4.1.2 User Guide Eucalyptus 4.1.2 User Guide 2015-08-04 Eucalyptus Systems Eucalyptus Contents 2 Contents Eucalyptus Overview...6 Getting Started...8 Getting Started with the Eucalyptus Management Console...8 Setup User

More information

Linux Terminal Server Project

Linux Terminal Server Project Linux Terminal Server Project Tested by : C.V. UDAYASANKAR mail id: udayasankar.0606@gmail.com The Linux Terminal Server Project adds thin client support to Linux servers. It allows you to set up a diskless

More information

Parallel Data Mining and Assurance Service Model Using Hadoop in Cloud

Parallel Data Mining and Assurance Service Model Using Hadoop in Cloud Parallel Data Mining and Assurance Service Model Using Hadoop in Cloud Aditya Jadhav, Mahesh Kukreja E-mail: aditya.jadhav27@gmail.com & mr_mahesh_in@yahoo.co.in Abstract : In the information industry,

More information

Edwin Guchu. Implementation of cloud infrastructure using open source software

Edwin Guchu. Implementation of cloud infrastructure using open source software Edwin Guchu Implementation of cloud infrastructure using open source software Helsinki Metropolia University of Applied Sciences Bachelor of Engineering Degree Programme in Information Technology Thesis

More information

FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre

FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre Matteo Turilli, David Wallom Eucalyptus is available in two versions: open source and enterprise. Within this

More information

What is Ubuntu Cloud? Nick Barcet

What is Ubuntu Cloud? Nick Barcet What is Ubuntu Cloud? Nick Barcet Ubuntu Server Product Manager Canonical Lead sponsor of the Ubuntu project Founded in 2004 by Mark Shuttleworth 300+ staff in 28 countries

More information

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud)

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud) Open Cloud System (Integration of Eucalyptus, Hadoop and into deployment of University Private Cloud) Thinn Thu Naing University of Computer Studies, Yangon 25 th October 2011 Open Cloud System University

More information

Installing Ubuntu Enterprise Cloud in a Physical Environment

Installing Ubuntu Enterprise Cloud in a Physical Environment Installing Ubuntu Enterprise Cloud in a Physical Environment Supplement (2) to Guidelines for Building a Private Cloud Infrastructure Zoran Pantid and Muhammad Ali Babar Tech Report TR-2012-155 ISBN: 978-7949-256-1

More information

Installation Runbook for Avni Software Defined Cloud

Installation Runbook for Avni Software Defined Cloud Installation Runbook for Avni Software Defined Cloud Application Version 2.5 MOS Version 6.1 OpenStack Version Application Type Juno Hybrid Cloud Management System Content Document History 1 Introduction

More information

Technical. AMD Reference Architecture for SeaMicro SM15000 Server and Ubuntu OpenStack 14.04 LTS (Icehouse) Table of Contents

Technical. AMD Reference Architecture for SeaMicro SM15000 Server and Ubuntu OpenStack 14.04 LTS (Icehouse) Table of Contents Technical OVERVIEW AMD Reference Architecture for SeaMicro SM15000 Server and Ubuntu OpenStack 14.04 LTS (Icehouse) September 2014 www.seamicro.com Table of Contents Introduction.................................................................2

More information

Architectural Comparison and Implementation of Cloud Tools and Technologies

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

More information

SURFnet Cloud Computing Solutions

SURFnet Cloud Computing Solutions Marvin Rambhadjan Arthur Schutijser SURFnet February 3, 2010 Overview Introduction Cloud Computing Introduction Cloud Computing What is Cloud Computing? Resource Pooling Resources are bundled High Level

More information

Int. J. Advanced Networking and Applications Volume: 6 Issue: 4 Pages: 2359-2366 (2015) ISSN: 0975-0290

Int. J. Advanced Networking and Applications Volume: 6 Issue: 4 Pages: 2359-2366 (2015) ISSN: 0975-0290 2359 Exploring the Feasibility of Adopting Cloud Computing in Computer Center Taiz University Mohammed A.M. Ibrahim Department of Information Technology, Taiz University, Republic of Yemen Email: Email:

More information

AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD

AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD M. Lawanya Shri 1, Dr. S. Subha 2 1 Assistant Professor,School of Information Technology and Engineering, Vellore Institute of Technology, Vellore-632014

More information

Installing OpenVPN on Ubuntu 10.04

Installing OpenVPN on Ubuntu 10.04 Installing OpenVPN on Ubuntu 10.04 Madison Linux Users Group (MadLUG) Brad Stone Introduction There are many tutorials on the web which explain how to install OpenVPN, but I found that most of them lack

More information

Implementing open source cloud platform as an enterprise solution and develop a tool to manage the entire ecosystem

Implementing open source cloud platform as an enterprise solution and develop a tool to manage the entire ecosystem Implementing open source cloud platform as an enterprise solution and develop a tool to manage the entire ecosystem Supervisor : Prof. Dr. Mumit Khan Conducted by- Md. lmran Hossain 08101025 School of

More information

LSKA 2010 Survey Report I Device Drivers & Cloud Computing

LSKA 2010 Survey Report I Device Drivers & Cloud Computing LSKA 2010 Survey Report I Device Drivers & Cloud Computing Yu Huang and Hao-Chung Yang {r98922015, r98944016}@csie.ntu.edu.tw Department of Computer Science and Information Engineering March 31, 2010 Abstract

More information

Setting up a private cloud for academic environment with open source software

Setting up a private cloud for academic environment with open source software Setting up a private cloud for academic environment with open source software Cloud Computing Course ITU of Copenhagen February 27 th, 2012 Who am I? Zoran Pantić Infrastructure Architect & Systems Specialist

More information

Creating a high availability, load balancing cluster using cloud technology

Creating a high availability, load balancing cluster using cloud technology Creating a high availability, load balancing cluster using cloud technology Volanis Stamatis, Ftylitakis Nikos, Kainourgiakis Giorgos Abstract Some of the most challenging and critical issues regarding

More information

CactoScale Guide User Guide. Athanasios Tsitsipas (UULM), Papazachos Zafeirios (QUB), Sakil Barbhuiya (QUB)

CactoScale Guide User Guide. Athanasios Tsitsipas (UULM), Papazachos Zafeirios (QUB), Sakil Barbhuiya (QUB) CactoScale Guide User Guide Athanasios Tsitsipas (UULM), Papazachos Zafeirios (QUB), Sakil Barbhuiya (QUB) Version History Version Date Change Author 0.1 12/10/2014 Initial version Athanasios Tsitsipas(UULM)

More information

Linux Virtualization Nesting and Management

Linux Virtualization Nesting and Management Linux Virtualization Nesting and Management Shen Wei Faculty of Informatics Technische Universität München May 14, 2013 Overview of nested virtualization Network bridging Hardware acceleration libvirt

More information

HP SDN VM and Ubuntu Setup

HP SDN VM and Ubuntu Setup HP SDN VM and Ubuntu Setup Technical Configuration Guide Version: 1 September 2013 Table of Contents Introduction... 2 Option 1: VirtualBox Preconfigured Setup... 2 Option 2: VMware Setup (from scratch)...

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR)

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) Mathieu SCHIRES Version: 0.9.1 Published December 24, 2014 http://www.inuvika.com Contents 1 Prerequisites: Ubuntu 14.04 (Trusty Tahr) 3

More information

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Author: Andy Grogan Version 1.0 Location: http://www.telnetport25.com Contents Introduction... 3 Key Objectives:...

More information

Setting up a Raspberry Pi as a WiFi access point

Setting up a Raspberry Pi as a WiFi access point Setting up a Raspberry Pi as a WiFi access point Created by lady ada Last updated on 2015-03-10 04:30:11 PM EDT Guide Contents Guide Contents Overview What you'll need Preparation Check Ethernet & Wifi

More information

BUILDING A HYBRID CLOUD WITH OpenNebula. OpenNebula connecting with Private cloud [KVM hypervisor]and Public cloud [Amazon EC2]

BUILDING A HYBRID CLOUD WITH OpenNebula. OpenNebula connecting with Private cloud [KVM hypervisor]and Public cloud [Amazon EC2] place for practical guides on cloud computing BUILDING A HYBRID CLOUD WITH OpenNebula OpenNebula connecting with Private cloud [KVM hypervisor]and Public cloud [Amazon EC2] Table of Contents Hardware/software

More information

Corso di Configurazione e Gestione di Reti Locali

Corso di Configurazione e Gestione di Reti Locali Corso di Configurazione e Gestione di Reti Locali Marco Bonola Lorenzo Bracciale A.A. 2011/2012 TOC Netkit: installation, configuration, use Lab0-interfaces: basic IP configuration IP Networking (ifconfig,

More information

Open Cloud Platforms & Cloud Services

Open Cloud Platforms & Cloud Services Open Cloud Platforms & Cloud Services Zhonghong Ou Post-doc researcher Data Communications Software (DCS) Lab, Department of Computer Science and Engineering, Aalto University Zhonghong Ou 20/11/2012 Aalto

More information

An Assessment of Eucalyptus Version 1.4

An Assessment of Eucalyptus Version 1.4 An Assessment of Eucalyptus Version 1.4 Tingxi Tan and Cameron Kiddle Grid Research Centre, University of Calgary, Canada {txtan,kiddlec}@cpsc.ucalgary.ca May 4, 2009 1 Introduction Cloud Computing is

More information

Upgrading to Ubuntu Server Edition 10.04 LTS

Upgrading to Ubuntu Server Edition 10.04 LTS Upgrading to Ubuntu Server Edition 10.04 LTS OSCON 2010 Nick Barcet what is an LTS? Released every two years 5 years of security and maintenance updates Direct upgrade path

More information

HiPerDNO. High Performance Computing Technologies for Smart Distribution Network Operation FP7-248135

HiPerDNO. High Performance Computing Technologies for Smart Distribution Network Operation FP7-248135 HiPerDNO High Performance Computing Technologies for Smart Distribution Network Operation FP7-248135 Project coordinator: Dr Gareth Taylor (BU) Consortium Members: Brunel University (BU), Electricite de

More information

V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production

V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production Giancarlo Birello, Anna Perin IRCrES-CNR Italy Simona Abbà IPSP-CNR - Italy Winner of the Canada-Italy Innovation

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

CLOUD COMPUTING. When It's smarter to rent than to buy

CLOUD COMPUTING. When It's smarter to rent than to buy CLOUD COMPUTING When It's smarter to rent than to buy Is it new concept? Nothing new In 1990 s, WWW itself Grid Technologies- Scientific applications Online banking websites More convenience Not to visit

More information

Eucalyptus Cloud Computing Platform Administrator s Guide. Enterprise Edition 2.0

Eucalyptus Cloud Computing Platform Administrator s Guide. Enterprise Edition 2.0 Eucalyptus Cloud Computing Platform Administrator s Guide Enterprise Edition 2.0 Eucalyptus Systems, Inc. 2010 2 Eucalyptus Cloud Computing Platform Administrator s Guide Enterprise Edition 2.0 Copyright

More information

cloud NAS Service Manual

cloud NAS Service Manual 1 cloud NAS Service Manual 2 Revision history Date of revision Version Cause of revision Content of revision 2012.10.26 2012.11.08 2012.11.23 1.0 1.1 1.2 Newly prepared Change in information on CIFS login

More information

Deploy Big Data Extensions on vsphere Standard Edition

Deploy Big Data Extensions on vsphere Standard Edition Deploy Big Data Extensions on vsphere Standard Edition You can deploy Big Data Extensions 2.1.1 Fling on VMware vsphere Standard Edition for the purpose of experimentation and proof-of-concept projects

More information

Perforce Helix Threat Detection On-Premise Deployment Guide

Perforce Helix Threat Detection On-Premise Deployment Guide Perforce Helix Threat Detection On-Premise Deployment Guide Version 3 On-Premise Installation and Deployment 1. Prerequisites and Terminology Each server dedicated to the analytics server needs to be identified

More information

Private Distributed Cloud Deployment in a Limited Networking Environment

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 jmgalloway@crimson.ua.edu, vrbsky@cs.ua.edu, smith102@crimson.ua.edu

More information

Single Node Hadoop Cluster Setup

Single Node Hadoop Cluster Setup Single Node Hadoop Cluster Setup This document describes how to create Hadoop Single Node cluster in just 30 Minutes on Amazon EC2 cloud. You will learn following topics. Click Here to watch these steps

More information

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT Contents 1 Prerequisites: Ubuntu 12.04 (Precise Pangolin) 3 1.1 System Requirements.............................. 3 1.2 sudo.........................................

More information

bigbluebutton Open Source Web Conferencing

bigbluebutton Open Source Web Conferencing bigbluebutton Open Source Web Conferencing My favorites Project Home Downloads Wiki Issues Source Search Current pages for BigBlueButtonVM Download and setup your own BigBlueButton 0.81 Virtual Machine

More information

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms Ubuntu* Enterprise Cloud Executive Summary Intel Cloud Builder Guide Intel Xeon Processor Ubuntu* Enteprise Cloud Canonical*

More information

Introduction to Virtualization & KVM

Introduction to Virtualization & KVM Introduction to Virtualization & KVM By Zahra Moezkarimi ICT Research Institute Software Platform Laboratory Outline Virtualization History Overview Advantages and Limitations Types of virtualization Virtualization

More information

Eucalyptus LSS: Load-Based Scheduling on Virtual Servers Using Eucalyptus Private Cloud

Eucalyptus LSS: Load-Based Scheduling on Virtual Servers Using Eucalyptus Private Cloud CMSC 190 SPECIAL PROBLEM, INSTITUTE OF COMPUTER SCIENCE 1 Eucalyptus LSS: Load-Based Scheduling on Virtual Servers Using Eucalyptus Private Cloud Shenlene A. Cabigting and Prof. Joseph Anthony C. Hermocilla

More information

Current unresolved challenges and issues in next generation cloud deployments in a virtual environment. Muhammad Adnan Malik

Current unresolved challenges and issues in next generation cloud deployments in a virtual environment. Muhammad Adnan Malik UNIVERSITY OF OSLO Department of Informatics Current unresolved challenges and issues in next generation cloud deployments in a virtual environment Muhammad Adnan Malik Network and System Administration

More information

Ubuntu Cloud. Deploying Clouds with Ubuntu. Nick Barcet <nick.barcet@canonical.com> Cloud Solutions Lead

Ubuntu Cloud. Deploying Clouds with Ubuntu. Nick Barcet <nick.barcet@canonical.com> Cloud Solutions Lead Ubuntu Cloud Deploying Clouds with Ubuntu Nick Barcet Cloud Solutions Lead Canonical Who we are Commercial sponsor of the Ubuntu project 400+ employees, 30 countries 5 offices

More information

Advantages and Disadvantages of Application Network Marketing Systems

Advantages and Disadvantages of Application Network Marketing Systems Application Deployment Softwaretechnik II 2014/15 Thomas Kowark Outline Options for Application Hosting Automating Environment Setup Deployment Scripting Application Monitoring Continuous Deployment and

More information

By Reeshu Patel. Getting Started with OpenStack

By Reeshu Patel. Getting Started with OpenStack Getting Started with OpenStack By Reeshu Patel 1 What is OpenStack OpenStack is a set of softwares tools for building and managing cloud computing platforms for public and personal clouds. Backed by a

More information

Mobile Cloud Computing T-110.5121 Open Source IaaS

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

More information

Hadoop MapReduce in Eucalyptus Private Cloud

Hadoop MapReduce in Eucalyptus Private Cloud Hadoop MapReduce in Eucalyptus Private Cloud Johan Nilsson May 27, 2011 Bachelor s Thesis in Computing Science, 15 credits Supervisor at CS-UmU: Daniel Henriksson Examiner: Pedher Johansson Umeå University

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

Network Management & Monitoring

Network Management & Monitoring Network Management & Monitoring Smokeping - Part I Contents 0.1 Exercises............................... 1 0.2 1. Install Smokeping......................... 1 0.3 2. Initial Configuration........................

More information

Note: Guide not yet tested in the SFU Surrey Linux Lab (SUR4080). Some changes may be needed.

Note: Guide not yet tested in the SFU Surrey Linux Lab (SUR4080). Some changes may be needed. Quick Start Guide for BeagleBone Black by Brian Fraser Last update: Oct 28, 2015 This document guides the user through: 1. Installing Ubuntu in a virtual machine. 2. Connecting to the target using serial

More information

How To Install Eucalyptus (Cont'D) On A Cloud) On An Ubuntu Or Linux (Contd) Or A Windows 7 (Cont') (Cont'T) (Bsd) (Dll) (Amd)

How To Install Eucalyptus (Cont'D) On A Cloud) On An Ubuntu Or Linux (Contd) Or A Windows 7 (Cont') (Cont'T) (Bsd) (Dll) (Amd) Installing Eucalyptus Past, Present, and Future Eucalyptus Overview Most widely deployed software platform for on-premise IaaS clouds 25,000+ cloud starts as of mid 2011 AWS-compatible, enterprise-deployed

More information

A Web Development Environment

A Web Development Environment A Web Development Environment Setting up an Ubuntu (or Mint) Workstation to run in a Windows 7 based VirtualBox for a Hostgator Reseller or VPS Environment. By: Andrew Tuline Date: February 8, 2014 Version:

More information

This howto is also a bit old now. But I thought of uploading it in the howtos section, as it still works.

This howto is also a bit old now. But I thought of uploading it in the howtos section, as it still works. Assalam-u-alaikum, This howto is also a bit old now. But I thought of uploading it in the howtos section, as it still works. Created : Mid 2007 Last updated: Mid 2007 The following link is very nice tutorial

More information

INASP: Effective Network Management Workshops

INASP: Effective Network Management Workshops INASP: Effective Network Management Workshops Linux Familiarization and Commands (Exercises) Based on the materials developed by NSRC for AfNOG 2013, and reused with thanks. Adapted for the INASP Network

More information

The Eucalyptus Open-source Cloud Computing System

The Eucalyptus Open-source Cloud Computing System The Eucalyptus Open-source Cloud Computing System Chris Grzegorczyk, Dan Nurmi, Graziano Obertelli, Rich Wolski, Sunil Soman, Lamia Youseff, Dmitrii Zagorodnov University of California, Santa Barbara Cloud

More information

SLA Driven Load Balancing For Web Applications in Cloud Computing Environment

SLA Driven Load Balancing For Web Applications in Cloud Computing Environment SLA Driven Load Balancing For Web Applications in Cloud Computing Environment More Amar amarmore2006@gmail.com Kulkarni Anurag anurag.kulkarni@yahoo.com Kolhe Rakesh rakeshkolhe139@gmail.com Kothari Rupesh

More information