Storage XenMotion Tampa Technology Project

Size: px
Start display at page:

Download "Storage XenMotion Tampa Technology Project"

Transcription

1 Storage XenMotion Tampa Technology Project Andrei Lifchits XenServer Storage

2 Overview Feature overview Use cases Bird s-eye view of operation Feature limitations and potential pitfalls API/CLI/GUI walkthrough Under the hood 2

3 Recall: Existing Feature XenMotion (live VM migration) Host A Pool Host B VM SR VDI 3

4 Recall: Existing Feature Requires shared storage Host A Pool Host B VM SR 1 VDI SR 2 4

5 Feature Overview Two new operations: ᵒ Cross-pool VM migration Moves storage VM migrate part the same as in XenMotion ᵒ Live VDI migrate Actually the same thing Supported Storage Repository types: ᵒ iscsi ᵒ HBA ᵒ NFS ᵒ local LVM or EXT 5

6 Use cases 1. Upgrade a storage array 2. Provide tiered storage arrays 3. Upgrade a pool with VMs on local storage 4. Rebalance VMs between XenServer pools, or CloudStack clusters The Cloud was the major use case we had in mind when designing this 6

7 Storage XenMotion Use Case: Upgrade a Storage Array, or Provide Tiered Storage Host A Pool Host B VM SR 1 VDI SR 2 7

8 Storage XenMotion Use Case: Upgrade Pool with VM on Local Storage Host A Pool Host B VM SR 1 VDI SR 2 8

9 Storage XenMotion Use Case: Remove Host with Local Storage from Pool Host A Pool Host B VM SR 1 VDI SR 2 9

10 Storage XenMotion Use Case: Rebalance VMs between standalone XenServers Host A Host B VM SR 1 VDI SR 2 10

11 Storage XenMotion Use Case: Rebalance VMs between XenServer Pools Host A Pool Host B Host A Pool VM SR VDI Host B SR 11

12 Feature Overview: Guiding principles Doesn t interfere with VM power state operations ᵒ Different roles: VM admin vs. cloud admin Extra network IO won t interfere with Xapi s management interface ᵒ Can choose any network for data (disks + memory) transfer This feature requires reliable infrastructure ᵒ Errors are not retried 12

13 Operation: Bird s-eye view Cross pool migration and VDI migration consist of the following: 1. Synchronously mirror VDIs between source and destination ᵒ Snapshot first to track new writes 2. Create new VM object on destination pool 3. When copy complete, migrate VM as usual 13

14 Operation: Difference between XenMotion What gets sent across the wire? XenMotion Storage XenMotion VM memory VM memory VM disks New writes to VM disks (VM metadata kept on Master) continuously Associated VM objects snapshots, RRDs, alerts 14

15 Feature Overview: Supported Configuration Any running VM with any OS with PV drivers CPU hardware on destination: must have compatible flags No VMs with VDIs in Integrated StorageLink SRs No more than 6 VDIs, and no more than 1 VM snapshot No more than 3 concurrent migrations per host No VMs with PCI pass-through enabled Same as XenMotion Restrictions: ᵒ HA and WLB must be disabled on source and destination pool (temporarily) ᵒ No DVSC integration 15

16 Feature Overview: CPU compatibility CPU on destination checked before migrating VM Can migrate to a newer compatible CPU ᵒ One-way upgrade Cannot migrate to an older or incompatible CPU ᵒ Migration will not be allowed No CPU masking, like in pools 16

17 Feature Overview: Caveats Minimum network or storage throughput requirements currently unknown Can t check whether destination SR has space available for incoming VDIs if you fill up an SR, your migration will fail to complete Extra storage is required on the source SR, so you must be careful when migrating VMs off of a full SR IO performance inside guest will be reduced during mirror because of synchronous writes 17

18 Feature Overview: CLI walkthrough xe vm-migrate ᵒ New params: remote-address, remote-username, remote-password, remote-network, vif, vdi Extends the original vm-migrate command Bold params are required to enable cross-pool migration vif and vdi map VIFs to target networks and VDIs to target SRs remote-network specifies the network used for data transfer Can use host/host-uuid to specify host on pool to send VM xe vdi-pool-migrate ᵒ Params: uuid, sr-uuid uuid of target VDI sr-uuid of destination SR 18

19 Feature Overview: CLI example xe vm-migrate vm=demo remote-address= \ remote-username=root remote-password=passw0rd \ destination-sr-uuid=fac83e d2e7-5bb7-1a2ba8345a3b OR: xe vm-migrate vm=demo remote-address= \ remote-username=root remote-password=passw0rd \ vdi:9631baba c85-bfe21714f11f=fac83e d2e7-5bb7-1a2ba8345a3b 19

20 Feature Overview: CLI example xe vm-migrate vm=demo remote-address= \ remote-username=root remote-password=passw0rd \ destination-sr-uuid=fac83e d2e7-5bb7-1a2ba8345a3b Host A VM demo Host B SR VDI 9631 SR fac83e53 20

21 Feature Overview: API walkthrough Host.migrate_receive host:ref network:ref options:map Result = receive_token VM.migrate_send vm:ref receive_token live:bool vdi_sr:map vif_network:map options:map Result = None VM.assert_can_migrate vm:ref receive_token live:bool vdi_sr:map vif_network:map options:map Result = None VDI.pool_migrate vdi:ref sr:ref options:map Result = vdi:ref 21

22 Feature Overview: GUI walkthrough 22

23 Feature Overview: GUI walkthrough 23

