Virtual Server Management

Size: px
Start display at page:

Download "Virtual Server Management"

Transcription

1 Virtual Server Management with KVM for IBM z Systems Viktor Mihajlovski <mihajlov@de.ibm.com> 1

2 Agenda KVM virtualization components Managing virtual servers Managing virtual resources Migrating running virtual servers Setting up virtual servers 2

3 KVM Virtualization Components Host resource management Virtual server life cycle libvirt I/O virtualization CPU and memory support QEMU CPU and memory kvm kernel module 3

4 KVM management applications Host virsh virt-manager 4

5 Virtual server states (simplified) domain xml define shut off shutdown destroy start running resume suspend paused 5

6 Defining a virtual server: the domain XML <domain type='kvm'> <name>vs1</name> <memory>524288</memory> <vcpu>2</vcpu> <os> <type arch='s390x' machine='s390-ccw-virtio'>hvm</type> </os> <iothreads>1</iothreads> <devices> <disk type='block' device='disk'> <driver name='qemu' type='raw' cache='none' iothread='1' io='native'/> <source dev='/dev/disk/by-path/ccw '/> <target dev='vda' bus='virtio'/> </disk> <interface type='direct'> Host vs1 <source dev='bond0' mode='bridge'/> 512MB <model type='virtio'/> </interface> <console type='pty'> vda eth0 <target type='sclp'/> </console> </devices> </domain> bond

7 Defining a virtual server with virsh Step 1: Make sure the libvirt daemon is running # systemctl status libvirtd libvirtd.service - Virtualization daemon Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled) Active: active (running) since Thu :55:29 CEST; 2 months 3 days ago Docs: man:libvirtd(8) Main PID: 5615 (libvirtd) CGroup: /system.slice/libvirtd.service 5615 /usr/sbin/libvirtd 6750 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf... Step 2: Define a virtual server # virsh define vs1.xml Domain vs1 defined from vs1.xml 7

8 Starting and stopping a virtual server with virsh Start a virtual server # virsh start vs1 Domain vs1 started Shut down a virtual server # virsh shutdown vs1 Domain vs1 is being shut down 8

9 Monitoring a virtual server with virsh List running virtual servers # virsh list Id Name State vs1 running Display virtual server details # virsh dominfo vs1 Id: 11 Name: vs1 UUID: ea6de929-a4df-487d-8054-d50b4af20708 OS Type: hvm State: running CPU(s): 2 CPU time: 266.6s Max memory: KiB Used memory: KiB Persistent: yes Autostart: disable Managed save: no Security model: selinux Security DOI: 0 Security label: system_u:system_r:svirt_t:s0:c24,c532 (enforcing) 9

10 Virtualizing disk storage Host vs1 vda vs2 vda vs3 vda <disk type='file' device='disk'> <source file='/var/libvirt/images/img01'/> <driver name='qemu' type='raw' io='native' cache='none' iothread='1'/> <target dev='vda' bus='virtio'/> </disk> dm-0 img01 img00 <disk type='block' device='disk'> <source dev='/dev/dasda'/> <driver name='qemu' type='raw' io='native' cache='none' iothread='1'/> <target dev='vda' bus='virtio'/> </disk> multipath host0 host1 dasda chpa dasdb chpb <disk type='block' device='disk'> <source dev='/dev/dm-0'/> <driver name='qemu' type='raw' io='native' cache='none' iothread='1'/> <target dev='vda' bus='virtio'/> </disk> SCSI LUN ECKD vola ECKD volb 10

11 Virtualizing network interfaces Host vs1 eth0 vs2 eth0 <interface type='direct'> <source dev='bond0'/> <model type='virtio'/> <mac address='47:11:af:fe:08:15'/> </interface> bond ovsbr0 <interface type='bridge'> <source bridge='ovsbr0'/> <model type='virtio'/> <virtualport type='openvswitch'/> <mac address='be:ef:ca:fe:fe:ed'/> </interface> osa0 osa1 osa2 osa3 11

12 Hotplugging devices Host vs1 Host vs1 vda vda vdb attach-device vol0001 vol0002 vol0001 vol0002 <disk type='file' device='disk'> <source file='/var/libvirt/images/vol0002'/> <driver name='qemu' type='raw' io='native' cache='none' iothread='1'/> <target dev='vdb' bus='virtio'/> </disk> 12

13 Virtual SCSI DVD Hostworu vs1 Host vs1 vda sda vda sda change-media --eject vol0001 someiso vol0001 someiso <disk type='file' device='cdrom'> <source file='/var/libvirt/images/some.iso'/> <driver name='qemu' type='raw'/> <target dev='sda' bus='scsi'/> </readonly> </disk> 13

