Cloud Computing.

Slides:



Advertisements
Similar presentations
B. Ramamurthy 4/17/ Overview of EC2 Components (fig. 2.1) 10..* /17/20152.
Advertisements

Cloud Computing Open source cloud infrastructures Keke Chen.
Chien-Chung Shen Google Compute Engine Chien-Chung Shen
1#Dynatrace QCon London 2015 Martin Etmajer, Technology Dynatrace Deploying On-Prem as SaaS Why we go with Ansible.
Amazon EC2 Quick Start adapted from EC2_GetStarted.html.
System Center 2012 Setup The components of system center App Controller Data Protection Manager Operations Manager Orchestrator Service.
1 Figure 5-4: Drivers of Performance Requirements: Traffic Volume and Complexity of Filtering Performance Requirements Traffic Volume (Packets per Second)
OpenStack Usage Guide By Yaman Sertdemir. Usage Guide of Openstack After connecting to the VPN network, open a browser and enter below address: /horizon.
Presented by: Sanketh Beerabbi University of Central Florida COP Cloud Computing.
| nectar.org.au NECTAR TRAINING Module 5 The Research Cloud Lifecycle.
| nectar.org.au NECTAR TRAINING Module 10 Beyond the Dashboard.
Puppet with vSphere Workshop Install, configure and use Puppet on your laptop for vSphere DevOps Billy Lieberman August 1, 2015.
Ph No: Mob: ,plot No-27,NGGO's Colony, Pattabhi reddy gardens,Visakhapatnam-07 Open.
Ansible with vCloud Air Workshop
| nectar.org.au NECTAR TRAINING Module 5 The Research Cloud Lifecycle.
| nectar.org.au NECTAR TRAINING Module 10 Beyond the Dashboard.
Infrastructure as code. “Enable the reconstruction of the business from nothing but a source code repository, an application data backup, and bare metal.
| nectar.org.au NECTAR TRAINING Module 9 Backing up & Packing up.
Sponsored by the National Science Foundation Today’s Exercise.
Launch Amazon Instance. Amazon EC2 Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing capacity in the Amazon Web Services (AWS) cloud.
Ansible and Ansible Tower 1 A simple IT automation platform November 2015 Leandro Fernandez and Blaž Zupanc.
Cloud Installation & Configuration Management. Outline  Definitions  Tools, “Comparison”  References.
Sponsored by the National Science Foundation Systematic Experimentation Sarah Edwards GENI Project Office.
Information Initiative Center, Hokkaido University North 11, West 5, Sapporo , Japan Tel, Fax: General.
Introductory Tutorial: OpenStack, Chef, Hadoop, Hbase, Pig I590 Data Science Curriculum Big Data Open Source Software and Projects September Geoffrey.
© 2015 MetricStream, Inc. All Rights Reserved. AWS server provisioning © 2015 MetricStream, Inc. All Rights Reserved. By, Srikanth K & Rohit.
SCI-BUS is supported by the FP7 Capacities Programme under contract nr RI CloudBroker usage Zoltán Farkas MTA SZTAKI LPDS
Introduction to Ansible
EPAM Cloud Orchestration
The Site Architecture You Can Edit Varnish Mobile? Ryan Lane Wikimedia Foundation Membase? Swift.
Canadian Bioinformatics Workshops
Introduction to Ansible
Introduction and Getting Started guide Alex Zlotnik Technion
Introduction to VMware Virtualization
THE BATTLE OF CLOUDS Openstack vs. Amazon
Efficient development and deployment of Hydra projects using Vagrant
Bootstrap / Getting Started Using Puppet Deployment
Investigation authentication using AAF for the CVL on NeCTAR
Introduction to Ansible
Agenda Who am I? Whirlwind introduction to the Cloud
Cloud Adoption Framework
Wigner Datacenter’s New Software Defined Datacenter Architecture
StratusLab Tutorial (Bordeaux, France)
IT Atoumation / Conf. Mgmt...
Drupal VM and Docker4Drupal For Drupal Development Platform
Acutelearn Amazon Web Services Training Classroom Training Instructor led trainings at Acutelearn premises Corporate Training Custom tailored trainings.
Acutelearn Best Devops Online Training in Hyderabad Classroom Training Instructor led trainings at Acutelearn premises Corporate Training Custom tailored.
Cloud Technology Group
Drupal VM and Docker4Drupal as Consistent Drupal Development Platform
NTC 324 RANK Perfect Education/ ntc324rank.com.
Intro to Config Management Using Salt Open Source
AWS: EC2, S3 and Other Services
Scaling Experiments.
EPAM Cloud Orchestration
Provisioning and Automating High Availability Postgres on AWS EC2
Lab 7 - Topics Establishing SSH Connection Install SSH Configure SSH
How To Install CentOS 6.5 & Virtual Box
Red Hat Cloud Courses.
Introduction to Ansible
OpenStack-alapú privát felhő üzemeltetés
Presented By - Avinash Pawar
NETWORK SECURITY LAB Lab 8. Firewall and VPN.
GBIF CESP Workshop, Madrid 2018 Dave Martin
In this session… Introduce what we’re talking about
How To Install CentOS 6.5 & Virtual Box
* Introduction to Cloud computing * Introduction to OpenStack * OpenStack Design & Architecture * Demonstration of OpenStack Cloud.
Introduction to Docker
Using and Building Infrastructure Clouds for Science
OpenStack Summit Berlin – November 14, 2018
Module 1: Overview of Systems Management Server 2003
Presentation transcript:

Cloud Computing

Topic Overview of Chameleon cloud Cloud Concepts & Terminology Launch a instance (as a team) Learn about Ansible and automate adding of tools to your instance Install a webserver using ansible

What are we using ? Openstack (and the provider is NSF Chameleon) https://chameleoncloud.org/docs/user- guides/openstack-kvm-user-guide/ Quick overview of concepts (review of docs at Chameleon) Review of our “CI Lego blocks” from your midterm experience

Some Cloud Terminology Image Ports Size Ingress VCPU Egress Instance IP address (Public and Private) Power state Keypair Zone Volume Snapshot Firewall Security group

Ansible Infrastructure as code ! Configuration Management (why ?) Popular tools for CM (Chef, Puppet etc) Why Ansible ? Concepts: Inventory Playbooks (recipe) & YAML Role of ssh and keys ! Ansible: From Beginner to Pro by Heap, Michael (ebook in our library)

Hands on Step 1 Form a group (3 to 4) Log into console for Chameleon Launch centos7 image Associate public IP (why ?) ssh to it (remember the login name is cc ) This is a vanilla image, lets make it interesting What does it mean to “script your infrastructure”

Hands on Step 2 (Ansible) http://docs.ansible.com/ansible/ Install ansible on your laptop (local or virtual box instance) using instructions What is a inventory file (make one) What are modules (use some) Install a package on your instance ansible all -u cc -i inventory.txt --sudo -m yum -a "name=wget state=present” ansible all -u cc -i inventory.txt --sudo -m service -a "name=httpd state=reloaded” What is a playbook (we will use some next class)