24 Under the hood: changes in XenServer Some re-architecting of Xapi ᵒ In preparation for the driver domains 1 New xapi-storage interface NBD (network block device) protocol used for synchronous mirroring

25 Under the hood: VDI operations For each VDI: ᵒ Snapshot VDI and synchronously mirror all subsequent writes to destination SR ᵒ Copy the snapshot to destination SR ᵒ Finally, compose those writes onto the snapshot on the destination SR Continue to mirror all new writes Each of these operations occurs sequentially for each VDI ᵒ but each VDI mirror continues until the VM migration is complete VM memory is copied only after final VDI compose is complete VDI 1: snapshot & start mirroring VDI 1: copy snapshots VDI 2: snapshot & start mirroring VDI 2: copy snapshots Copy VM memory 25

26 Architecture: VDI copying In the background, while mirroring Optimization: start with most similar VDI ᵒ Another VDI with the least number of different blocks ᵒ Only transfer blocks that are different ᵒ Content ID for each VDI ᵒ Worst case is a full copy ᵒ Stepping stone to a better VMPR feature 26

27 Troubleshooting Problems Check the Logs tab in XenCenter for the VM and/or hosts involved Main log file on control domain: /var/log/xensource.log ᵒ Very verbose, but might shed light on nature of error /var/log/messages generally useful 27

28 Summary Shared storage no longer required to migrate VMs Two new operations: migrate VM & migrate VDI Cross-pool migration comprised of VDI snapshotting, copying, and mirroring Both operations require space on source and destination SR 28

29

30 VHD basics Many SRs implement VDIs as VHD trees VHDs are a copy-on-write format for storing virtual disks VDIs are the leaves of VHD trees Interesting VDI operation: snapshot (implemented as VHD cloning ) A RW RO A: Original VDI B: Snapshot VDI RW B A RW 30

31

32 Transition slide

33

34 Allgemeine Informationen

35 Besuchen Sie die Partner in der Ausstellung

36 Nutzen Sie unsere Zusatzangebote! Citrix Expert Desks: Unsere Produkt-Spezialisten beantworten Ihre individuellen Fragen und geben Ihnen Einblick in aktuelle Projekte Citrix Tech Lounge: Lernen Sie die wichtigsten Funktionen von Citrix XenClient live kennen - bei einem Hands-On-Test in unserer Tech Lounge Meet the Architects: Buchen Sie an der Info einen Kurz-Workshops mit Citrix- Consulting und erarbeiten Sie eine Zielarchitektur für Ihr Unternehmen Citrix Datentankstelle: Lassen Sie sich auf Ihren mobilen Endgeräten einen Citrix Receiver mit Demozugang einrichten Citrix Education Desk: Informieren Sie sich über die aktuellen Trainingsangebote Citrix Test Center: Die Plätze sind ausgebucht. Es besteht die Möglichkeit über die Warteliste noch kurzfristig einen Platz zu bekommen

37 Feedback und Präsentationen Ihre Meinung ist uns wichtig! Bitte nehmen Sie sich einige Minuten Zeit, unseren Online Feedbackbogen auszufüllen. Den Link dazu erhalten Sie einige Tage nach der Veranstaltung Im Anschluss an den Fragebogen haben Sie Zugriff auf die Downloadseite der Präsentationen

38 Bitte vormerken: Citrix Synergy 2012 The premier event on cloud computing, virtualization and networking Oktober 2012 im International Convention Centre Barcelona Weitere Infos:

39 Work better. Live better.

BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort. Systems Engineer, Citrix Systems GmbH

BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort. Systems Engineer, Citrix Systems GmbH BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort Oliver Lomberg Ralph Stocker Systems Engineer, Citrix Systems GmbH Systems Engineer, Citrix Systems GmbH Simplicity vs.

More information

BP1 Mobile App Management: Solutions for ios and Android. Gary Barton Mobility Architect Citrix Receivers and Gateways Group

BP1 Mobile App Management: Solutions for ios and Android. Gary Barton Mobility Architect Citrix Receivers and Gateways Group BP1 Mobile App Management: Solutions for ios and Android Gary Barton Mobility Architect Citrix Receivers and Gateways Group Agenda 1. Synergy Announcements 2. Mobile Management Market 3. Citrix Vision

More information

BP8 Citrix Integrations with System Center Configuration Manager 2012

BP8 Citrix Integrations with System Center Configuration Manager 2012 BP8 Citrix Integrations with System Center Configuration Manager 2012 Prasanna Padmanabhan, Manager Product Development, Citrix Systems Inc. Hans Schermer, Senior Systems Engineer, Citrix Systems GmbH

More information

DV4 - Citrix CloudGateway: Access and control Windows, SaaS and web applications. Systems Engineer, Citrix Systems GmbH

DV4 - Citrix CloudGateway: Access and control Windows, SaaS and web applications. Systems Engineer, Citrix Systems GmbH DV4 - Citrix CloudGateway: Access and control Windows, SaaS and web applications Rob Sanders Oliver Lomberg Systems Engineer, Citrix Systems Systems Engineer, Citrix Systems GmbH Corporate PC Corporate

More information

DC1 Citrix Cloud Strategy Solutions for Private, Hybrid & Public Clouds. Olivier Maes, Sr Director Cloud Platform Group, Citrix Systems

DC1 Citrix Cloud Strategy Solutions for Private, Hybrid & Public Clouds. Olivier Maes, Sr Director Cloud Platform Group, Citrix Systems DC1 Citrix Cloud Strategy Solutions for Private, Hybrid & Public Clouds Olivier Maes, Sr Director Cloud Platform Group, Citrix Systems Cloud is not Cloud Cloud is not is top not down Who made the initial