14 Attaching a second disk with virsh Before attach # virsh domblklist vs1 Target Source vda /dev/disk/by-path/ccw Attach # cat vdb.xml <disk type='block' device='disk'> <driver name='qemu' type='raw' cache='none' iothread='1' io='native'/> <source dev='/dev/disk/by-path/ccw '/> <target dev='vdb' bus='virtio'/> </disk> # virsh attach-device live vs1 vdb.xml Device attached successfully After attach # virsh domblklist vs1 Target Source vda /dev/disk/by-path/ccw vdb /dev/disk/by-path/ccw

15 Ejecting a virtual CD ROM Before eject # virsh domblklist vs1 Target Source vda /dev/mapper/ ffc5e f sda /var/lib/libvirt/images/bei.iso eject # virsh change-media --eject vs1 sda Successfully ejected media. After eject # virsh domblklist vs1 Target Source vda /dev/mapper/ ffc5e f sda - 15

16 Virtual Server Trouble Shooting <on_crash> restart: potential reboot loops destroy: default, allows simple external automation preserve: allows detailed analysis <watchdog model='diag288' action='...'/> inject-nmi: trigger in-guest crash handling dump: produce a guest memory dump pause: wait for administrator action reset: see restart above 16

17 Observing a crash Before crash # virsh domstate --reason vs1 running (booted) Provoke crash in virtual server # virsh console vs1 ~ # echo c > /proc/sysrq-trigger [ ] sysrq: SysRq : Trigger a crash [ ] Kernel panic - not syncing: Fatal exception: panic_on_oops After crash # virsh domstate --reason vs1 crashed (panicked) 17

18 Migrating a running virtual server start Host A vs1 Host B virsh migrate vda eth0 bond0 ECKD volume bond0 dasda dasda osa0 osa1 osa0 osa1 18

19 Migrating a running virtual server in progress Host A Host B vs1 vs1 virsh migrate vda eth0 vda eth0 bond0 ECKD volume bond0 dasda dasda osa0 osa1 osa0 osa1 19

20 Migrating a running virtual server completed Host A Host B vs1 vda eth0 bond0 ECKD volume bond0 dasda dasda osa0 osa1 osa0 osa1 20

21 Converting an existing Linux installation Starting point: Linux installed on SCSI disk Perform a backup FIRST Modification needed: Mount filesystems by id or label NOT by block device name Same for boot configuration (root=...) # fstab... /dev/mapper/mpath0 / ext3 defaults # fstab... LABEL=/ / ext3 defaults

22 Converting an existing installation... Modify boot configuration Use LABEL=/ in zipl.conf or grub.conf Re-run zipl if necessary Set up hypervisor resources for virtual servers Ensure root disk is accessible from hypervisor Provide network connectivity Define a virtual server Write domain XML and run virsh define... Start the virtual server Run virsh console start Log in to the console and perform the necessary customizations Network interface configuration Additional file systems... 22

23 Installing a new guest Similar to z Systems LPAR installation FTP Server with installation media Boot from installaton kernel and RAM disk Steps Copy kernel and initial RAMdisks to hypervisor (e.g. /var/lib/libvirt/images) Define virtual server using direct kernel boot For possible command line options, see the Linux distributor's documentation After completing the installation, update the virtual server definition to boot from disk <domain type='kvm'> <name>zguest</name> <memory>524288</memory> <vcpu>2</vcpu> <os> <type arch='s390x' machine='s390-ccw-virtio'>hvm</type> <kernel>/var/lib/libvirt/kernel</kernel> <initrd>/var/lib/libvirt/image</initrd> <cmdline>install=ftp://user:password@server/directory/dvd1/...</cmdline> </os> </domain> 23

24 Publications for KVM base component KVM Virtual Server Quick Start, SC KVM Virtual Server Management, SC Device Drivers, Features, and Commands for Linux as a KVM Guest, SC Installing SUSE Linux Enterprise Server 12 as a KVM Guest, SC ibm.com/support/knowledgecenter 24

25 THANKS!!! Questions? 25

26 Trademarks IBM, the IBM logo, and ibm.com are trademarks or registered trademarks of International Business Machines Corporation in the United States, other countries, or both. If these and other IBM trademarked terms are marked on their first occurrence in this information with a trademark symbol ( or ), these symbols indicate U.S. registered or common law trademarks owned by IBM at the time this information was published. Such trademarks may also be registered or common law trademarks in other countries. A current list of IBM trademarks is available on the Web at Copyright and trademark information at The following are trademarks or registered trademarks of other companies. Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of others. 26

27 Backup 27

28 Terminology used in this presentation KVM virtual server, virtual server virtualized z Systems resources that comprise processor, memory, and I/O capabilities as provided and managed by KVM. A virtual server can include an operating system. KVM guest, guest an operating system of a virtual server. KVM host, host the Linux instance that runs the KVM virtual servers and manages their resources. In libvirt context also node (host) domain (virtual server) 28

Know your competition A review of qemu and KVM for System z

Know your competition A review of qemu and KVM for System z Know your competition A review of qemu and KVM for System z Mark Post SUSE Tuesday, August 5, 2014 Session 15693 Insert Custom Session QR if Desired. Agenda What is qemu and KVM High-level architecture

