Implementation of Database as a Service in a Private Cloud using EUCALYPTUS
|
|
|
- Vernon Hodge
- 10 years ago
- Views:
Transcription
1 Volume 2, No. 02, April 2013 ISSN The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at Implementation of Database as a Service in a Private Cloud using EUCALYPTUS Arunkumar.G Department of Information Technology SRM University Kattankulathur,Chennai,India [email protected] Magesh.S Asst.Proffesor(Sr.G) Department of Information Technology SRM University Kattankulathur,Chennai,India [email protected] Abstract In the world of computing every organisation strives hard to achieve optimal performance and efficient resource utilisation in their infrastructure. However the existing technology resolves their problem up to some extent only. Cloud computing is a technology where the Infrastructure, Software and Platform capabilities are provided as a service to the user. Currently, Amazon the most popular public cloud service provider uses pay as we go model. The user has to pay in order to use the service based on service level agreements (SLA). In public cloud the infrastructure is located remotely. The proposed model is to build a private cloud in our infrastructure using eucalyptus software platform and provide database as a service to the user. Private cloud is also called as internal cloud in which services are provided and managed internally in an organisation and cannot be accessible externally. This infrastructure provides database software as a service [9] to the user. Keywords: Infrastructure, Service level agreement, Database management system 1. Introduction Eucalyptus is an open source software platform to implement private cloud and also supports the integration of private cloud and public cloud to form a hybrid cloud [1]. It is compatible with Amazon s API and it is possible to migrate the instance to the public cloud. It has a web interface to make the cloud tasks easier. Administrative tasks are carried out by both web interface and command lines. It has five components that interact with each other to leverage cloud service to the user. They are Cloud Controller (CLC), 2013, - TIJCSA All Rights Reserved 70
2 Walrus, Storage Controller (SC), Cluster Controller (CC) and Node Controller (NC). (Ref figure: 1). Virtualization is an enabler for cloud computing. Using virtualization the physical resource are partitioned and allocated for the execution of machine image [2]. Machine images are executed form of operating system which doesn t need installation and can be executed in virtual machine. In this proposed system we implement a type I (Baremetal Hypervisor) to run the machine image [3]. Type I hypervisor doesn t have virtualization layer in it. Hypervisor uses operating system kernels to run the machine image. Baremetal hypervisor supports both hardware assisted and para virtualization. K Virtual Machine (KVM) used in our proposed model. Walrus Figure 1: Eucalyptus Architecture Walrus is repository for storing a machine image. These images are called Eucalyptus Machine Images (EMI). EMI are compatible to run in amazon s public cloud. When the instance is initiated a local copy of EMI is sent to node controller [4] to perform user tasks and the EMI will be executed. Storage Controller Storage Controller provides persistent block storage for use by the instances. The storage controller (SC) comprises of many volumes. The volume is attached to instance to store user data. The volume and its snapshot are stored in SC. The attached volume must be mounted to store the user data [4]. Cluster Controller Cluster controller (CC) collects the information about the node controller and schedules the execution of instance to a particular node. In the cluster many nodes can be attached. Cluster controller manages the nodes in the particular cluster [4]. 2013, - TIJCSA All Rights Reserved 71
3 Node Controller Node Controller is the component where the actual machine images are executed. The node controller uses hypervisor to execute the EMI. The statistics about the instances are updated to the cluster controller. Any type 1 hypervisor can be used to run the instance [4]. 2. Installation and Configurations Eucalyptus installation needs two machines. Cloud Controller, Walrus, Storage Controller and Cluster Controller in single machine called front end and a machine to install node controller. It is also possible to install each component in a separate machine. In our proposed system we use eucalyptus 3.2 fast start iso. Node Controller Installation Eucalyptus node controller installation follows same installation steps as Centos installation. During installation setup a static IP by using the network manager. The IP of the node controller don t change over time. (Ref Figure: 2) Figure 2: Network configuration 2013, - TIJCSA All Rights Reserved 72
4 Front End Installation Front end installation have eucalyptus cloud network configuration window during installation. Front end must have a static IP. In eucalyptus cloud network configuration the private and public IP ranges need to be filled. Eucalyptus cloud configuration will follow next to network setting. (Ref Figure: 3) Private IP: Private IP s are used to communicate within the eucalyptus components. The number of running instances communicates to eucalyptus components using private IP s. Public IP: Public IP s are mapped to instance for the external users to access it. The maximum number of IP s, the maximum number of instance can run. The overlapping of private and public IP must be avoided Networking Figure 3: Cloud Configuration Eucalyptus currently supports four types of networking.they are Managed, Managed No VLan, System, Static. Based on the network modes the facilities like elastic IP s, VM Isolation, Security Group, DHCP server will be determined. Eucalyptus instances typically have two IPs associated with them a private and public IP s. Private IPs are 2013, - TIJCSA All Rights Reserved 73
5 intended for internal communications between instances. Public IP s are used for external access and are usually routable outside of Eucalyptus cloud. This is called Elastic IP [6]. Security groups [7] are networking access rules that are defined and attached to instance. Protection of communication between instances to instance that belong to other security groups is called VM isolation [5]. Eucalyptus can assign IP to the instance uisng its own DHCP server. Elastic IP VM Isolation Security Group DHCP Server Managed Yes Yes Yes Yes Managed (NoVLan) Yes No Yes Yes System No No No No Static No No No Yes Figure 4: Cloud Admin Dashboard. 2013, - TIJCSA All Rights Reserved 74
6 2.2. Running an instance Figure 4: Cloud User Dashboard. 1.Running an instance can be done by both CLI and also by user console. Initially we need to add the image from eustore. (Ref Figure: 5) # eustore-describe-images 2.This command will return a list of available images from the eucalyptus image store centos i CentOS 5 1.3GB root, Hypervisor-Specific Kernels centos x86_ CentOS 5 1.3GB root, Hypervisor-Specific Kernels centos x86_ CentOS 5 1.3GB root, Single Kernel centos x86_ CentOS 5 1.3GB root, Single Kernel 3.Now pick an available image from the returned list and note its image ID and execute the command. # eustore-install-image -b testbucket -i This will return the list of available images that are stored in walrus. 2013, - TIJCSA All Rights Reserved 75
7 # euca-describe-images 5.Then we must add a keypair to run the instance. # euca-add-keypair euca-demo > euca-demo.private # chmod 0600 euca-demo.private # euca-run-instance k <keypair> emi-<image id> 6. Check to see if your instance is available for use. # euca-describe-instance <instance-id> 7.Login to the instance using ssh. To get the ip use euca-describe-instances command. # ssh i euca-demo.pem root@<the public ip of instance> 8.To terminate the instance. # euca-terminate-instances <instance id> 2.3. Attaching EBS volume to instance 1.Attaching an EBS volume [8] to an instance can be done by both CLI and user console. First create a vloume. # euca-create-volume --zone <clustername> --size <size in gb> 2.Execute the command to get volume id. # euca-describe-vloumes 3.Attach the volume to the running instance. To get the instance id use euca-describeinstances command. # euca-attach-volume <volume-id> -i <instance-id> -d <device-name> 4.To check if the ebs is attached to volume or not. # fdisk l 5.To detach ebs from instance. # euca-detach-volume <volume-id> 6.To delete the volume. # euca-delete-volume <volume-id> 2.4. Tranfering an instance to BfEBS BfEBS is Boot from Elastic Block Storage simillar to block device mapping concepts per Amazon EC2. The instance running from the Walrus cannot store the data and configurations. Whenever the instance is restarted the changes will be purged. Hence it is 2013, - TIJCSA All Rights Reserved 76
8 advised to create a emi using the running instance and store it in BfEBS. To do this we must attach a volume that is big enough to store root partition. The root partition will be copied to the volume and the volume can be registerd as a emi. Your instance needs to have parted and rsync installed. Rsync is tool to copy and synchronize file trees and directories. 1.Creating the filesystem and lableing the attached volume. # mkfs.ext3 /dev/vdb1 -L rootdisk # mkfs.ext3 /dev/vdb1 -L cloudimg-rootfs 2.Mounting and copying the instance to the attached volume. # mount /dev/vdb1 /mnt # rsync -avhxp / /mnt/ 3. Removing device specific configuration files. # rm -f /mnt/etc/udev/rules.d/70-persistent-net.rules # sed -i /`hostname`/d /mnt/etc/hosts 4. Copying the GRUB files. # cp /mnt/usr/share/grub/x86_64-<os specific>/* /mnt/boot/grub # mount -o bind /proc /mnt/proc # mount -o bind /dev /mnt/dev # chroot /mnt 5. Creating a snapshot from volume and registering as bfebs. # euca-create-snapshot vol-<volume-id> # euca-register n <image name> --root-device-name /dev/vda b /dev/vda=snap- <snapshot id> 2.5. Installing MySql in the EBS MySql is world s most used open source relational database management system. To install MySql in ebs ssh into the instance, attach elastic block storage and follow the commands. 1.Updating the repositories. # yum update 2013, - TIJCSA All Rights Reserved 77
9 # yum upgrade y 2.Now we install xfsprogs and MySql server. Xfsprogs is a utility for managing xfs high performance journaling filesystem that supports large filesystems, extended attributes, variable block sizes and makes extensive use of Btrees the aid to both performance and scalability. # yum install y xfsprogs mysql-server 3.Create an XFS file system on the EBS volume and mount it as /vol. Some commands need root priveleges. # grep -q xfs /proc/filesystems modprobe xfs # mkfs.xfs /dev/sdb # echo "/dev/sdh /vol xfs noatime 0 0" sudo tee -a /etc/fstab # mkdir -m 000 /vol # mount /vol 4. The EBS volume mounted on the instance with a good file system. Now we move mysql files to mounted vol/ and update mysql to follow the path using mount bind. First need to stop the mysql service then move the files. # service mysql stop # mkdir /vol/etc /vol/lib /vol/log # mv /etc/mysql /vol/etc/ # mv /var/lib/mysql /vol/lib/ # mv /var/log/mysql /vol/log/ # mkdir /etc/mysql # mkdir /var/lib/mysql # mkdir /var/log/mysql # echo "/vol/etc/mysql /etc/mysql none bind" tee -a /etc/fstab # mount /etc/mysql # echo "/vol/lib/mysql /var/lib/mysql none bind" tee -a /etc/fstab # mount /var/lib/mysql #echo "/vol/log/mysql /var/log/mysql none bind" tee -a /etc/fstab # mount /var/log/mysql 5.Now we start the mysql by #service mysql start 2013, - TIJCSA All Rights Reserved 78
10 3. Conclusion Database as a Service offer organizations new and unique way to use and managing databases. Snapshots can be used to take backup. This also offers significant cost savings, improved service levels and greater leverage of information across the business. Using LAMP stack in the instance, more user can use the service concurrently or user can ssh into the instance. This can be implemented in any organisation who focus on efficient resource utilization. Apart from the above mentioned advantages, this concept can be useful in tackling problems like high data traffic and lower internet speeds by creating local host services. This can also aid in testing and implementing basic research, developments and in implementing newer algorithms in the cloud computing sectors by providing a local private cloud network. References [1] Open source prive hybrid cloud from Eucalyptus [2] White paper on Virtualization Overview by VMare inc. [3] IEEE paper on the topic Quantitative Comparison of Xen and KVM, by Todd Deshane, Zachary Shepherd, Jeanna N. Matthews, Muli Ben-Yehuda, Amit Shah and Balaji Rao. [4] Johnson D, Kiran Murari. Eucalyptus Beginner's Guide UEC Edition v1.0, 25 May Pages 2-4 [5] S. Soltesz, M. Fiuczynski, L. Peterson, M. McCabe, J. Matthews. Virtualization on the Performance,Isolation, and Scalability of Para- and Paene- Virtualized Systems. Submitted to Eurosys [6] Amazon EC2 Elastic IP Addresses [7] Amazon Elastic Compute Cloud User Guide (API Version 2012) [8] Storage Options in the AWS Cloud by Joseph G. Baron, Principal Solutions Architect. AWS Gov Cloud Summit II, [9] International Journal of Future Generation Communication and Networking. Database Management System as a Cloud Service by Yvette E. and GelogoYvette E. 2013, - TIJCSA All Rights Reserved 79
11 2013, - TIJCSA All Rights Reserved 80
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
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
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
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
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
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
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
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
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
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
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
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,
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services MCN 2009: Cloud Computing Primer Workshop Charles Moad
Ubuntu 下 的 云 计 算. UbuntuChin 互 动 社 区 王 大 亮
Ubuntu 下 的 云 计 算 UbuntuChin 互 动 社 区 王 大 亮 Outline Where is Cloud Computing from? Ubuntu & Cloud Computing Ubuntu Enterprise Cloud Reference Where is Cloud Computing from? 远 看 有 形, 近 看 无 影 Where is Cloud
Eucalyptus 3.4.2 User Console Guide
Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure
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,
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
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
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
MIFOS 2.2 ON CLOUD. Arun Philip Jacob [email protected]. Latha Madhuri Pratti [email protected]
MIFOS 2.2 ON CLOUD Arun Philip Jacob [email protected] Latha Madhuri Pratti [email protected] Priya Dharshini G [email protected] Samya Bagchi [email protected] Shankar
Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015)
Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Access CloudStack web interface via: Internal access links: http://cloudstack.doc.ic.ac.uk
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
IT6204 Systems & Network Administration. (Optional)
Systems & Network Administration (Optional) INTRODUCTION This is one of the Optional courses designed for Semester 6 of the Bachelor of Information Technology Degree program. This course on Systems & Network
Creating a high-availability, scalable web-server system within the Digiweb cloud.
Creating a high-availability, scalable web-server system within the Digiweb cloud. Table of Contents Abstract. Page 3 Introduction to Cloud computing Page 3 Business benefits of Cloud computing Page 4
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 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
Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration
ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing
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
Eucalyptus 3.2: Design, Build, Manage
Eucalyptus 3.2: Design, Build, Manage Eucalyptus Contents 2 Contents Eucalyptus History...10 Eucalyptus Cloud Characteristics...11 Open Source...11 Amazon Web Services Compatible...11 Hypervisor Agnostic...11
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
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
Syncplicity On-Premise Storage Connector
Syncplicity On-Premise Storage Connector Implementation Guide Abstract This document explains how to install and configure the Syncplicity On-Premise Storage Connector. In addition, it also describes how
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
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
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
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
Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide
Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide July 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor
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
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
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
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
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
Oracle VM Server Recovery Guide. Version 8.2
Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for
Intel Cloud Builders Guide to Cloud Design and Deployment on Intel Platforms
Intel Cloud Builders Guide Intel Xeon Processor-based Servers NTT DATA BIZXAAS* Full OSS Cloud Solution Intel Cloud Builders Guide to Cloud Design and Deployment on Intel Platforms NTT DATA BIZXAAS* Full
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
Desktop virtualization using SaaS Architecture
Desktop virtualization using SaaS Architecture Pranit U. Patil, Pranav S. Ambavkar, Dr.B.B.Meshram, Prof. Varshapriya VJTI, Matunga, Mumbai, India. [email protected] Abstract - Desktop virtualization
HP Vertica on Amazon Web Services Backup and Restore Guide
HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 8/13/2015 Legal Notices Warranty The only warranties for HP products
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: [email protected] & [email protected] Abstract : In the information industry,
Amazon Web Services Student Tutorial
Amazon Web Services Free Usage Tier Elastic Compute Cloud Amazon Web Services Student Tutorial David Palma Joseph Snow CSC 532: Advanced Software Engineering Louisiana Tech University October 4, 2012 Amazon
Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting
Course ID RHL200 Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course Description Students will experience added understanding of configuration issues of disks,
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
Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.
Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...
Deploying Red Hat Enterprise Virtualization On Tintri VMstore Systems Best Practices Guide
TECHNICAL WHITE PAPER Deploying Red Hat Enterprise Virtualization On Tintri VMstore Systems Best Practices Guide www.tintri.com Contents Intended Audience... 4 Introduction... 4 Consolidated List of Practices...
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
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
Linux System Administration on Red Hat
Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,
Amazon EC 2 Cloud Deployment Guide
Documentation Amazon EC 2 Cloud Deployment Guide Jahia delivers the first Web Content Integration Software by combining Enterprise Web Content Management with Document and Portal Management features. Jahia
Automated Application Provisioning for Cloud
Automated Application Provisioning for Cloud Application Provisioning in Cloud requires mechanism to automate and repeat as and when it requires. This is mainly because the building blocks of an IT infrastructure
How to Configure an Initial Installation of the VMware ESXi Hypervisor
How to Configure an Initial Installation of the VMware ESXi Hypervisor I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide
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
Building a Private Cloud with Eucalyptus
Building a Private Cloud with Eucalyptus 5th IEEE International Conference on e-science Oxford December 9th 2009 Christian Baun, Marcel Kunze KIT The cooperation of Forschungszentrum Karlsruhe GmbH und
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
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
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
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
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,
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
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
Ubuntu Professional Training Course Overview (E-learning, Ubuntu 10.04 LTS)
Ubuntu Professional Training Course Overview (E-learning, Ubuntu 10.04 LTS) 1 of 7 Ubuntu Professional Course Overview (E-learning, Ubuntu 10.04 LTS) About the Course and Objectives The Ubuntu Professional
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
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
ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy
ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to
Eucalyptus: An Open-source Infrastructure for Cloud Computing. Rich Wolski Eucalyptus Systems Inc. www.eucalyptus.com
Eucalyptus: An Open-source Infrastructure for Cloud Computing Rich Wolski Eucalyptus Systems Inc. www.eucalyptus.com Exciting Weather Forecasts Commercial Cloud Formation Eucalyptus - Confidential What
w1r3 Network Documentation
w1r3 Network Documentation Release 1.0 w1r3 Network June 08, 2014 Contents 1 Infrastructure 3 1.1 Team orientation............................................. 3 1.2 Accounts.................................................
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
Nessus or Metasploit: Security Assessment of OpenStack Cloud
Nessus or Metasploit: Security Assessment of OpenStack Cloud Aleksandar Donevski, Sasko Ristov and Marjan Gusev Ss. Cyril and Methodius University, Faculty of Information Sciences and Computer Engineering,
Backup of ESXi Virtual Machines using Affa
Backup of ESXi Virtual Machines using Affa From SME Server Skill level: Advanced The instructions on this page may require deviations from procedure, a good understanding of linux and SME is recommended.
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
Parallels Cloud Server 6.0
Parallels Cloud Server 6.0 Getting Started Guide March 17, 2015 Copyright 1999-2015 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen
Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud
Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud David Pae, Ulf Schoo June 2013 (Please consult http://aws.amazon.com/windows/
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 [email protected] Introduction: Libre Software Meeting 2012
INUVIKA TECHNICAL GUIDE
--------------------------------------------------------------------------------------------------- INUVIKA TECHNICAL GUIDE FILE SERVER HIGH AVAILABILITY OVD Enterprise External Document Version 1.0 Published
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.,
Using Open Source Virtualization Technology In Computer Education. SUNY IT Master's Project By: Ronny L. Bull
Using Open Source Virtualization Technology In Computer Education SUNY IT Master's Project By: Ronny L. Bull Master's Project Advisor: Geethapriya Thamilarasu, Ph.D. Date: 9-04-2011 Abstract: This paper
Virtualization Management the ovirt way
ovirt introduction FOSDEM 2013 Doron Fediuck Red Hat What is ovirt? Large scale, centralized management for server and desktop virtualization Based on leading performance, scalability and security infrastructure
Cloud Storage Quick Start Guide
Cloud Storage Quick Start Guide Copyright - GoGrid Cloud Hosting. All rights reserved Table of Contents 1. About Cloud Storage...3 2. Configuring RHEL and CentOS Servers to Access Cloud Storage...3 3.
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
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
Onboarding VMs to Cisco OpenStack Private Cloud
White Paper Onboarding VMs to Cisco OpenStack Private Cloud This white paper will explain the process for exporting existing virtual machines from either VMware vsphere or AWS EC2 into Cisco OpenStack
www.boost ur skills.com
www.boost ur skills.com AWS CLOUD COMPUTING WORKSHOP Write us at [email protected] BOOSTURSKILLS No 1736 1st Amrutha College Road Kasavanhalli,Off Sarjapur Road,Bangalore-35 1) Introduction &