More information

Virtual Disk Optionen mit XenDesktop: Provisioning Services, Machine Creation Services und Personal vdisk

Virtual Disk Optionen mit XenDesktop: Provisioning Services, Machine Creation Services und Personal vdisk Virtual Disk Optionen mit XenDesktop: Provisioning Services, Machine Creation Services und Personal vdisk Danny Wannagat, Senior Systems Engineer Germany Paul Murray, Senior Systems Engineer, XenDesktop

More information

AD2 - The future of mobile enterprise applications: Live from the Citrix Labs

AD2 - The future of mobile enterprise applications: Live from the Citrix Labs AD2 - The future of mobile enterprise applications: Live from the Citrix Labs Steve Parry, Senior Director, Citrix Labs Christian Gehring, Enterprise Presales Architect, Citrix Systems Citrix Labs Citrix

More information

BP6 Unified Communications in a virtual desktop. Systems Engineer, Citrix Systems

BP6 Unified Communications in a virtual desktop. Systems Engineer, Citrix Systems BP6 Unified Communications in a virtual desktop Hans Schermer Rob Sanders Systems Engineer, Citrix Systems GmbH Systems Engineer, Citrix Systems 2 New ways of communicating Challenges with UC in a virtual

More information

System Center 2012. Overview and Integration of Citrix Products

System Center 2012. Overview and Integration of Citrix Products System Center 2012 Overview and Integration of Citrix Products AD4 Uwe Hoffmann, Datacenter Specialist, Microsoft Deutschland GmbH Prasanna Padmanabhan, Citrix System Center History 2010 2010 System Center

More information

CloudPortal Services Manager Application, desktop and service provisioning made easy

CloudPortal Services Manager Application, desktop and service provisioning made easy CloudPortal Services Manager Application, desktop and service provisioning made easy Mikael Lindholm, Sr Systems Engineer, Citrix Systems, EMEA TechReadiness Agenda Citrix Overall Cloud vision ᵒ Where

More information

Anwendungs- und Desktopvirtualisierung der nächsten Generation mit Citrix XenDesktop 7 und Microsoft System Center 2012

Anwendungs- und Desktopvirtualisierung der nächsten Generation mit Citrix XenDesktop 7 und Microsoft System Center 2012 Anwendungs- und Desktopvirtualisierung der nächsten Generation mit Citrix XenDesktop 7 und Microsoft System Center 2012 Markus Hagenkötter, Systems Engineering Citrix Germany Agenda XenApp Connector for

More information

Citrix XenServer-6.2 Administration Training

Citrix XenServer-6.2 Administration Training Citrix XenServer-6.2 Administration Training Course Duration : 20Days Class Duration : 3hours per day ( Fast Track Course duration 7days Per day 8 hours ) Classroom Training Fast-Track Training: - Online

More information

Storage XenMotion: Live Storage Migration with Citrix XenServer

Storage XenMotion: Live Storage Migration with Citrix XenServer Storage XenMotion: Live Storage Migration with Citrix XenServer Enabling cost effective storage migration and management strategies for enterprise and cloud datacenters www.citrix.com Table of Contents

More information

Citrix XenServer 7 Feature Matrix

Citrix XenServer 7 Feature Matrix Citrix XenServer 7 Matrix Citrix XenServer 7 Matrix A list of Citrix XenServer 7 features by product edition, including entitlements XenApp and XenDesktop license holders. The most comprehensive application

More information

Module 4 - Introduction to XenServer Storage Repositories

Module 4 - Introduction to XenServer Storage Repositories Module 4 - Introduction to XenServer Storage Repositories Page 1 Table of contents Scenario... 3 Exercise 1: Creating an NFS Storage Repository... 4 Exercise 2: Probing an Storage Repository... 9 Exercise

More information

Citrix XenServer 5.6 Administrator's Guide. Published June 2010 1.1 Edition

Citrix XenServer 5.6 Administrator's Guide. Published June 2010 1.1 Edition Citrix XenServer 5.6 Administrator's Guide Published June 2010 1.1 Edition Citrix XenServer 5.6 Administrator's Guide Copyright 2009 Citrix All Rights Reserved. Version: 5.6 Citrix, Inc. 851 West Cypress

More information

Xen Cloud Platform Update

Xen Cloud Platform Update Xen Cloud Platform Update John Garbutt Senior Software Developer, Cloud, Citrix @johngarbutt What is Xen Cloud Platform? The Xen Hypervisor was designed for the Cloud straight from the outset! What is

More information

Citrixxperience.com. 1Y0-A24 Citrix XenServer 5.6 Administration. Study Guide. Version 1.0 (June 16, 2011)

Citrixxperience.com. 1Y0-A24 Citrix XenServer 5.6 Administration. Study Guide. Version 1.0 (June 16, 2011) Citrixxperience.com 1Y0-A24 Citrix XenServer 5.6 Administration Study Guide Version 1.0 (June 16, 2011) 1Y0-A24 Citrix XenServer 5.6 Administration Study Guide This Study Guide was created by Citrixxperience.com.

More information

Citrix XenServer 7.0 Virtual Machine User's Guide. Published June 2016 1.0 Edition

Citrix XenServer 7.0 Virtual Machine User's Guide. Published June 2016 1.0 Edition Citrix XenServer 7.0 Virtual Machine User's Guide Published June 2016 1.0 Edition Citrix XenServer 7.0 Virtual Machine User's Guide Copyright 2016 Citrix Systems. Inc. All Rights Reserved. Version: 7.0