More information

Running KVM for Dynamic Infrastructure Creation

Running KVM for Dynamic Infrastructure Creation Running KVM for Dynamic Infrastructure Creation Jay Brenneman rjbrenn@us.ibm.com August 12, 2015 2015 IBM Corporation Trademarks The following are trademarks of the International Business Machines Corporation

More information

Scalability and stability of libvirt: Experiences with very large hosts

Scalability and stability of libvirt: Experiences with very large hosts Scalability and stability of libvirt: Experiences with very large hosts Marc Hartmayer Trademarks & Disclaimer The following are trademarks of the International Business Machines Corporation in the United

More information

KVM on IBM Z: Upstream News 1Q2018 Christian Bornträger IBM R&D, Böblingen, Germany

KVM on IBM Z: Upstream News 1Q2018 Christian Bornträger IBM R&D, Böblingen, Germany KVM on IBM Z: Upstream News 1Q2018 Christian Bornträger IBM R&D, Böblingen, Germany 1 2016,2018 2016,2018 IBM IBM Corporation Corporation Trademarks IBM, the IBM logo, and ibm.com

More information

KVM for IBM z Systems Limits and Configuration Recommendations

KVM for IBM z Systems Limits and Configuration Recommendations KVM for IBM z Systems KVM for IBM z Systems Limits and Configuration Recommendations This document can be found on the web, www.ibm.com/support/techdocs Search for document number under the category of

More information

Facilitating Incremental Backup. Eric Blake KVM Forum, 26 October 2018

Facilitating Incremental Backup. Eric Blake KVM Forum, 26 October 2018 Facilitating Incremental Backup Eric Blake KVM Forum, 26 October 2018 In this presentation Existing use of libvirt to capture disk backups from live guest Basics of proposed new API

More information

kernels-in-kernels kernels within kernels by Lee Elston Version 1.0 c CC-BY SA4

kernels-in-kernels kernels within kernels by Lee Elston Version 1.0 c CC-BY SA4 kernels within kernels by Lee Elston Version 1.0 ii The C-ALE (Cloud & Container Apprentice Linux Engineer) is a series of seminars held at existing conferences covering topics which are fundamental to

More information

Linux/QEMU/Libvirt. 4 Years in the Trenches. Chet Burgess Cisco Systems Scale 14x Sunday January 24th

Linux/QEMU/Libvirt. 4 Years in the Trenches. Chet Burgess Cisco Systems Scale 14x Sunday January 24th Linux/QEMU/Libvirt 4 Years in the Trenches Chet Burgess Cisco Systems Scale 14x Sunday January 24th Introduction What do I know? I ve spent the last 4 years designing, building, and managing OpenStack

More information

Red Hat Enterprise Linux 8.0 Beta

Red Hat Enterprise Linux 8.0 Beta Red Hat Enterprise Linux 8.0 Beta Configuring and managing virtualization A guide to managing virtualization on Red Hat Enterprise Linux 8.0 Beta Last Updated: 2018-11-30 Red Hat Enterprise Linux 8.0

More information

Kdump on the Mainframe

Kdump on the Mainframe LinuxCon Europe 2012 Kdump on the Mainframe Michael Holzheu VMDUMP! Stand-alone dump! Kdump! 2012 IBM Corporation Trademarks & Disclaimer The following are trademarks of the

More information

Virtual LoadMaster for KVM (Para Virtualized)

Virtual LoadMaster for KVM (Para Virtualized) Virtual LoadMaster for KVM (Para Virtualized) Installation Guide VERSION: 1.8 UPDATED: SEPTEMBER 2013 Copyright 2002-2013 KEMP Technologies, Inc. All Rights Reserved. Page 1 / 17 Copyright Notices Copyright

More information

Kdump on the Mainframe

Kdump on the Mainframe LinuxCon Europe 2012 Kdump on the Mainframe Michael Holzheu VMDUMP! Stand-alone dump! Kdump! 2012 IBM Corporation Trademarks & Disclaimer The following are trademarks of the

More information

Red Hat Enterprise Linux 6

Red Hat Enterprise Linux 6 Red Hat Enterprise Linux 6 Virtualization Host Configuration and Guest Installation Guide Installing and configuring your virtual environment Last Updated: 2017-10-20 Red Hat Enterprise Linux 6 Virtualization

More information

Activating Flex Grid License for Managed Services

Activating Flex Grid License for Managed Services DEPLOYMENT GUIDE Activating Flex Grid License for Managed Services NIOS version 8.3 August 2018 2018 Infoblox Inc. All rights reserved. Flex Grid License for Managed Services August 2018 Page 1 of 34 Contents

More information

Linux on System z - Disk I/O Alternatives

Linux on System z - Disk I/O Alternatives Mustafa Mesanovic 3/21/11 Linux on System z - Disk I/O Alternatives visit us at http://www.ibm.com/developerworks/linux/linux390/perf/index.html Linux on System z Performance Evaluation Trademarks IBM,

