Cloud Computing mit mathematischen Anwendungen

Size: px
Start display at page:

Download "Cloud Computing mit mathematischen Anwendungen"

Transcription

1 Cloud Computing mit mathematischen Anwendungen Dr. habil. Marcel Kunze Engineering Mathematics and Computing Lab (EMCL) Institut für Angewandte und Numerische Mathematik IV Karlsruhe Institute of Technology (KIT) 3.Amazon Web Services (AWS) KIT University of the State of Baden-Württemberg and National Laboratory of the Helmholtz Association

2 Lectures VL Intro VL Hadoop 1 VL Applications 1 VL Basics No Lecture! VL Applications 2 VL IaaS, PaaS VL Hadoop 2 VL Security VL SaaS, Cloud Architecture VL Parallel Computing 1 VL Summary, Q&A VL Programming Models VL Parallel Computing 2 2

3 Amazon Simple Storage Service (S3) 3

4 Amazon S3! Write, read, and delete objects containing up to 1 terabyte of data each. The number of objects you can store is unlimited.! Each object is stored in a bucket and retrieved via a unique, developer-assigned key. 4

5 S3! A bucket can be located in the United States, in Europe or in Asia. All objects within the bucket will be stored in the bucket s location, but the objects can be accessed from anywhere.! Authentication mechanisms are provided to ensure that data is kept secure from unauthorized access. Objects can be made private or public, and rights can be granted to specific users.! Uses standards-based REST and SOAP interfaces designed to work with any Internet-development toolkit.! Built to be flexible so that protocol or functional layers can easily be added. Default download protocol is HTTP. A BitTorrent protocol interface is provided to lower costs for high-scale distribution. Additional interfaces will be added in the future.! Reliability backed with the Amazon S3 Service Level Agreement. Source: aws.amazon.com 5

6 Amazon S3 Namespace Amazon S3 bucket bucket object object object object bucket object object 6

7 Amazon S3 Namespace Amazon S3 mculverimg.s3.amazonaws.com bucket234.s3.amazonaws. com Beach.jpg 2005/party/hat.jpg img1.jpg img2.jpg eorg.de -> eorg.de.s3.amazonaws.com index.html img/pic1.jpg 7

8 S3 Pricing Source: aws.amazon.com,

9 S3 Pricing Source: aws.amazon.com,

10 Google Cloud Storage! API is compatible to S3 (S3 may be regarded a de-facto standard)! 10

11 Google Cloud Storage! Pricing is almost compatible S3 (a little bit cheaper than S3) 11

12 AWS: Elastic Block Store (EBS)! Persistent data storage! Works like an unformatted storage device (like an USB disk drive)! Can be dynamically mapped to EC2 instance! Can take snapshots to conserve a specific status (backup)! Pricing is the same as for S3 12

13 Elastic IP Adresses! Provides public IP addresses (Visible on the web)! Dynamic mapping of public IP address to EC2 instance 13

14 Amazon Simple Queue Service (SQS) 14

15 Amazon Simple Queue Service (SQS)! Message queuing in the Cloud! Basic message queuing model, except: queues are hosted by Amazon, and queues are accessed using Web service protocols! Simple API! Platform agnostic! Basic support for access control and message locking! Reliability! Runs within Amazon's high-availability data centers! Messages stored redundantly across multiple servers and locations! Scalable to millions of messages a day 15

16 SQS Functionality! Developers can create an unlimited number of Amazon SQS queues, each of which can send and receive an unlimited number of messages.! New messages can be added to a queue at any time. The message body can contain up to 8 KB of text in any format.! A computer can check a queue at any time for messages waiting to be read.! A message is locked while a computer is processing it, keeping other computers from trying to process it simultaneously. If processing fails, the lock will expire and the message will again be available.! Messages can be retained in queues for up to 4 days.! Developers can access Amazon SQS through standards-based SOAP and Query interfaces designed to work with any Internetdevelopment toolkit. Source: aws.amazon.com 16

17 Amazon Management Console (1)! Management of virtual infrastructure! 17

18 Amazon Management Console (2)! Management of EC2 instances 18

19 Amazon Management Console (3)! Management of Amazon Machine Images (AMI) 19

20 Amazon Management Console (4)! Storage management (Elastic Block Store) 20

21 Amazon Management Console (5)! Management of public IP adresses: Elastic IP! Dynamic allocation to EC2 instances 21

22 Amazon Management Console (6)! Management of key pairs (Privileged access via SSH/RDP) 22

23 Amazon Management Console (6)! Security Groups: Administration of firewall rules 23

24 Browser Plugin: ElasticFox! ElasticFox FireFox Plugin! Download at 24

25 Browser Plugin: S3Fox! S3Fox FireFox Plugin! Download at 25

26 Access Control Lists (ACL)! Define access rights: Read, write fullcontrol! Add specific users with or user ID 26

27 Management! AWS command line tools are useful for developers and admins! Difficult to use for average customer! Download from 27