More information

XenServer Storage Overview. Worldwide Field Readiness. XenServer Storage Overview. Target Audience

XenServer Storage Overview. Worldwide Field Readiness. XenServer Storage Overview. Target Audience XenServer Storage Overview Worldwide Field Readiness XenServer Storage Overview Overview This document describes how XenServer provides and keeps track of the storage supplied to its guests. The first

More information

XenServer Pool Replication: Disaster Recovery

XenServer Pool Replication: Disaster Recovery XenServer Pool Replication: Disaster Recovery Summary This article describes how to use Citrix XenServer to provide an easy-to-configure Disaster Recovery (DR) environment when using a Network-attached

More information

Citrix XenServer 6.2.0 Installation Guide. Published Wednesday, 10 September 2014 1.0 Edition

Citrix XenServer 6.2.0 Installation Guide. Published Wednesday, 10 September 2014 1.0 Edition Citrix XenServer 6.0 Installation Guide Published Wednesday, 10 September 2014 0 Edition Citrix XenServer 6.0 Installation Guide Copyright 2013 Citrix Systems. Inc. All Rights Reserved. Version: 6.0 Citrix,

More information

High Availability for Citrix XenServer

High Availability for Citrix XenServer WHITE PAPER Citrix XenServer High Availability for Citrix XenServer Enhancing XenServer Fault Tolerance with High Availability www.citrix.com Contents Contents... 2 Heartbeating for availability... 4 Planning

More information

What is the difference between XenServer and the open-source Xen Project Hypervisor?

What is the difference between XenServer and the open-source Xen Project Hypervisor? Citrix XenServer 6.2.0 Technical FAQ Contents Citrix XenServer 6.2.0 FAQ Product Overview Hardware Product Limits Resource Sharing Guest Operating Systems XenCenter Command-line Interface (CLI) VMs Storage

More information

Xen Cloud Platform 0.1 User Security

Xen Cloud Platform 0.1 User Security 1 Xen Cloud Platform 0.1 User Security 0.1 Published October 2009 1.0 Edition Xen Cloud Platform 0.1 User Security Xen Cloud Platform 0.1 User Security Published October 2009 Copyright 2009 Xen, XenSource,

More information

Citrix XenServer 6.5 Virtual Machine User's Guide. Published Monday, 20 April 2015 1.0 Edition

Citrix XenServer 6.5 Virtual Machine User's Guide. Published Monday, 20 April 2015 1.0 Edition Citrix XenServer 6.5 Virtual Machine User's Guide Published Monday, 20 April 2015 1.0 Edition Citrix XenServer 6.5 Virtual Machine User's Guide Copyright 2015 Citrix Systems. Inc. All Rights Reserved.

More information

Citrix XenServer and NetApp Storage Best Practices Citrix Systems, Inc. and NetApp, Inc. June 2012 TR 3732 Rev 4.0

Citrix XenServer and NetApp Storage Best Practices Citrix Systems, Inc. and NetApp, Inc. June 2012 TR 3732 Rev 4.0 Citrix XenServer and NetApp Storage Best Practices Citrix Systems, Inc. and NetApp, Inc. June 2012 TR 3732 Rev 4.0 www.citrix.com Contents Chapter 1: Getting Started... 6 Overview of Citrix XenServer...

More information

Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide. Published Monday, 17 January 2011 1.2 Edition

Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide. Published Monday, 17 January 2011 1.2 Edition Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide Published Monday, 17 January 2011 1.2 Edition Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide Copyright 2011 Citrix Systems. Inc. All Rights

More information

Citrix XenServer 6 Administration

Citrix XenServer 6 Administration Citrix XenServer 6 Administration CTX-XS06 DESCRIZIONE: In this Citrix XenServer 6.0 training course, you will gain the foundational knowledge necessary to effectively install, configure, administer, and

More information

CXS-203-1 Citrix XenServer 6.0 Administration

CXS-203-1 Citrix XenServer 6.0 Administration Page1 CXS-203-1 Citrix XenServer 6.0 Administration In the Citrix XenServer 6.0 classroom training course, students are provided with the foundation necessary to effectively install, configure, administer,

More information

AMRES Virtualization Solution

AMRES Virtualization Solution AMRES Virtualization Solution Miloš Kukoleča, AMRES NA3 T2, Datacenter IaaS workshop, Helsinki, 12.09.2014. Virtualization Benefits Less power consumption Higher infrastructure utilization Faster service

More information

Architektur XenServer

Architektur XenServer 1 Architektur XenServer 2 XenServer Architectural Components 3 Architectural Changes The Open vswitch is now the default network stack for the product. Improvements to Distributed Virtual Switching include

More information

Citrix XenServer: VM Protection and Recovery Quick Start Guide

Citrix XenServer: VM Protection and Recovery Quick Start Guide Citrix XenServer: VM Protection and Recovery Quick Start Guide www.citrix.com Contents What is XenServer VM Protection and Recovery?... 3 Creating a VM Protection Policy... 3 Page 2 What is XenServer VM

More information

Cloud.com CloudStack 2.1.3 Release Notes

Cloud.com CloudStack 2.1.3 Release Notes Cloud.com CloudStack 2.1.3 Release Notes September, 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor Aware Network,

More information

Citrix XenServer and NetApp Storage Best Practices

Citrix XenServer and NetApp Storage Best Practices Citrix XenServer and NetApp Storage Best Practices Citrix Systems, Inc. and NetApp, Inc. February 2011 TR-3732 Rev 3.0 Table of Contents The Challenge of Today s Enterprise... 3 Citrix XenServer for Enterprise-Ready