More information

Chapter 7. Getting Started with Boot from Volume

Chapter 7. Getting Started with Boot from Volume Chapter 7. Getting Started with Boot from Volume This chapter discusses creating a bootable volume from an existing minidisk, cloning a volume from an existing volume, and booting a virtual server instance

More information

Deploy the ExtraHop Discover Appliance on a Linux KVM

Deploy the ExtraHop Discover Appliance on a Linux KVM Deploy the ExtraHop Discover Appliance on a Linux KVM Published: 2018-07-16 The following procedure guides you through the deployment process of the ExtraHop Discover EDA 1000v or EDA 2000v virtual appliance

More information

Deploy the ExtraHop Explore Appliance on a Linux KVM

Deploy the ExtraHop Explore Appliance on a Linux KVM Deploy the ExtraHop Explore Appliance on a Linux KVM Published: 2018-12-14 In this guide, you will learn how to deploy an ExtraHop Explore virtual appliance on a Linux kernel-based virtual machine (KVM)

More information

KVM for IBM z Systems

KVM for IBM z Systems Introducing KVM for IBM z Systems 1 Key Terms Kernel QEMU Hypervisor Mainframe Operating System The central module of an operating system (OS) (Quick Emulator) A free and open-source hosted hypervisor

More information

Deploy the ExtraHop Explore Appliance on a Linux KVM

Deploy the ExtraHop Explore Appliance on a Linux KVM Deploy the ExtraHop Explore Appliance on a Linux KVM Published: 2018-07-17 In this guide, you will learn how to deploy an ExtraHop Explore virtual appliance on a Linux kernel-based virtual machine (KVM)

More information

Installing the Cisco IOS XRv 9000 Router in KVM Environments

Installing the Cisco IOS XRv 9000 Router in KVM Environments Installing the Cisco IOS XRv 9000 Router in KVM Environments These file types are needed to install Cisco IOS XRv 9000 Router on the KVM hypervisor:.qcow2 Used for booting the software image in KVM OpenStack

More information

Creating and Controlling KVM Guests using libvirt

Creating and Controlling KVM Guests using libvirt University of Victoria Faculty of Engineering Spring 2009 Work Term Report Creating and Controlling KVM Guests using libvirt Department of Physics University of Victoria Victoria, BC Matthew Vliet V00644304

More information

PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README

PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README February 18, 2010 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information

More information

KVM for IBM z Systems

KVM for IBM z Systems 2/3/2016 High Availability with KVM for IBM z Systems This document can be found on the web, www.ibm.com/support/techdocs Search for document number under the category of White Papers. Version Date: Feburary

More information

1 LINUX KERNEL & DEVICES

1 LINUX KERNEL & DEVICES GL-250: Red Hat Linux Systems Administration Course Length: 5 days Course Description: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course

More information

Seiji Aguchi. Development Status of Troubleshooting Features, Tracing, Message Logging in Linux Kernel 5/20/2014

Seiji Aguchi. Development Status of Troubleshooting Features, Tracing, Message Logging in Linux Kernel 5/20/2014 Development Status of Troubleshooting Features, Tracing, Message Logging in Linux Kernel 5/20/2014 Seiji Aguchi Information & Telecommunication Systems Company IT Platform Division Group, IT Platform R&D

More information

Daniel Defiebre

Daniel Defiebre Daniel Defiebre 728195 Inhaltsverzeichnis Übersicht Virtualisierung Libvirt VMM Node Service Node Cloud Client Infrastructure 27.06.2012 2 Übersicht 27.06.2012 3 Übersicht Service VMM KVM XEN Service VMM

More information

Storage Performance Tuning for FAST! Virtual Machines

Storage Performance Tuning for FAST! Virtual Machines Storage Performance Tuning for FAST! Virtual Machines Fam Zheng Senior Software Engineer LC3-2018 Outline Virtual storage provisioning NUMA pinning VM configuration options Summary Appendix 2 Virtual storage

More information

Sample XML Files. Sample XML File VTC Installation. The following sections provide sample XML files.

Sample XML Files. Sample XML File VTC Installation. The following sections provide sample XML files. The following sections provide sample XML files. Sample XML File VTC Installation, page 1 Sample XML File VTSR Installation, page 3 Sample XML File VTC Installation vtc-release2.1

More information

Cloud and Datacenter Networking

Cloud and Datacenter Networking Cloud and Datacenter Networking Università degli Studi di Napoli Federico II Dipartimento di Ingegneria Elettrica e delle Tecnologie dell Informazione DIETI Laurea Magistrale in Ingegneria Informatica

More information

Backing Chain Management in libvirt and qemu. Eric Blake KVM Forum, August 2015

Backing Chain Management in libvirt and qemu. Eric Blake KVM Forum, August 2015 Backing Chain Management in libvirt and qemu Eric Blake KVM Forum, August 2015 In this presentation How does the qcow2 format track point-in-time snapshots What are the qemu building