28 Amazon Elastic Compute Cloud (Version ) Quick Reference Card (Page 1) Revised:(3/25/2011 Instance Tools ec2$run$instances,(ec2run) Launches(one(or(more(instances(of(the(specified(AMI. ec2-run-instances ami_id [-n instance_count] [-g group [-g group...]] [-k keypair] [-d user_data -f user_data_file] [-t instance_type] [-z availability_zone] [-- kernel kernel_id] [--ramdisk ramdisk_id] [-b block-device-mapping] [--monitor] [--disableapi-termination] [--instance-initiatedshutdown-behavior behavior] [--placement-group placement_group] [--tenancy tenancy] [-s subnet] [--private-ip-address ip_address] ec2$describe$instances,(ec2din) Lists(the(specified(instances.(If(no(instance(is( specified,(all(your(instances(are(listed. ec2-describe-instances [instance_id...] [[--filter name=value]...] ec2$create$volume,(ec2addvol) Creates(an(Amazon(EBS(volume(from(a(snapshot(or(an( empty(volume(in(the(size(you(specify. ec2-create-volume -z availability_zone [-s size --snapshot snapshot] ec2$describe$volumes,(ec2dvol) Lists(the(specified(Amazon(EBS(volumes.(If(no(volume( is(specified,(all(your(volumes(are(listed. ec2-describe-volumes [volume_id...] [[--filter name=value]...] ec2$delete$volume,(ec2delvol) Deletes(the(specified(Amazon(EBS(volume. ec2-delete-volume volume_id ec2$attach$volume,(ec2attvol) Attaches(an(Amazon(EBS(volume(to(a(running(instance( and(exposes(it(as(the(specified(device.(the(volume( and(instance(must(be(in(the(same(availability(zone. ec2-attach-volume volume_id -i instance_id -d device Amazon EBS Tools ec2$terminate$instances,(ec2kill) Terminates(the(specified(instance. ec2-terminate-instances instance_id [instance_id...] ec2$start$instances,(ec2start) Starts(a(stopped(instance((applies(only(to(Amazon(EBSH backed(instances). ec2-start-instances instance_id [instance_id...] ec2$describe$instance$attribute, (ec2dinatt) Describes(an(attribute(for(the(specified(instance.( ec2-describe-instance-attribute instance_id { --block-device-mapping --disable-apitermination --instance-initiated-shutdownbehavior --instance-type --kernel -- ramdisk --root-device-name --user-data } ec2$create$snapshot,(ec2addsnap) Creates(a(snapshot(of(an(Amazon(EBS(volume(and( stores(it(in(amazon(s3. ec2-create-snapshot volume_id ec2$describe$snapshots,(ec2dsnap) Lists(the(specified(snapshots.(If(no(snapshot(is( specified,(all(your(snapshots(are(listed. ec2-describe-snapshots [snapshot_id...] [[--filter name=value]...] ec2$delete$snapshot,(ec2delsnap) Deletes(the(specified(Amazon(EBS(snapshot. ec2-delete-snapshot snapshot_id ec2$detach$volume,(ec2detvol) Detaches(an(Amazon(EBS(volume(from(an(instance. ec2-detach-volume volume_id [-i instance_id [- d device]] [--force] ec2$stop$instances,(ec2stop) Stops(an(instance((applies(only(to(Amazon(EBSHbacked( instances). ec2-stop-instances instance_id [instance_id...]! ec2$monitor$instances,(ec2min) Enables(monitoring(for(the(specified(instance.( ec2-monitor-instances instance-id [instance_id...] ec2$unmonitor$instances,(ec2umin) Disables(monitoring(for(the(specified(instance(s).( ec2-monitor-instances instance-id [instance_id...] EC2 Elastic IP Address Tools ec2$allocate$address,(ec2allocaddr) Acquires(an(EC2(Elastic(IP(address(for(use(with(your( account. ec2-allocate-address! ec2$describe$addresses,(ec2daddr) Lists(both(EC2(and(VPC(Elastic(IP(addresses(assigned(to( your(account.( ec2-describe-addresses [ip_address...]!! ec2$release$address,(ec2reladdr) Releases(an(EC2(Elastic(IP(address(associated(with(your( account.( ec2-release-address ip_address ec2$associate$address,(ec2assocaddr) Associates(an(EC2(Elastic(IP(address(with(an(instance.(If( the(ip(address(is(currently(assigned(to(another(instance,( the(ip(address(is(reassigned(to(the(specified(instance.( ec2-associate-address ip_address -i instance_id ec2$disassociate$address,(ec2disaddr) Disassociates(the(specified(EC2(Elastic(IP(address(from( the(instance(to(which(it(is(assigned.( ec2-disassociate-address ip_address!!

29 AWS Quick Reference Card (c td) Image Tools ec2$describe$images*(ec2dim) Returns(information(about(AMIs,(AKIs,(and(ARIs.(If(no( parameter(is(specified,(information(about(all(images(for( which(you(have(launch(permission(is(returned. ec2-describe-images [ami_id...] [--all] [-o owner...] [-x user_id] [[--filter name=value]...] ec2$create$image*(ec2cim) Creates(an(AMI(that(uses(an(Amazon(EBS(root(device( from(a(running(or(stopped(amazon(ebsjbacked( instance. ec2-create-image instance_id --name name [ --description description] [ --no-reboot] ec2$describe$image$attribute*(ec2dimatt) Describes(an(attribute(for(the(specified(AMI.( ec2-describe-image-attribute ami_id { --launchpermission --product-code --block-devicemapping --kernel --ramdisk } ec2$register*(ec2reg) Registers(the(AMI(specified(in(the(manifest(file(and( generates(a(new(ami(id. ec2-register manifest Availability Zone Tools ec2$describe$availability$zones*(ec2daz) Lists(Availability(Zones(that(are(currently(available(to( your(account.( ec2-describe-availability-zones [zone...]! Windows Tools ec2$get$password*(ec2gpass) Retrieves(and(decrypts(the(administrator(password(for( the(specified(windows(instance.( ec2-get-password instance_id -k key_pair ec2$bundle$instance*(ec2bundle) Key Pair Tools ec2$create$keypair*(ec2addkey) Creates(a(new(2048Jbit(RSA(key(pair(with(the(specified( name.( ec2-create-keypair key_pair ec2$describe$keypairs*(ec2dkey) Lists(the(specified(key(pairs.(If(no(key(pair(is(specified,( all(your(key(pairs(are(listed.( ec2-describe-keypairs [key_pair...] ec2$delete$keypair*(ec2delkey) Deletes(the(specified(key(pair(by(removing(the(public( key(from(amazon(ec2.( ec2-delete-keypair key_pair ec2$import$keypair*(ec2ikey) Imports(the(public(key(for(a(key(pair.(You(keep(the( private(key.(the(key(pair(works(in(all(ec2(regions.(( ec2-import-keypair key_pair --public-key-file file EC2 Security Group Tools ec2$create$group*(ec2addgrp) Creates(a(new(EC2(security(group.(Group(names(must( be(unique(per(account. ec2-create-group group_name -d description ec2$delete$group*(ec2delgrp) Deletes(the(specified(EC2(security(group. ec2-delete-group ec2_group_name_or_id!! ec2$describe$group*(ec2dgrp) Lists(your(EC2(and(VPC(security(groups.(If(no(security( group(is(specified,(all(your(security(groups(are(listed.( ec2-describe-group [ec2_group_name_or_id... vpc_group_id...] [[--filter name=value]...] ec2$authorize*(ec2auth) Adds(a(rule(to(an(EC2(security(group. ec2-authorize ec2_group_name_or_id Tagging Tools ec2$create$tags*(ec2addtag) Adds(or(overwrites(one(or(more(tags(for(the(specified( resource(or(resources.(each(tag(consists(of(a(key(and( an(optional(value.(tag(keys(must(be(unique(per( resource. ec2-create-tags resource_id [resource_id...] --tag key[=value] [--tag key[=value]...]! ec2$delete$tags*(ec2deltag) Removes(a(set(of(tags(from(a(set(of(resources.(The( tag(value(is(not(required. ec2-delete-tags resource_id [resource_id...] --tag key[=value] [--tag key[=value]...]! ec2$describe$tags*(ec2dtag) Lists(your(tags.(You(can(filter(the(list(to(return(only( tags(you(specify. ec2-describe-tags [[--filter name=value]...] Other Tools ec2$get$console$output*(ec2gcons) Retrieves(console(output(for(the(specified(instance.(( ec2-get-console-output instance_id [--raw-console-output]!! This(Amazon'Elastic'Compute'Cloud'Quick'Reference' Card(contains(commonly(used(commands(and( options.(for(complete(reference(information,(see(the( Amazon(EC2(Command(Line(Reference(at( aws.amazon.com/documentation/ec2/. 29

30 Hausaufgabe 2: API-Tools! Anlegen eines.ec2 Ordners im Home-Verzeichnis! Bei AWS anmelden, Zertifikat generieren und pk pem und cert pem Dateien nach.ec2 kopieren (x.509)! Herunterladen der API-Tools nach C:\Programme\ec2-api-tools ! Herunterladen und Installieren von Java! Setzen von Umgebungsvariablen (Systemsteuerung) EC2_HOME=C:\Programme\ec2-api-tools EC2_CERT=%HOME%\.ec2\cert...pem EC2_PRIVATE_KEY=%HOME%\.ec2\pk...pem JAVA_HOME=C:\Programme\Java\jdk6! Falls man in einer speziellen Zone arbeiten will (default: us-east-1) EC2_URL= Funktionstest: Zeige verfügbare Zonen mit ec2-describe-availability-zones AVAILABILITYZONE us-east-1a available us-east-1 AVAILABILITYZONE us-east-1b available us-east-1 AVAILABILITYZONE AVAILABILITYZONE us-east-1c us-east-1d available available us-east-1 us-east-1 30

31 Hausaufgabe 2 (c td)! Erzeugen eines Schlüsselpaars (Name z.b. mykey) ec2-add-keypair mykey Der zurück gelieferte private Schlüssel muss in einem File gespeichert werden (z.b. mykey.pem) und die Privilegien sollten auf readonly für den Besitzer gesetzt werden! Auflisten der verfügbaren Amazon Machine Images (AMI) ec2-describe-images -owner amazon IMAGE ami-42a2532b amazon/ec2 CentOS 5.5 GPU HVM AMI (Driver ) amazon available public x86_64 machine ebs hvm xen IMAGE ami-e565ba8c amazon/amzn-ami-pv x86_64-ebs amazon available public x86_64 machine aki-88aa75e1 ebs paravirtual xen! Starten einer virtuellen Maschine (Amazon Linux Micro-Instanz) ec2-run-instances ami-e565ba8c k mykey t t1.micro 31

32 Hausaufgabe 2 (c td)! Status der virtuellen Maschine anzeigen ec2-describe-instances i-2cb98d43 RESERVATION r default INSTANCE i-ba8685dd ami-e565ba8c ec compute-1.amazonaws.com ip ec2.internal running vorlesung-us 0 t1.micro T16:56: us-east-1d aki-88aa75e1 monitoring-disabled ebs paravirtual xen sg-c1c82da8 default BLOCKDEVICE /dev/sda1 vol-7ac4b T16:56:31.000Z TAG instance i-ba8685dd Name test! Firewall für SSH öffnen (Port 22) in der default security group ec2-authorize default -p 22 PERMISSION default ALLOWS tcp FROM CIDR /0! Mit SSH einloggen ssh -i mykey.pem root@ec compute-1.amazonaws.com! Stoppen der virtuellen Maschine ec2-terminate-instances i-ba8685dd INSTANCE i-10a64379 running shutting-down 32

33 33

Cloud Computing mit mathematischen Anwendungen

Cloud Computing mit mathematischen Anwendungen Cloud Computing mit mathematischen Anwendungen Dr. habil. Marcel Kunze Engineering Mathematics and Computing Lab (EMCL) Institut für Angewandte und Numerische Mathematik IV Karlsruhe Institute of Technology

More information

CIT 668: System Architecture

CIT 668: System Architecture CIT 668: System Architecture Amazon Web Services I Topics 1. Economics 2. Key Concepts 3. Key Services 4. Elastic Compute Cloud 5. Creating an EC2 Instance Images from AWS EC2 User Guide or Wikipedia unless

More information

Amazon Elastic Compute Cloud. Command Line Tools Reference API Version

Amazon Elastic Compute Cloud. Command Line Tools Reference API Version Amazon Elastic Compute Cloud Amazon Elastic Compute Cloud: Copyright 2009 Amazon Web Services LLC or its affiliates. All rights reserved. Table of Contents Welcome... 1 What's New... 4 Getting the Command

More information

CIT 668: System Architecture. Amazon Web Services

CIT 668: System Architecture. Amazon Web Services CIT 668: System Architecture Amazon Web Services Topics 1. AWS Global Infrastructure 2. Foundation Services 1. Compute 2. Storage 3. Database 4. Network 3. AWS Economics Amazon Services Architecture Regions

More information

LINUX, WINDOWS(MCSE),

LINUX, WINDOWS(MCSE), Virtualization Foundation Evolution of Virtualization Virtualization Basics Virtualization Types (Type1 & Type2) Virtualization Demo (VMware ESXi, Citrix Xenserver, Hyper-V, KVM) Cloud Computing Foundation

More information

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama Basics of Cloud Computing Lecture 2 Cloud Providers Satish Srirama Outline Cloud computing services recap Amazon cloud services Elastic Compute Cloud (EC2) Storage services - Amazon S3 and EBS Cloud managers

More information

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama Basics of Cloud Computing Lecture 2 Cloud Providers Satish Srirama Outline Cloud computing services recap Amazon cloud services Elastic Compute Cloud (EC2) Storage services - Amazon S3 and EBS Cloud managers

More information

Introduction to Cloud Computing

Introduction to Cloud Computing You will learn how to: Build and deploy cloud applications and develop an effective implementation strategy Leverage cloud vendors Amazon EC2 and Amazon S3 Exploit Software as a Service (SaaS) to optimize

More information

Amazon Web Services CSE 490H. This presentation incorporates content licensed under the Creative Commons Attribution 2.5 License.

Amazon Web Services CSE 490H. This presentation incorporates content licensed under the Creative Commons Attribution 2.5 License. Amazon Web Services CSE 490H This presentation incorporates content licensed under the Creative Commons Attribution 2.5 License. Overview Questions about Project 3? EC2 S3 Putting them together Brief Virtualization

More information

Cloud Computing mit mathematischen Anwendungen

Cloud Computing mit mathematischen Anwendungen Cloud Computing mit mathematischen Anwendungen Dr. habil. Marcel Kunze Engineering Mathematics and Computing Lab (EMCL) Institut für Angewandte und Numerische Mathematik IV Karlsruhe Institute of Technology

More information

Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content

Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content Introduction to Cloud Computing A Short history Client Server Computing Concepts Challenges with Distributed Computing Introduction

More information

6 Cloud/Grid Computing

6 Cloud/Grid Computing 6 Cloud/Grid Computing On-line lecture: http://buchananweb.co.uk/adv/unit06.html 6.1 Objectives The key objectives of this unit are to: Provide an introduction to cluster, grid and cloud infrastructures.

More information

CPM. Quick Start Guide V2.4.0

CPM. Quick Start Guide V2.4.0 CPM Quick Start Guide V2.4.0 1 Content 1 Introduction... 3 Launching the instance... 3 CloudFormation... 3 CPM Server Instance Connectivity... 3 2 CPM Server Instance Configuration... 4 CPM Server Configuration...

More information

AWS Administration. Suggested Pre-requisites Basic IT Knowledge

AWS Administration. Suggested Pre-requisites Basic IT Knowledge Course Description Amazon Web Services Administration (AWS Administration) course starts your Cloud Journey. If you are planning to learn Cloud Computing and Amazon Web Services in particular, then this

More information

Amazon Web Services. Block 402, 4 th Floor, Saptagiri Towers, Above Pantaloons, Begumpet Main Road, Hyderabad Telangana India

Amazon Web Services. Block 402, 4 th Floor, Saptagiri Towers, Above Pantaloons, Begumpet Main Road, Hyderabad Telangana India (AWS) Overview: AWS is a cloud service from Amazon, which provides services in the form of building blocks, these building blocks can be used to create and deploy various types of application in the cloud.

More information

Amazon Web Services EC2 Helix Server

Amazon Web Services EC2 Helix Server Amazon Web Services EC2 Helix Server 14.3.0 Tuesday, July 24, 2012 Copyright The information contained herein is the property of RealNetworks Table of contents 1. Operating Systems...3 2. Summary of Steps...3

More information

Amazon Virtual Private Cloud. Getting Started Guide

Amazon Virtual Private Cloud. Getting Started Guide Amazon Virtual Private Cloud Getting Started Guide Amazon Virtual Private Cloud: Getting Started Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks

More information

Ahead in the Cloud. Matt Wood TECHNOLOGY EVANGELIST

Ahead in the Cloud. Matt Wood TECHNOLOGY EVANGELIST Ahead in the Cloud Matt Wood TECHNOLOGY EVANGELIST Hello. Thank you. Don t be afraid to be a bit technical! There Will Be Code 3 1 Building blocks Infrastructure services Compute Storage Databases

More information

Grids and Clouds. GridKa School 2009 Forschungszentrum Karlsruhe September 1st 2009 Christian Baun.

Grids and Clouds. GridKa School 2009 Forschungszentrum Karlsruhe September 1st 2009 Christian Baun. Grids and Clouds GridKa School 2009 Forschungszentrum Karlsruhe September 1st 2009 Christian Baun KIT The cooperation of Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH) http://www.kit.edu

More information

Introduction to cloud computing

Introduction to cloud computing Introduction to cloud computing History of cloud Different vendors of Cloud computing Importance of cloud computing Advantages and disadvantages of cloud computing Cloud deployment methods Private cloud

More information

Amazon Web Services Training. Training Topics:

Amazon Web Services Training. Training Topics: Amazon Web Services Training Training Topics: SECTION1: INTRODUCTION TO CLOUD COMPUTING A Short history Client Server Computing Concepts Challenges with Distributed Computing Introduction to Cloud Computing

More information

Amazon Web Services (AWS) Training Course Content

Amazon Web Services (AWS) Training Course Content Amazon Web Services (AWS) Training Course Content SECTION 1: CLOUD COMPUTING INTRODUCTION History of Cloud Computing Concept of Client Server Computing Distributed Computing and it s Challenges What is

More information

Immersion Day. Getting Started with Linux on Amazon EC2

Immersion Day. Getting Started with Linux on Amazon EC2 July 2018 Table of Contents Overview... 3 Create a new EC2 IAM Role... 4 Create a new Key Pair... 5 Launch a Web Server Instance... 8 Connect to the server... 14 Using PuTTY on Windows... 15 Configure

More information

CPM Quick Start Guide V2.2.0

CPM Quick Start Guide V2.2.0 CPM Quick Start Guide V2.2.0 1 Content 1 Introduction... 3 1.1 Launching the instance... 3 1.2 CPM Server Instance Connectivity... 3 2 CPM Server Instance Configuration... 3 3 Creating a Simple Backup

More information

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Karthik Krishnan Page 1 of 20 Table of Contents Table of Contents... 2 Abstract... 3 What

More information

Eucalyptus User Guide

Eucalyptus User Guide Eucalyptus 4.4.2 User Guide 2017-09-18 2017 Ent. Services Development Corporation LP Eucalyptus Contents 2 Contents Eucalyptus Overview...6 Getting Started...8 Getting Started with the Eucalyptus Management

More information

Introduction to Amazon Web Services

Introduction to Amazon Web Services Introduction to Amazon Web Services Introduction Amazon Web Services (AWS) is a collection of remote infrastructure services mainly in the Infrastructure as a Service (IaaS) category, with some services

More information

How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud

How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud The Barracuda NG Firewall can run as a virtual appliance in the Amazon cloud as a gateway device for Amazon EC2 instances in an

More information

Amazon Elastic Compute Cloud

Amazon Elastic Compute Cloud Amazon Elastic Compute Cloud Getting Started Guide AWS Management Console Table of Contents What s New...1 Introduction...2 Setting Up...3 Setting up an AWS Account...3 Signing up for Amazon EC2...3 Signing

More information

CIT 668: System Architecture

CIT 668: System Architecture CIT 668: System Architecture Amazon Web Services II Topics 1. Elastic Block Service (EBS) 2. Simple Storage Service (S3) 3. CloudFront 4. CloudWatch (and AutoScaling) 5. Simple Notification Service (SNS)

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

Cloud & AWS Essentials Agenda. Introduction What is the cloud? DevOps approach Basic AWS overview. VPC EC2 and EBS S3 RDS.

Cloud & AWS Essentials Agenda. Introduction What is the cloud? DevOps approach Basic AWS overview. VPC EC2 and EBS S3 RDS. Agenda Introduction What is the cloud? DevOps approach Basic AWS overview VPC EC2 and EBS S3 RDS Hands-on exercise 1 What is the cloud? Cloud computing it is a model for enabling ubiquitous, on-demand

More information

Ahead in the Cloud. with Amazon Web Services. Matt Wood TECHNOLOGY EVANGELIST

Ahead in the Cloud. with Amazon Web Services. Matt Wood TECHNOLOGY EVANGELIST Ahead in the Cloud with Amazon Web Services Matt Wood TECHNOLOGY EVANGELIST Hello. Thank you. Consumer business Seller business Decades of experience Operations, management and scale Programmatic access

More information

Training on Amazon AWS Cloud Computing. Course Content

Training on Amazon AWS Cloud Computing. Course Content Training on Amazon AWS Cloud Computing Course Content 15 Amazon Web Services (AWS) Cloud Computing 1) Introduction to cloud computing Introduction to Cloud Computing Why Cloud Computing? Benefits of Cloud

More information

What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)?

What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)? What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)? What is Amazon Machine Image (AMI)? Amazon Elastic Compute Cloud (EC2)?

More information

Immersion Day. Getting Started with Linux on Amazon EC2

Immersion Day. Getting Started with Linux on Amazon EC2 January 2017 Table of Contents Overview... 3 Create a new Key Pair... 4 Launch a Web Server Instance... 6 Browse the Web Server... 13 Appendix Additional EC2 Concepts... 14 Change the Instance Type...

More information

OPENSTACK: THE OPEN CLOUD

OPENSTACK: THE OPEN CLOUD OPENSTACK: THE OPEN CLOUD Anuj Sehgal (s.anuj@jacobs-university.de) AIMS 2012 Labs 04 June 2012 1 Outline What is the cloud? Background Architecture OpenStack Nova OpenStack Glance 2 What is the Cloud?

More information

Amazon Web Services Hands on EC2 December, 2012

Amazon Web Services Hands on EC2 December, 2012 Amazon Web Services Hands on EC2 December, 2012 Copyright 2011-2012, Amazon Web Services, All Rights Reserved Page 1-42 Table of Contents Launch a Linux Instance... 4 Connect to the Linux Instance Using

More information

Eucalyptus User Console Guide

Eucalyptus User Console Guide Eucalyptus 3.4.1 User Console Guide 2013-12-11 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...5 Install the Eucalyptus User Console...6 Install on Centos / RHEL 6.3...6 Configure

More information

Deploy the Firepower Management Center Virtual On the AWS Cloud

Deploy the Firepower Management Center Virtual On the AWS Cloud Deploy the Firepower Management Center Virtual On the AWS Cloud Amazon Virtual Private Cloud (Amazon VPC) enables you to launch Amazon Web Services (AWS) resources into a virtual network that you define.

More information

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama

Basics of Cloud Computing Lecture 2. Cloud Providers. Satish Srirama Basics of Cloud Computing Lecture 2 Cloud Providers Satish Srirama Outline Cloud computing services recap Amazon cloud services Elastic Compute Cloud (EC2) Storage services -Amazon S3 and EBS Cloud managers

More information

Deploying the Cisco CSR 1000v on Amazon Web Services

Deploying the Cisco CSR 1000v on Amazon Web Services Deploying the Cisco CSR 1000v on Amazon Web Services This section contains the following topics: Prerequisites, page 1 Information About Launching Cisco CSR 1000v on AWS, page 1 Launching the Cisco CSR

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : AWS-SysOps Title : AWS Certified SysOps Administrator Associate Version : Demo 1 / 4 1.A user has created photo editing software and hosted it on EC2. The software accepts requests

More information

Configuring a Palo Alto Firewall in AWS

Configuring a Palo Alto Firewall in AWS Configuring a Palo Alto Firewall in AWS Version 1.0 10/19/2015 GRANT CARMICHAEL, MBA, CISSP, RHCA, ITIL For contact information visit Table of Contents The Network Design... 2 Step 1 Building the AWS network...

More information

Hackproof Your Cloud Responding to 2016 Threats

Hackproof Your Cloud Responding to 2016 Threats Hackproof Your Cloud Responding to 2016 Threats Aaron Klein, CloudCheckr Tuesday, June 30 th 2016 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Changing Your Perspective Moving

More information

Installation of Informatica Services on Amazon EC2

Installation of Informatica Services on Amazon EC2 Installation of Informatica Services on Amazon EC2 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Pulse Connect Secure Virtual Appliance on Amazon Web Services

Pulse Connect Secure Virtual Appliance on Amazon Web Services ` Pulse Connect Secure Virtual Appliance on Amazon Web Services Deployment Guide Release 9.0R1 Release 9.0R1 Document Revision 1.2 Published Date June 2018 Pulse Secure, LLC 2700 Zanker Road, Suite 200

More information

Pexip Infinity and Amazon Web Services Deployment Guide

Pexip Infinity and Amazon Web Services Deployment Guide Pexip Infinity and Amazon Web Services Deployment Guide Contents Introduction 1 Deployment guidelines 2 Configuring AWS security groups 4 Deploying a Management Node in AWS 6 Deploying a Conferencing Node

More information

SGOS on AWS Deployment Guide

SGOS on AWS Deployment Guide SGOS on AWS Deployment Guide Version 6.7.x Guide Revision: 4/6/2018 2 SGOS on AWS Deployment Guide SGOS on AWS Deployment Guide SGOS on AWS Deployment Guide 3 Legal Notice Copyright 2018 Symantec Corp.

More information

Cloudera s Enterprise Data Hub on the AWS Cloud

Cloudera s Enterprise Data Hub on the AWS Cloud Cloudera s Enterprise Data Hub on the AWS Cloud Quick Start Reference Deployment Shivansh Singh and Tony Vattathil Amazon Web Services October 2014 Last update: April 2017 (revisions) This guide is also

More information

Eucalyptus User Console Guide

Eucalyptus User Console Guide Eucalyptus 4.0.2 User Console Guide 2014-11-05 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...5 Install the Eucalyptus User Console...6 Install on Centos / RHEL 6.3...6 Configure

More information

Filters AWS CLI syntax, 43 Get methods, 43 Where-Object command, 43

Filters AWS CLI syntax, 43 Get methods, 43 Where-Object command, 43 Index Symbols AWS Architecture availability zones (AZs), 3 cloud computing, 1 regions amazon global infrastructure, 2 Govcloud, 3 list and locations, 3 services compute, 5 management, 4 monitoring, 6 network,

More information

CloudLink Amazon Web Services Deployment Guide

CloudLink Amazon Web Services Deployment Guide June 2014 Notice THIS DOCUMENT CONTAINS CONFIDENTIAL AND TRADE SECRET INFORMATION OF AFORE SOLUTIONS INC AND ITS RECEIPT OR POSSESSION DOES NOT CONVEY ANY RIGHTS TO REPRODUCE OR DISCLOSE ITS CONTENTS,

More information

DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing WHAT IS CLOUD COMPUTING? 2. Slide 3. Slide 1. Why is it called Cloud?

DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing WHAT IS CLOUD COMPUTING? 2. Slide 3. Slide 1. Why is it called Cloud? DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing Slide 1 Slide 3 ➀ What is Cloud Computing? ➁ X as a Service ➂ Key Challenges ➃ Developing for the Cloud Why is it called Cloud? services provided

More information

Understanding Perimeter Security

Understanding Perimeter Security Understanding Perimeter Security In Amazon Web Services Aaron C. Newman Founder, CloudCheckr Aaron.Newman@CloudCheckr.com Changing Your Perspective How do I securing my business applications in AWS? Moving

More information

Amazon Web Services and Feb 28 outage. Overview presented by Divya

Amazon Web Services and Feb 28 outage. Overview presented by Divya Amazon Web Services and Feb 28 outage Overview presented by Divya Amazon S3 Amazon S3 : store and retrieve any amount of data, at any time, from anywhere on web. Amazon S3 service: Create Buckets Create

More information

DenyAll WAF User guide for AWS

DenyAll WAF User guide for AWS DenyAll WAF User guide for AWS Version 6.x 06/13/2017 Summary 1. About this document... 3 1.1 Purpose... 3 2. Getting started... 3 2.1 Introduction... 3 2.2 AMI description... 3 2.3 Requirements... 3 2.4

More information

Pexip Infinity and Amazon Web Services Deployment Guide

Pexip Infinity and Amazon Web Services Deployment Guide Pexip Infinity and Amazon Web Services Deployment Guide Contents Introduction 1 Deployment guidelines 2 Configuring AWS security groups 4 Deploying a Management Node in AWS 6 Deploying a Conferencing Node

More information

How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT

How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT Table of Contents TABLE OF CONTENTS... 1 TEST NETWORK DIAGRAM... 2 PREPARING YOUR VPC... 3 IP addressing... 3 Virtual Private Cloud (VPC)...

More information

AWS_SOA-C00 Exam. Volume: 758 Questions

AWS_SOA-C00 Exam. Volume: 758 Questions Volume: 758 Questions Question: 1 A user has created photo editing software and hosted it on EC2. The software accepts requests from the user about the photo format and resolution and sends a message to

More information

COP Cloud Computing. Presented by: Sanketh Beerabbi University of Central Florida

COP Cloud Computing. Presented by: Sanketh Beerabbi University of Central Florida COP6087 - Cloud Computing Presented by: Sanketh Beerabbi University of Central Florida A cloud is a collection of networked resources configured such that users can request scalable resources (VMs, platforms,

More information

At Course Completion Prepares you as per certification requirements for AWS Developer Associate.

At Course Completion Prepares you as per certification requirements for AWS Developer Associate. [AWS-DAW]: AWS Cloud Developer Associate Workshop Length Delivery Method : 4 days : Instructor-led (Classroom) At Course Completion Prepares you as per certification requirements for AWS Developer Associate.

More information

VX 9000 Virtualized Controller INSTALLATION GUIDE

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

More information

Enroll Now to Take online Course Contact: Demo video By Chandra sir

Enroll Now to Take online Course   Contact: Demo video By Chandra sir Enroll Now to Take online Course www.vlrtraining.in/register-for-aws Contact:9059868766 9985269518 Demo video By Chandra sir www.youtube.com/watch?v=8pu1who2j_k Chandra sir Class 01 https://www.youtube.com/watch?v=fccgwstm-cc

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION Steve Bertoldi, Solutions Director, MarkLogic Agenda Cloud computing and on premise issues Comparison of traditional vs cloud architecture Review of use

More information

Building a Modular and Scalable Virtual Network Architecture with Amazon VPC

Building a Modular and Scalable Virtual Network Architecture with Amazon VPC Building a Modular and Scalable Virtual Network Architecture with Amazon VPC Quick Start Reference Deployment Santiago Cardenas Solutions Architect, AWS Quick Start Reference Team August 2016 (revisions)

More information

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3 ForeScout CounterACT Hybrid Cloud Module: Amazon Web Services (AWS) Plugin Version 1.3 Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic

More information

Amazon Web Services Cloud Computing in Action. Jeff Barr

Amazon Web Services Cloud Computing in Action. Jeff Barr Amazon Web Services Cloud Computing in Action Jeff Barr jbarr@amazon.com Who am I? Software development background Programmable applications and sites Microsoft Visual Basic and.net Teams Startup / venture

More information

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : SAA-C01 Title : AWS Certified Solutions Architect - Associate (Released February 2018)

More information

Immersion Day. Getting Started with Windows Server on. Amazon EC2. Rev

Immersion Day. Getting Started with Windows Server on. Amazon EC2. Rev Getting Started with Windows Server on Amazon EC2 Rev 2015-01-15 Table of Contents Overview... 3 Launch a Web Server Instance... 4 Browse the Web Server... 12 Connecting To Your Windows Instance... 13

More information

MyIGW Main. Oregon. MyVPC /16. MySecurityGroup / us-west-2b. Type Port Source SSH /0 HTTP

MyIGW Main. Oregon. MyVPC /16. MySecurityGroup / us-west-2b. Type Port Source SSH /0 HTTP MyIGW Main Oregon MyVPC 10.0.0.0/16 10.0.1.0/24 10.0.1.0 -- us-west-2a MySecurityGroup 10.0.2.0/24 10.0.2.0 -- us-west-2b MyWebServer1 MyDBServer DMZ MyInternetRouteTable 0.0.0.0/0 IGW Type Port Source

More information

ForeScout Amazon Web Services (AWS) Plugin

ForeScout Amazon Web Services (AWS) Plugin ForeScout Amazon Web Services (AWS) Plugin Version 1.1.1 and above Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic Segmentation

More information

Deploy and Secure an Internet Facing Application with the Barracuda Web Application Firewall in Amazon Web Services

Deploy and Secure an Internet Facing Application with the Barracuda Web Application Firewall in Amazon Web Services Deploy and Secure an Internet Facing Application with the in Amazon Web In this lab, you will deploy an unsecure web application into Amazon Web (AWS), and then secure the application using the. To create

More information

VPN-Cubed 2.x Cloud Only Lite Edition

VPN-Cubed 2.x Cloud Only Lite Edition VPN-Cubed 2.x Cloud Only Lite Edition v201107 1 Requirements You have an Amazon AWS account that CohesiveFT can use for enabling your access to the VPN-Cubed Manager AMIs. Ability to configure a client

More information

AWS Quick Start Guide. Launch a Linux Virtual Machine Version

AWS Quick Start Guide. Launch a Linux Virtual Machine Version AWS Quick Start Guide Launch a Linux Virtual Machine AWS Quick Start Guide: Launch a Linux Virtual Machine Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's

More information

AWS Solution Architecture Patterns

AWS Solution Architecture Patterns AWS Solution Architecture Patterns Objectives Key objectives of this chapter AWS reference architecture catalog Overview of some AWS solution architecture patterns 1.1 AWS Architecture Center The AWS Architecture

More information

Progress OpenEdge. > Getting Started. in the Amazon Cloud.

Progress OpenEdge. > Getting Started. in the Amazon Cloud. Progress OpenEdge w h i t e p a p e r > Getting Started with Progress OpenEdge in the Amazon Cloud Part II: Your First AMI Instance Table of Contents Table of Contents.........................................

More information

AWS Security Overview. Bill Shinn Principal Security Solutions Architect

AWS Security Overview. Bill Shinn Principal Security Solutions Architect AWS Security Overview Bill Shinn Principal Security Solutions Architect Accelerating Security with AWS AWS Overview / Risk Management / Compliance Overview Identity / Privilege Isolation Roles for EC2

More information

Chef Server on the AWS Cloud

Chef Server on the AWS Cloud Chef Server on the AWS Cloud Quick Start Reference Deployment Mike Pfeiffer December 2015 This guide is also available in HTML format at http://docs.aws.amazon.com/quickstart/latest/chef-server/. Contents

More information

Amazon Web Services Course Outline

Amazon Web Services Course Outline Amazon Web Services Course Outline Tr Real Time Trainers 100% Placement Assistance Small Training Batch Hands on Experience Certification Support Video Tutorials will be provided Life Time Support will

More information

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Module 1: Google Cloud Platform Projects Identify project resources and quotas Explain the purpose of Google Cloud Resource

More information

Cloud Computing /AWS Course Content

Cloud Computing /AWS Course Content Cloud Computing /AWS Course Content 1. Amazon VPC What is Amazon VPC? How to Get Started with Amazon VPC Create New VPC Launch an instance (Server) to use this VPC Security in Your VPC Networking in Your

More information

Azure Marketplace. Getting Started Tutorial. Community Edition

Azure Marketplace. Getting Started Tutorial. Community Edition Azure Marketplace Getting Started Tutorial Community Edition Introduction NooBaa software provides a distributed storage solution for unstructured data such as analytics data, multi-media, backup, and

More information

Red Cloud Navigation

Red Cloud Navigation 1. Introduction to Red Cloud 4. Instances 7. Volumes 2. Accessing Red Cloud 5. Elastic IP Addresses 8. Snapshots 3. Dashboard 6. Release to Cloud 9. Load Balancers Introduction to Red Cloud Red Cloud is

More information

Exam Questions AWS-Certified- Developer-Associate

Exam Questions AWS-Certified- Developer-Associate Exam Questions AWS-Certified- Developer-Associate Amazon AWS Certified Developer Associate https://www.2passeasy.com/dumps/aws-certified- Developer-Associate/ 1. When using Amazon SQS how much data can

More information

Confluence Data Center on the AWS Cloud

Confluence Data Center on the AWS Cloud Confluence Data Center on the AWS Cloud Quick Start Reference Deployment March 2017 Atlassian AWS Quick Start Reference Team Contents Overview... 2 Costs and Licenses... 2 Architecture... 3 Prerequisites...

More information

Pass4test Certification IT garanti, The Easy Way!

Pass4test Certification IT garanti, The Easy Way! Pass4test Certification IT garanti, The Easy Way! http://www.pass4test.fr Service de mise à jour gratuit pendant un an Exam : SOA-C01 Title : AWS Certified SysOps Administrator - Associate Vendor : Amazon

More information

Clouds and Grids. DESY Hamburg July 6th Christian Baun.

Clouds and Grids. DESY Hamburg July 6th Christian Baun. Clouds and Grids DESY Hamburg July 6th 2009 Christian Baun KIT The cooperation of Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH) http://www.kit.edu Cloud Computing - big topic/hype Big

More information

Sputnik Installation and Configuration Guide

Sputnik Installation and Configuration Guide Sputnik Installation and Configuration Guide Contents Introduction... 2 Installing Sputnik (Local Linux Machine)... 2 Sputnik Operation... 2 Creating an Amazon EC2 instance for Sputnik... 3 Configuring

More information

ActiveNET. #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD

ActiveNET. #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD ActiveNET #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD-500018 9848111288 activesurya@ @gmail.com wwww.activenetinformatics.com y Suryanaray yana By AWS Course Content 1. Introduction to Cloud

More information

AWS Solutions Architect Associate (SAA-C01) Sample Exam Questions

AWS Solutions Architect Associate (SAA-C01) Sample Exam Questions 1) A company is storing an access key (access key ID and secret access key) in a text file on a custom AMI. The company uses the access key to access DynamoDB tables from instances created from the AMI.

More information

VMware Integrated OpenStack User Guide

VMware Integrated OpenStack User Guide VMware Integrated OpenStack User Guide VMware Integrated OpenStack 3.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Srinath Vaddepally.

Srinath Vaddepally. Cloud Computing Srinath Vaddepally CEO & Founder Srinath.Vaddepally@ristcall.com Cell : (816) 728 2134 www.ristcall.com Agenda Automation testing Cloud Computing Motivation factors from Distributed systems

More information

AWS Course Syllabus. Linux Fundamentals. Installation and Initialization:

AWS Course Syllabus. Linux Fundamentals. Installation and Initialization: AWS Course Syllabus Linux Fundamentals Installation and Initialization: Installation, Package Selection Anatomy of a Kickstart File, Command line Introduction to Bash Shell System Initialization, Starting

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

Infosys Information Platform. How-to Launch on AWS Marketplace Version 1.2.2

Infosys Information Platform. How-to Launch on AWS Marketplace Version 1.2.2 Infosys Information Platform How-to Launch on AWS Marketplace Version 1.2.2 Copyright Notice 2016 Infosys Limited, Bangalore, India. All Rights Reserved. Infosys believes the information in this document

More information

Quick start guide for Infscape UrBackup Appliance on Amazon Web Services

Quick start guide for Infscape UrBackup Appliance on Amazon Web Services Quick start guide for Infscape UrBackup Appliance on Amazon Web Services Purpose of this document This document will give detailed step-by-step instructions on how to get Infscape UrBackup Appliance running

More information

Simple Security for Startups. Mark Bate, AWS Solutions Architect

Simple Security for Startups. Mark Bate, AWS Solutions Architect BERLIN Simple Security for Startups Mark Bate, AWS Solutions Architect Agenda Our Security Compliance Your Security Account Management (the keys to the kingdom) Service Isolation Visibility and Auditing

More information

FAST TRACK YOUR AMAZON AWS CLOUD TECHNICAL SKILLS. Enterprise Website Hosting with AWS

FAST TRACK YOUR AMAZON AWS CLOUD TECHNICAL SKILLS. Enterprise Website Hosting with AWS FAST TRACK YOUR AMAZON AWS CLOUD TECHNICAL SKILLS Enterprise Website Hosting with AWS 2 Day Course Outline Table of Contents Introduction Course Structure Course Outline Day 1 - Introduction to Cloud Computing,

More information