More information

XenServer 5.5.0 User Security

XenServer 5.5.0 User Security XenServer 5.5.0 User Security 5.5.0 Published July 2009 1.0 Edition XenServer 5.5.0 User Security Published July 2009 Copyright 2008 Citrix Systems, Inc. Xen, XenSource, XenEnterpise, XenServer, XenExpress

More information

Citrix XenServer and NetApp Storage Best Practices

Citrix XenServer and NetApp Storage Best Practices Citrix XenServer and NetApp Storage Best Practices Citrix Systems, Inc. and NetApp, Inc. May 2010 TR-3732 Rev 2.9 Table of Contents The Challenge of Today s Enterprise...3 Citrix XenServer for Enterprise-Ready

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Citrix XenServer Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

Effiziente Server- Virtualisierung mit MS Hyper-V und Citrix Essentials

Effiziente Server- Virtualisierung mit MS Hyper-V und Citrix Essentials Effiziente Server- Virtualisierung mit MS Hyper-V und Citrix Essentials Roger Bösch, Citrix Systems International GmbH Markus Erlacher, Microsoft Schweiz GmbH Windows Server 2008 R2 Service Pack 1 Dynamic

More information

Citrix XenServer 6.5 Administrator's Guide. Published Wednesday, 21 January 2015 1.0 Edition

Citrix XenServer 6.5 Administrator's Guide. Published Wednesday, 21 January 2015 1.0 Edition Citrix XenServer 6.5 Administrator's Guide Published Wednesday, 21 January 2015 1.0 Edition Citrix XenServer 6.5 Administrator's Guide Copyright 2015 Citrix Systems. Inc. All Rights Reserved. Version:

More information

Citrix XenServer 6.0 Administrator's Guide. Published Friday, 02 March 2012 1.1 Edition

Citrix XenServer 6.0 Administrator's Guide. Published Friday, 02 March 2012 1.1 Edition Citrix XenServer 6.0 Administrator's Guide Published Friday, 02 March 2012 1.1 Edition Citrix XenServer 6.0 Administrator's Guide Copyright 2012 Citrix Systems. Inc. All Rights Reserved. Version: 6.0 Citrix,

More information

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««;

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««; Security N Environments '' J J H -. i ^ s j}! Dave Shackleford '**»* t i j i««; l:i in: John Wiley &. Sons, Inc. Contents Introduction.. : xix Chapter l Fundamentals of Virtualization Security Virtualization

More information

Citrix XenServer Product Frequently Asked Questions

Citrix XenServer Product Frequently Asked Questions Citrix XenServer Product FAQ Citrix XenServer Product Frequently Asked Questions Version 4.0.1i Citrix XenServer FAQ 4.01i 2 New Features... 3 Hardware Support... 3 Product Limits... 6 Virtual Machine

More information

Drobo How-To Guide. Set Up and Configure a Drobo iscsi SAN as Shared Storage for Citrix XenServer. Topics. Initial Configuration STEP 1

Drobo How-To Guide. Set Up and Configure a Drobo iscsi SAN as Shared Storage for Citrix XenServer. Topics. Initial Configuration STEP 1 SAN storage is a must when you need to maximize mobility and availability for Citrix XenServer. Drobo provides sophisticated data protection with BeyondRAID technology in a package that is easy to use

More information

End to end application delivery & Citrix XenServer 5. John Glendenning Vice President Server Virtualization, EMEA

End to end application delivery & Citrix XenServer 5. John Glendenning Vice President Server Virtualization, EMEA End to end application delivery & Citrix XenServer 5 John Glendenning Vice President Server Virtualization, EMEA Businesses Run on Applications Users Apps 2 Users and Apps are Moving Further Apart Consolidation

More information

Getting Started with Sint & Piet

Getting Started with Sint & Piet Getting Started with Sint & Piet Status as per 4 April 2012 Elements of NDPF Service Cluster GSP Piet MTDR24 : 16 blade servers Sint SAN storage MTDR23 :50 TByte Existing set of Generics 2008/A few of

More information

How To Create A Virtual Machine In A Linux Box (Xenserver)

How To Create A Virtual Machine In A Linux Box (Xenserver) Citrix XenServer 6.2.0 Virtual Machine User's Guide Published Tuesday, 25 June 2013 1.0 Edition Citrix XenServer 6.2.0 Virtual Machine User's Guide Copyright 2013 Citrix Systems. Inc. All Rights Reserved.

More information

1Y0-A09. Implementing Citrix XenServer Enterprise Edition 5.0. http://www.examskey.com/1y0-a09.html

1Y0-A09. Implementing Citrix XenServer Enterprise Edition 5.0. http://www.examskey.com/1y0-a09.html Citrix 1Y0-A09 Implementing Citrix XenServer Enterprise Edition 5.0 TYPE: DEMO http://www.examskey.com/1y0-a09.html Examskey Citrix 1Y0-A09 exam demo product is here for you to test the quality of the

More information

StorPool Distributed Storage Software Technical Overview

StorPool Distributed Storage Software Technical Overview StorPool Distributed Storage Software Technical Overview StorPool 2015 Page 1 of 8 StorPool Overview StorPool is distributed storage software. It pools the attached storage (hard disks or SSDs) of standard

More information

WHITE PAPER Citrix XenServer: Virtual Machine Backup. Citrix XenServer. Virtual Machine Backup. www.citrix.com