More information

Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2

Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2 Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2 First Published: 2017-08-18 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

vnios deployment on KVM

vnios deployment on KVM Deployment Guide vnios deployment on KVM January 2019 TABLE OF CONTENTS Overview... 3 Introduction... 3 vnios for KVM... 3 vnios deployment on KVM... 3 Preparing the environment... 3 Installing KVM and

More information

"Charting the Course... Enterprise Linux System Administration Course Summary

Charting the Course... Enterprise Linux System Administration Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

Red Hat Enterprise Linux 6

Red Hat Enterprise Linux 6 Red Hat Enterprise Linux 6 Virtualization Administration Guide Managing your virtual environment Last Updated: 2017-10-20 Red Hat Enterprise Linux 6 Virtualization Administration Guide Managing your virtual

More information

DM-Multipath Guide. Version 8.2

DM-Multipath Guide. Version 8.2 DM-Multipath Guide Version 8.2 SBAdmin and DM-Multipath Guide The purpose of this guide is to provide the steps necessary to use SBAdmin in an environment where SAN storage is used in conjunction with

More information

Introduction to Linux features for disk I/O

Introduction to Linux features for disk I/O Martin Kammerer 3/22/11 Introduction to Linux features for disk I/O visit us at http://www.ibm.com/developerworks/linux/linux390/perf/index.html Linux on System z Performance Evaluation Considerations

More information

SLES11-SP1 Driver Performance Evaluation

SLES11-SP1 Driver Performance Evaluation Linux on System z System and Performance Evaluation SLES-SP Driver Performance Evaluation Christian Ehrhardt Linux on System z System & Performance Evaluation IBM Deutschland Research & Development GmbH

More information

Enterprise Linux System Administration

Enterprise Linux System Administration Enterprise Linux System Administration Course GL250, 5 Days, Hands-On, Instructor-Led Introduction The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems.

More information

VIRTUAL GPU SOFTWARE R390 FOR RED HAT ENTERPRISE LINUX WITH KVM

VIRTUAL GPU SOFTWARE R390 FOR RED HAT ENTERPRISE LINUX WITH KVM VIRTUAL GPU SOFTWARE R390 FOR RED HAT ENTERPRISE LINUX WITH KVM RN-08687-001 _v6.0 Revision 02 April 2018 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 1.1. Updates in Release 6.0... 1

More information

Red Hat Enterprise Linux 5 Para-virtualized Windows Drivers Guide. Using the para-virtualized drivers Microsoft Windows Guide Edition 1.

Red Hat Enterprise Linux 5 Para-virtualized Windows Drivers Guide. Using the para-virtualized drivers Microsoft Windows Guide Edition 1. Red Hat Enterprise Linux 5 Para-virtualized Windows Drivers Guide Using the para-virtualized drivers Microsoft Windows Guide Edition 1.1 Perry Myers Chris Curran Red Hat Enterprise Linux 5 Para-virtualized

More information

Proposal of Live Dump

Proposal of Live Dump Proposal of Live Dump YOSHIDA Masanori Yokohama Research Laboratory, Hitachi LinuxCon Japan '12 1 Agenda 1.What is Live Dump? 2.Implementation 3.Future work 2 1.What is Live Dump? 2.Implementation 3.Future

More information

ETERNUS Disk storage systems Server Connection Guide (FCoE) for Linux

ETERNUS Disk storage systems Server Connection Guide (FCoE) for Linux Preface This document briefly explains the operations that need to be performed by the user in order to connect an ETERNUS2000 model 100 or 200, ETERNUS4000 model 300, 400, 500, or 600, or ETERNUS8000

More information

Control Center Planning Guide

Control Center Planning Guide Control Center Planning Guide Release 1.4.2 Zenoss, Inc. www.zenoss.com Control Center Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks

More information

VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM

VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM RN-08687-001 _v5.0 through 5.1 November 2017 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2

More information

Red Hat Network Satellite 5.0.0: Virtualization Step by Step

Red Hat Network Satellite 5.0.0: Virtualization Step by Step Red Hat Network Satellite 5.0.0: Virtualization Step by Step By Máirín Duffy, Red Hat Network Engineering Abstract Red Hat Network Satellite 5.0 is the first Satellite release to include virtual platform

More information

Thanks for Live Snapshots, Where's Live Merge?

Thanks for Live Snapshots, Where's Live Merge? Thanks for Live Snapshots, Where's Live Merge? KVM Forum 16 October 2014 Adam Litke Red Hat Adam Litke, Thanks for Live Snapshots, Where's Live Merge 1 Agenda Introduction of Live Snapshots and Live Merge

More information

Red Hat enterprise virtualization 3.1 feature comparison

Red Hat enterprise virtualization 3.1 feature comparison Red Hat enterprise virtualization 3.1 feature comparison at a glance Red Hat Enterprise Virtualization 3.1 is first fully open source, enterprise ready virtualization platform Compare functionality of

More information

Blueprints. Quick Start Guide for installing and running KVM

Blueprints. Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Note Before using this information and the product it supports, read the information

More information

Red Hat Enterprise Linux 5 Virtualization Guide

Red Hat Enterprise Linux 5 Virtualization Guide Red Hat Enterprise Linux 5 Virtualization Guide Virtualization Documentation Scott Radvan Dayle Parker Christopher Curran Jan Mark Holzer Red Hat Enterprise Linux 5 Virtualization Guide Virtualization

More information

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials Red Hat Enterprise Linux 5 Essentials 2 Red Hat Enterprise Linux 5 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution

More information

Veritas InfoScale 7.4 Virtualization Guide - Linux

Veritas InfoScale 7.4 Virtualization Guide - Linux Veritas InfoScale 7.4 Virtualization Guide - Linux Last updated: 2018-05-30 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered

More information

KVM Forum Vancouver, Daniel P. Berrangé

KVM Forum Vancouver, Daniel P. Berrangé KVM Forum Vancouver, 2011 Daniel P. Berrangé libvirt: Why it exists Stable: isolation from HV API changes Standard: portable across HV Simple: rapid application development Portable:

More information

Facilitating Incremental Backup. Eric Blake KVM Forum, 26 October 2018

Facilitating Incremental Backup. Eric Blake KVM Forum, 26 October 2018 Facilitating Incremental Backup Eric Blake KVM Forum, 26 October 2018 In this presentation Existing use of libvirt to capture disk backups from live guest Basics of proposed new API

More information

SUSE Linux Enterprise Server

SUSE Linux Enterprise Server SUSE Linux Enterprise Server 10 SP4 April 15, 2011 Virtualization with Xen www.novell.com Virtualization with Xen All content is copyright Novell, Inc. Legal Notice This manual is protected under Novell

More information

SUSE An introduction...

SUSE An introduction... Virtualization @ SUSE An introduction... Mike Latimer Sr. Engineering Manager SUSE mlatimer@suse.com Agenda Who is SUSE? Introduction to Virtualization Types of Hypervisors Xen KVM libvirt Virtualization

More information

Parallels Management Console

Parallels Management Console Parallels Management Console Getting Started Guide Copyright 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels

More information

iseries Tech Talk Linux on iseries Technical Update 2004

iseries Tech Talk Linux on iseries Technical Update 2004 iseries Tech Talk Linux on iseries Technical Update 2004 Erwin Earley IBM Rochester Linux Center of Competency rchlinux@us.ibm.com Agenda Enhancements to the Linux experience introduced with i5 New i5/os

More information

Linux on System z Distribution Performance Update

Linux on System z Distribution Performance Update Linux on System z Distribution Performance Update Christian Ehrhardt IBM Research and Development Germany 12 th August 2011 Session 10015 Agenda Performance Evaluation Results Environment Improvements

More information

ExpressCluster for Linux Ver3.0

ExpressCluster for Linux Ver3.0 ExpressCluster for Linux Ver3.0 Cluster Installation and Configuration Guide (Shared Disk) 2004.06.30 1st Revision Revision History Revision Revision date Descriptions 1 2004/06/30 New manual 2 EXPRESSCLUSTER

More information

Xen to KVM Migration Guide

Xen to KVM Migration Guide Xen to KVM Migration Guide SUSE Linux Enterprise Server 12 SP3 As the KVM virtualization solution is becoming more and more popular among server administrators, many of them need a path to migrate their

More information

ETERNUS Disk storage systems Server Connection Guide (FCoE) for Linux

ETERNUS Disk storage systems Server Connection Guide (FCoE) for Linux Preface This document briefly explains the operations that need to be performed by the user in order to connect an ETERNUS2000 model 100 or 200, ETERNUS4000 model 300, 400, 500, or 600, or ETERNUS8000

More information

High-AvailabilityoVirt-

High-AvailabilityoVirt- High-AvailabilityoVirt- ClusterwithiSCSI-Storage Benjamin Alfery , Philipp Richter 1. Introduction... 1 1.1. Goal of this guide... 2 1.2. Limitations...

More information

Virtual Machine Migration