WHITE PAPER Citrix XenServer: Virtual Machine Backup. Citrix XenServer. Virtual Machine Backup. www.citrix.com WHITE PAPER Citrix XenServer: Virtual Machine Backup Citrix XenServer Virtual Machine Backup www.citrix.com Contents Introduction and Overview...3 Hot Backup Approaches...3 Agent Based Backup...3 Backend

More information

Khóa học dành cho các kỹ sư hệ thống, quản trị hệ thống, kỹ sư vận hành cho các hệ thống ảo hóa ESXi, ESX và vcenter Server

Khóa học dành cho các kỹ sư hệ thống, quản trị hệ thống, kỹ sư vận hành cho các hệ thống ảo hóa ESXi, ESX và vcenter Server 1. Mục tiêu khóa học. Khóa học sẽ tập trung vào việc cài đặt, cấu hình và quản trị VMware vsphere 5.1. Khóa học xây dựng trên nền VMware ESXi 5.1 và VMware vcenter Server 5.1. 2. Đối tượng. Khóa học dành

More information

Directions for VMware Ready Testing for Application Software

Directions for VMware Ready Testing for Application Software Directions for VMware Ready Testing for Application Software Introduction To be awarded the VMware ready logo for your product requires a modest amount of engineering work, assuming that the pre-requisites

More information

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version

More information

Managing your Red Hat Enterprise Linux guests with RHN Satellite

Managing your Red Hat Enterprise Linux guests with RHN Satellite Managing your Red Hat Enterprise Linux guests with RHN Satellite Matthew Davis, Level 1 Production Support Manager, Red Hat Brad Hinson, Sr. Support Engineer Lead System z, Red Hat Mark Spencer, Sr. Solutions

More information

Linux & Docker auf Azure

Linux & Docker auf Azure Linux & Docker auf Azure Linux in der Azure Cloud Web Mail Twitter Rainer Stropek software architects gmbh http://www.timecockpit.com rainer@timecockpit.com @rstropek Saves the day. Your Host Rainer Stropek

More information

Technical and commercial comparison of Citrix XenServer and VMware

Technical and commercial comparison of Citrix XenServer and VMware WHITE PAPER Citrix XenServer Technical and commercial comparison of Citrix XenServer and VMware Citrix XenServer and VMware vsphere are two leading server virtualization platforms. This document provides

More information

Technical and Commercial Comparison of Citrix XenServer and VMware vsphere

Technical and Commercial Comparison of Citrix XenServer and VMware vsphere White Paper Technical and Commercial Comparison of Citrix XenServer and VMware vsphere November 2011 Customers exploring server virtualization solutions should consider the technical and commercial aspects

More information

USP IT-Security Consulting & Projects

USP IT-Security Consulting & Projects Consulting Operation Products & Solutions USP Leistungsübersicht Web Access Management Web Application Firewall Authentication-Proxy Single Sign On USP Secure Entry Server Suite Network Access Control

More information

Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021

Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021 Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021 In dem Kurs MOC 55021 Configuring and Administering Hyper-V in Windows Server 2012 lernen Sie die Konfiguration und Administration

More information

Citrix XenServer Design: Designing XenServer Network Configurations

Citrix XenServer Design: Designing XenServer Network Configurations Citrix XenServer Design: Designing XenServer Network Configurations www.citrix.com Contents About... 5 Audience... 5 Purpose of the Guide... 6 Finding Configuration Instructions... 6 Visual Legend... 7

More information

Sheepdog: distributed storage system for QEMU

Sheepdog: distributed storage system for QEMU Sheepdog: distributed storage system for QEMU Kazutaka Morita NTT Cyber Space Labs. 9 August, 2010 Motivation There is no open source storage system which fits for IaaS environment like Amazon EBS IaaS

More information

ENTERPRISE HYPERVISOR COMPARISON

ENTERPRISE HYPERVISOR COMPARISON ENTERPRISE HYPERVISOR COMPARISON Version 5.5 A feature comparison of the hypervisors from Citrix, Microsoft, RedHat and VMware. Updated to the latest version, Citrix XenServer 6.2, Microsoft Hyper-V 2012,

More information

RED HAT ENTERPRISE VIRTUALIZATION

RED HAT ENTERPRISE VIRTUALIZATION Giuseppe Paterno' Solution Architect Jan 2010 Red Hat Milestones October 1994 Red Hat Linux June 2004 Red Hat Global File System August 2005 Red Hat Certificate System & Dir. Server April 2006 JBoss April

More information

Neueste Microsoft Server Technologien - Vorteile und Nutzen im Überblick Michael Faden Technology Solution Professional Datacenter Microsoft Schweiz

Neueste Microsoft Server Technologien - Vorteile und Nutzen im Überblick Michael Faden Technology Solution Professional Datacenter Microsoft Schweiz Neueste Microsoft Server Technologien - Vorteile und Nutzen im Überblick Michael Faden Technology Solution Professional Datacenter Microsoft Schweiz Die Microsoft Cloud OS Vision Microsoft Cloud Erfahrung

More information

Virtualization Technologies. Embrace the new world of healthcare

Virtualization Technologies. Embrace the new world of healthcare Virtualization Technologies Embrace the new world of healthcare Overview Introduction and Virtualization Basics Core Virtualization Technologies Enterprise Server Virtualization Solutions End User and

More information

Release Notes. Software Versions and Hardware Supported

Release Notes. Software Versions and Hardware Supported everrun Release Notes NOTE: For the most recent documentation and updates, please log in to the everrun customer web portal and download the latest versions. The link is: http://www.stratus.com/stratus/home/services/customersupport

More information

VMware vsphere: [V5.5] Admin Training

VMware vsphere: [V5.5] Admin Training VMware vsphere: [V5.5] Admin Training (Online Remote Live TRAINING) Summary Length Timings : Formats: Lab, Live Online : 5 Weeks, : Sat, Sun 10.00am PST, Wed 6pm PST Overview: This intensive, extended-hours

More information

Live Migration. Aidan Finn

Live Migration. Aidan Finn Live Migration Aidan Finn About Aidan Finn Technical Sales Lead at MicroWarehouse (Dublin) Working in IT since 1996 MVP (Virtual Machine) Experienced with Windows Server/Desktop, System Center, virtualisation,

More information

Windows Server 2012. Die Bereitstellung einer Private Cloud. Alexander Ortha & Matthias Arenskötter. Technologieberater Microsoft Deutschland GmbH

Windows Server 2012. Die Bereitstellung einer Private Cloud. Alexander Ortha & Matthias Arenskötter. Technologieberater Microsoft Deutschland GmbH Windows Server 2012 Die Bereitstellung einer Private Cloud Alexander Ortha & Matthias Arenskötter Technologieberater Microsoft Deutschland GmbH 1 Microsoft s Public Cloud Learning 2 Windows Server 2012

More information

Citrix XenServer 6.0 Virtual Machine Installation Guide. Published Thursday, 15 September 2011 1.0 Edition

Citrix XenServer 6.0 Virtual Machine Installation Guide. Published Thursday, 15 September 2011 1.0 Edition Citrix XenServer 6.0 Virtual Machine Installation Guide Published Thursday, 15 September 2011 1.0 Edition Citrix XenServer 6.0 Virtual Machine Installation Guide Copyright 2011 Citrix Systems. Inc. All

More information

Vmware VSphere 6.0 Private Cloud Administration

Vmware VSphere 6.0 Private Cloud Administration To register or for more information call our office (208) 898-9036 or email register@leapfoxlearning.com Vmware VSphere 6.0 Private Cloud Administration Class Duration 5 Days Introduction This fast paced,

More information

VMware vsphere 5.1 Advanced Administration

VMware vsphere 5.1 Advanced Administration Course ID VMW200 VMware vsphere 5.1 Advanced Administration Course Description This powerful 5-day 10hr/day class is an intensive introduction to VMware vsphere 5.0 including VMware ESX 5.0 and vcenter.

More information

Course: CXD-202 Implementing Citrix XenDesktop Administration

Course: CXD-202 Implementing Citrix XenDesktop Administration Course: CXD-202 Implementing Citrix XenDesktop Administration Overview This course provides the foundation necessary for administrators to effectively centralize and manage desktops in the datacenter and

More information

A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool

A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool Stefan Bujack A Highly Versatile Virtual Data Center Ressource Pool Umeå, 27.05.09 Overview

More information

Moderne Sicherheit. Fokussiert auf Business Continuity, Mobilität & Application Control. Marc Mathys Country Manager Switzerland

Moderne Sicherheit. Fokussiert auf Business Continuity, Mobilität & Application Control. Marc Mathys Country Manager Switzerland Moderne Sicherheit Fokussiert auf Business Continuity, Mobilität & Application Control Marc Mathys Country Manager Switzerland Network Security History in a Nutshell 1990s The Internet is bad if we do

More information

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo, Inc. One Burlington Woods Drive Burlington, MA 01803 USA Phone: (781) 373---3540 www.vmturbo.com Table of Contents Introduction

More information

MODULE 3 VIRTUALIZED DATA CENTER COMPUTE

MODULE 3 VIRTUALIZED DATA CENTER COMPUTE MODULE 3 VIRTUALIZED DATA CENTER COMPUTE Module 3: Virtualized Data Center Compute Upon completion of this module, you should be able to: Describe compute virtualization Discuss the compute virtualization

More information

Xen Virtualization: Xen (source) and XenServer

Xen Virtualization: Xen (source) and XenServer Xen Virtualization: Xen (source) and XenServer An introduction to free and commercial methods of creating virtual servers by Mark Sallee, Sys Admin, NCAR " Why Virtualization? Scenario: imagine that you

More information

PS Series Storage Array - Configuration, Operation and Management

PS Series Storage Array - Configuration, Operation and Management Course Title: PS Series Storage Array - Configuration, Operation and Management The Partner Technical Training PS Series Storage Array - Configuration, Operation and Management course provides the opportunity

More information

Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins

Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins Abstract SOA (Service-Orientierte Architektur) war vor einigen Jahren ein absolutes Hype- Thema in Unternehmen. Mittlerweile ist es aber sehr viel

More information

Technical and commercial comparison of Citrix XenServer and VMware vsphere

Technical and commercial comparison of Citrix XenServer and VMware vsphere Technical and commercial comparison of Citrix XenServer and VMware vsphere Customers exploring server virtualization solutions should consider the technical and commercial aspects of Citrix XenServer and

More information

Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011

Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011 Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011 Executive Summary Large enterprise Hyper-V deployments with a large number

More information

RED HAT ENTERPRISE Linux & VIRTUALIZATION

RED HAT ENTERPRISE Linux & VIRTUALIZATION RED HAT ENTERPRISE Linux & VIRTUALIZATION Dennis Deitermann Solution Architect 2 We are simplifying the RHEL product portfolio Replacing the four RHEL products we currently sell with

More information

Implementing a PKI Infrastructure with Windows Server 2008/2012

Implementing a PKI Infrastructure with Windows Server 2008/2012 Implementing a PKI Infrastructure with Windows Server 2008/2012 Dauer: 2 Tage Kursnummer: GKWINPKI Überblick: Noch mehr als bei anderen IT-Projekten kommt bei der Implementierung einer CA-Infrastruktur