Virtual Machine Migration Virtual Machine Migration Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license (http://creativecommons.org/licenses/by-nc/4.0/)

More information

KVM on System z: Channel I/O And How To Virtualize It

KVM on System z: Channel I/O And How To Virtualize It KVM on System z: Channel I/O And How To Virtualize It Cornelia Huck 10/26/12 Agenda Quick history Basic concepts Initiating I/O Linux support for channel I/O Virtualization support

More information

Control Center Planning Guide

Control Center Planning Guide Release 1.2.0 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

"Charting the Course... Enterprise Linux System Administration. Course Summary

Charting the Course... Enterprise Linux System Administration. Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

z/vm 6.2 Live Guest Relocation with Linux Middleware

z/vm 6.2 Live Guest Relocation with Linux Middleware 2013-12-09 Linux on System z - z/vm 6.2 Live Guest Relocation with Linux Middleware Dr. Juergen Doelle Michael Johanssen IBM Research and Development Boeblingen Germany Trademarks IBM, the IBM logo, and

More information

Kexec: Soft-Reboot and Crash-Dump Analysis for Linux and Xen

Kexec: Soft-Reboot and Crash-Dump Analysis for Linux and Xen Kexec: Soft-Reboot and Crash-Dump Analysis for Linux and Xen Linux.Conf.Au, Sydney, Australia http://www.vergenet.net/linux/kexec/ Simon Horman (Horms) Magnus Damm

More information

Bacula Systems Virtual Machine Performance Backup Suite

Bacula Systems Virtual Machine Performance Backup Suite Bacula Systems Virtual Machine Performance Backup Suite Bacula Systems VM Performance Backup Suite is part of Bacula Enterprise Edition. It comprises of modules that can be utilized to perfectly fit any

More information

Installing Cisco VTS on a VMware Environment, page 6 Installing the Virtual Topology Forwarder, page 9 Verifying VTS Installation, page 14

Installing Cisco VTS on a VMware Environment, page 6 Installing the Virtual Topology Forwarder, page 9 Verifying VTS Installation, page 14 The following sections provide details about installing VTS on a Linux-OpenStack environment or a VMware-based environment. Ensure that you review the Prerequisites chapter, before you begin installing

More information

Parallels Workstation 4.0 Extreme Read Me

Parallels Workstation 4.0 Extreme Read Me Parallels Workstation 4.0 Extreme Read Me Welcome to Parallels Workstation Extreme build 4.0.6740. This document contains the information you should know to successfully install Parallels Workstation Extreme

More information

Red Hat Container Development Kit 3.0 Installation Guide

Red Hat Container Development Kit 3.0 Installation Guide Red Hat Container Development Kit 3.0 Installation Guide Guide to installing Red Hat Container Development Kit Brian Brock Robert Krátký Chris Negus Red Hat Developer Group Documentation Team Red Hat

More information

SUSE Best Practices for SAP HANA on KVM

SUSE Best Practices for SAP HANA on KVM SUSE Best Practices SUSE Best Practices for SAP HANA on KVM SUSE Linux Enterprise Server for SAP Applications 12 SP2 SUSE Linux Enterprise Server for SAP Applications 12 SP2 Matt Fleming, Senior Software

More information

Virtual Route Reflector

Virtual Route Reflector Virtual Route Reflector Getting Started Guide for KVM Modified: 2018-04-13 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the

More information

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM CA92344-0706-01 FUJITSU Server PRIMEQUEST 2000 Series Basic Installation Guide for Linux/KVM FUJITSU LIMITED Preface This manual is a guide to assist in the configuration and installation of the PRIMEQUEST

More information

Using the Dump Tools October, 2007

Using the Dump Tools October, 2007 Linux on System z Using the Dump Tools October, 2007 Linux Kernel 2.6 (April 2004 stream) SC33-8286-02 Linux on System z Using the Dump Tools October, 2007 Linux Kernel 2.6 (April 2004 stream) SC33-8286-02

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. OPENFILER INSTALLATION...

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

Deploy the ASAv Using KVM

Deploy the ASAv Using KVM You can deploy the ASAv using the Kernel-based Virtual Machine (KVM). About ASAv Deployment Using KVM, on page 1 Prerequisites for the ASAv and KVM, on page 2 Prepare the Day 0 Configuration File, on page

More information

Benchmark Study: A Performance Comparison Between RHEL 5 and RHEL 6 on System z

Benchmark Study: A Performance Comparison Between RHEL 5 and RHEL 6 on System z Benchmark Study: A Performance Comparison Between RHEL 5 and RHEL 6 on System z 1 Lab Environment Setup Hardware and z/vm Environment z10 EC, 4 IFLs used (non concurrent tests) Separate LPARs for RHEL

More information

Virtualization and Performance

Virtualization and Performance Virtualization and Performance Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license (http://creativecommons.org/licenses/by-nc/4.0/)

More information

KVM Guest Management With Virt-Manager On Ubuntu 8.10

KVM Guest Management With Virt-Manager On Ubuntu 8.10 By Falko Timme Published: 2009-02-08 18:56 Version 1.0 Author: Falko Timme Last edited 02/05/2009 Virt-Manager (Virtual Machine Manager) is a graphical interface for managing

More information

Managing Multi-Hypervisor Environments with vcenter Server

Managing Multi-Hypervisor Environments with vcenter Server Managing Multi-Hypervisor Environments with vcenter Server vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.1.2 This document supports the version of each product listed and supports all subsequent

More information

Configuring Virtual Blades

Configuring Virtual Blades CHAPTER 14 This chapter describes how to configure virtual blades, which are computer emulators that reside in a WAE or WAVE device. A virtual blade allows you to allocate WAE system resources for use

More information

ovirt Node June 9, 2012 Mike Burns ovirt Node 1

ovirt Node June 9, 2012 Mike Burns ovirt Node 1 ovirt Node June 9, 2012 Mike Burns ovirt Node 1 Agenda Introduction Architecture Overview Deployment Modes Installation and Configuration Upgrading Configuration Persistence Future Features Discussion

More information

Novell SUSE Linux Enterprise Server

Novell SUSE Linux Enterprise Server SLES 10 Storage Administration Guide for EVMS Novell SUSE Linux Enterprise Server 10 February 1, 2007 STORAGE ADMINISTRATION GUIDE FOR EVMS www.novell.com Legal Notices Novell, Inc., makes no representations

More information

An introduction to Docker

An introduction to Docker An introduction to Docker Ing. Vincenzo Maffione Operating Systems Security Container technologies on Linux Several light virtualization technologies are available for Linux They build on cgroups, namespaces

More information

1Y0-A26 Citrix XenServer 6.0 Practice Exam

1Y0-A26 Citrix XenServer 6.0 Practice Exam 1Y0-A26 Citrix XenServer 6.0 Practice Exam Section 1: Implementing XenServer 1.1 Specific Task: Configure boot storage from SAN Objective: Given a scenario, determine how to configure options on the XenServer

More information

Virtio SCSI. An alternative virtualized storage stack for KVM. Stefan Hajnoczi Paolo Bonzini

Virtio SCSI. An alternative virtualized storage stack for KVM. Stefan Hajnoczi Paolo Bonzini Virtio SCSI An alternative virtualized storage stack for KVM Stefan Hajnoczi stefanha@linux.vnet.ibm.com Paolo Bonzini pbonzini@redhat.com Overview Limitations in QEMU's storage stack virtio-scsi: a new

More information

Support Note for Red Hat Enterprise Linux AS v.3 for the Itanium Processor on HP Integrity Servers

Support Note for Red Hat Enterprise Linux AS v.3 for the Itanium Processor on HP Integrity Servers Support Note for Red Hat Enterprise Linux AS v.3 for the Itanium Processor on HP Integrity Servers Edition 4 Manufacturing Part Number: 5991-0780 E1204 U.S.A. Copyright 2004 Hewlett-Packard Company. All

More information

RHOSP 12 Director Installation on MaxCore TM Platform

RHOSP 12 Director Installation on MaxCore TM Platform Configuration Note March, 2018 This configuration note describes the installation and configuration of Red Hat OpenStack Platform 12 director on MaxCore TM Platform with a SharpStreamer TM Pro PCIE-7211-2

More information

Virtualization with SUSE Linux Enterprise 11 SP2 Lab

Virtualization with SUSE Linux Enterprise 11 SP2 Lab Virtualization with SUSE Linux Enterprise 11 SP2 Lab SUS01/SUS02 Novell Training Services ATT LIVE 2012 LAS VEGAS www.novell.com Legal Notices Novell, Inc., makes no representations or warranties with

More information

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks JSA KVM SUPPORT Theodore Jencks, CSE KVM IMAGE SPECIFICATIONS Image is a compressed qcow2 image 16.5G in size when compressed Md5sum: Uncompressed the image is a 512G QCOW2 Ubuntu 18.04 LTS w/ KVM and

More information

Installation and Maintenance Instructions for Intel(R) R-WPA VNF Package

Installation and Maintenance Instructions for Intel(R) R-WPA VNF Package Installation and Maintenance Instructions for Intel(R) R-WPA VNF Package Contents Contents 1 Table of Figures 2 Overview 3 Installation Steps 4 1 Host Setup 4 11 System BIOS settings 4 111 Virtualization

More information

Invirt: A Technical Overview

Invirt: A Technical Overview Evan Broder and Greg Price invirt@mit.edu December 9, 2008 What is Invirt? Invirt is software to let users create and manage virtual machines, independently. Invirt powers SIPB s XVM service (http://xvm.mit.edu),

More information

Parallels Server 4.0 for Mac Bare Metal Edition

Parallels Server 4.0 for Mac Bare Metal Edition Parallels Server 4.0 for Mac Bare Metal Edition Installation Guide Copyright 1999-2010 Parallels Holdings, Ltd. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels International GmbH Vordergasse

More information

ExpressCluster X 2.0 for Linux

ExpressCluster X 2.0 for Linux ExpressCluster X 2.0 for Linux Installation and Configuration Guide 03/31/2009 3rd Edition Revision History Edition Revised Date Description First 2008/04/25 New manual Second 2008/10/15 This manual has

More information

Virtual Iron Software Release Notes

Virtual Iron Software Release Notes Virtual Iron Software Release Notes Virtual Iron Version 4.2 Copyright (c) 2007 Virtual Iron Software, Inc. 00122407R1 This information is the intellectual property of Virtual Iron Software, Inc. This

More information