More information

Multipurpsoe Business Partner Certificates Guideline for the Business Partner

Multipurpsoe Business Partner Certificates Guideline for the Business Partner Multipurpsoe Business Partner Certificates Guideline for the Business Partner 15.05.2013 Guideline for the Business Partner, V1.3 Document Status Document details Siemens Topic Project name Document type

More information

CMB-207-1I Citrix XenApp and XenDesktop Fast Track

CMB-207-1I Citrix XenApp and XenDesktop Fast Track 1800 ULEARN (853 276) www.ddls.com.au CMB-207-1I Citrix XenApp and XenDesktop Fast Track Length 5 days Price $5995.00 (inc GST) This fast-paced course covers select content from training courses CXA-206

More information

Upgrade-Preisliste. Upgrade Price List

Upgrade-Preisliste. Upgrade Price List Upgrade-Preisliste Mit Firmware Features With list of firmware features Stand/As at: 10.09.2014 Änderungen und Irrtümer vorbehalten. This document is subject to changes. copyright: 2014 by NovaTec Kommunikationstechnik

More information

vsphere Private Cloud RAZR s Edge Virtualization and Private Cloud Administration

vsphere Private Cloud RAZR s Edge Virtualization and Private Cloud Administration Course Details Level: 1 Course: V6PCRE Duration: 5 Days Language: English Delivery Methods Instructor Led Training Instructor Led Online Training Participants: Virtualization and Cloud Administrators,

More information

How To Use Netbackup 7.5.0.2.2 (Vmware) On A Virtual Machine

How To Use Netbackup 7.5.0.2.2 (Vmware) On A Virtual Machine Support for NetBackup 7.x in virtual environments Introduction This tech note (TECH127089) describes support for NetBackup in virtual environments. Symantec Corporation is committed to serving the virtualization

More information

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS Server virtualization offers tremendous benefits for enterprise IT organizations server

More information

Citrix Training. Course: Citrix Training. Duration: 40 hours. Mode of Training: Classroom (Instructor-Led)

Citrix Training. Course: Citrix Training. Duration: 40 hours. Mode of Training: Classroom (Instructor-Led) Citrix Training Course: Citrix Training Duration: 40 hours Mode of Training: Classroom (Instructor-Led) Virtualization has redefined the way IT resources are consumed and services are delivered. It offers

More information

Citrix XenClient 1.0

Citrix XenClient 1.0 White Paper Citrix XenClient Citrix XenClient 1.0 Proof of Concept Implementation Guide www.citrix.com Contents Introduction... 3 Hardware and Software Requirements... 3 Installation and Configuration...

More information

VMware vsphere on NetApp. Course: 5 Day Hands-On Lab & Lecture Course. Duration: Price: $ 4,500.00. Description:

VMware vsphere on NetApp. Course: 5 Day Hands-On Lab & Lecture Course. Duration: Price: $ 4,500.00. Description: Course: VMware vsphere on NetApp Duration: 5 Day Hands-On Lab & Lecture Course Price: $ 4,500.00 Description: Managing a vsphere storage virtualization environment requires knowledge of the features that

More information

Hyper-V Cloud Practice Builder. Disaster Recovery Using DPM 2010

Hyper-V Cloud Practice Builder. Disaster Recovery Using DPM 2010 Hyper-V Cloud Practice Builder Disaster Recovery Using DPM 2010 The Hyper-V Cloud Practice Builder from Microsoft Enterprise Services can help Microsoft partners by: Accelerating practice development by

More information

CloudStack 3.0.0 Release Notes

CloudStack 3.0.0 Release Notes CloudStack 3.0.0 Release Notes For CloudStack Version 3.0.0 Revised March 22, 2012 2:19 PM Pacific 2011, 2012 Citrix Systems, Inc. All rights reserved. Specifications are subject to change without notice.

More information

SOFTWARE-DEFINED STORAGE IN ACTION. What s new in SANsymphony-V v10

SOFTWARE-DEFINED STORAGE IN ACTION. What s new in SANsymphony-V v10 SOFTWARE-DEFINED STORAGE IN ACTION What s new in SANsymphony-V v10 Andre Lahrmann Copyright 2014 DataCore Software Corp. All Rights Reserved. Copyright 2014 DataCore Software Corp. All Rights Reserved.

More information

Simplified Private Cloud Management

Simplified Private Cloud Management BUSINESS PARTNER ClouTor Simplified Private Cloud Management ClouTor ON VSPEX by LOCUZ INTRODUCTION ClouTor on VSPEX for Enterprises provides an integrated software solution for extending your existing

More information

Sanbolic s SAN Storage Enhancing Software Portfolio

Sanbolic s SAN Storage Enhancing Software Portfolio Software to Simplify and Share SAN Storage Sanbolic s SAN Storage Enhancing Software Portfolio Overview of Product Suites www.sanbolic.com Version 2.0 Page 2 of 10 Contents About Sanbolic... 3 Sanbolic

More information

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0 Backing Up the CTERA Portal Using Veeam Backup & Replication CTERA Portal Datacenter Edition May 2014 Version 4.0 Copyright 2009-2014 CTERA Networks Ltd. All rights reserved. No part of this document may

More information

Cloud Optimize Your IT

Cloud Optimize Your IT Cloud Optimize Your IT Windows Server 2012 The information contained in this presentation relates to a pre-release product which may be substantially modified before it is commercially released. This pre-release

More information