The procedure was tested on , , and I don't have a lab system with physical HBAs and 5.3 at the moment.

Size: px
Start display at page:

Download "The procedure was tested on , , and I don't have a lab system with physical HBAs and 5.3 at the moment."

Transcription

1 I received the following question from an AIX administrator in Germany. Hi Chris, on your blog, you explain how to find out the active value of num_cmd_elems of an fc-adapter by using the kdb. So you can decide, if the value of lsattr is active or not... I wonder if you can find out the values fc_err_recov and dyntrk of the fscsix device.? melih[/etc]# lsattr -El fscsi0 attach switch How this adapter is CONNECTED False dyntrk yes Dynamic Tracking of FC Devices True fc_err_recov delayed_fail FC Fabric Event Error RECOVERY Policy True scsi_id 0x1021f Adapter SCSI ID False sw_fc_class 3 FC Class for Fabric True I try to use echo efscsi fscsi0 kdb.. but I can't figure it out.. Can you help my please? I did a little research on his behalf and came up with an answer. However, I m not at all surprised he had trouble finding the right information. It's not easy, clear or documented! I received the following information from my IBM AIX contacts. The following relies on internal structures that are subject to change. The procedure was tested on , , and I don't have a lab system with physical HBAs and 5.3 at the moment. Hopefully the same steps should work for 5.3. You may need to first run efscsi without arguments to load the kdb module before running efscsi fscsix. # kdb (0)> efscsi fscsi1 grep efscsi_ddi struct efscsi_ddi ddi = 0xF1000A060084A080 (0)> dd 0xF1000A060084A F1000A060084A0A0: B ( FFDD NNNNNNNN FF = fc_error_recov: 01=delayed_fail 02=fast_fail DD = dyntrk: 00=disabled 01=enabled NNNN=num_cmd_elems - 20 (20 reserved) e.g = 180 = B4 So in this example, fc_err_recov is set to fast_fail (02), dyntrk is set to yes (01) and num_cmd_elems is set to 200.

2 I tested this on a lab system running AIX 6.1 TL6 and AIX 7.1 TL1. Starting with an FC adapter with dyntrk disabled (set to no), fc_err_recov disabled (set to delayed_fail) and num_cmd_elems set to 500. # lsattr -El fscsi1 attach none How this adapter is CONNECTED False dyntrk no Dynamic Tracking of FC Devices True fc_err_recov delayed_fail FC Fabric Event Error RECOVERY Policy True scsi_id Adapter SCSI ID False sw_fc_class 3 FC Class for Fabric True # lsattr -El fcs1 -a num_cmd_elems num_cmd_elems 500 Maximum number of COMMANDS to queue to the adapter True # kdb (0)> efscsi fscsi1 grep efscsi_ddi struct efscsi_ddi ddi = 0xF1000A060096E080 (0)> dd 0xF1000A060096E F1000A060096E0A0: E ( FFDD NNNNNNNN OK, let s break it down. From the kdb output we can determine the following: fc_error_recov is currently set to delayed_fail (FF=01 = fc_error_recov = delayed_fail). dyntrk is currently set to no (DD=00 = dyntrk = disabled). num_cmd_elems is currently set to 500 (NNNNNNNN=1E0 = num_cmd_elems = = 500). If I set dyntrk to yes, we notice that the value changes immediately within the kernel running config. I was able to make this change without a reboot as the device was not in use. # chdev -l fscsi1 -a dyntrk=yes # kdb (0)> efscsi fscsi1 grep efscsi_ddi struct efscsi_ddi ddi = 0xF1000A060096E080 (0)> dd 0xF1000A0800CB F1000A0800CB60A0: E ( FFDD NNNNNNNN And now dynamic tracking is enabled (DD=01 = dyntrk = enabled, set to yes). Poor old AIX 5.3 struggled to provide me with any information using the steps provided. So what about max_xfer_size? For a physical FC adapter we can find the current value using the following kdb commands: (0)> efcs fcs1 grep ddi struct efc_ddi ddi = 0xF1000A06006D0080 (0)> dd 0xF1000A06006D F1000A06006D00E0: C C900000C1...,... F1000A06006D00F0: C1000FFC

3 Based on the output, num_cmd_elems is set to 200 (C8) and max_xfer_size is set to (100000). The max_xfer_size for VFC is tricky because it is contained in a structure that can and does change between SPs and TLs. In max_xfer_size is offset 3932 bytes into the structure so we get the value like this: (0)> vfcs NAME ADDRESS STATE HOST HOST_ADAP OPENED NUM_ACTIVE fcs2 0xF B xFFFF nimlab102-vfchost0 0x00 0x0000 (0)> dcal 3932 Value decimal: 3932 Value hexa: 00000F5C (0)> dd 0xF B38000+F50 F B38F50: C (... Perhaps the easiest way to handle changes between versions is to use the fact that max_xfer_size is immediately after num_cmd_elems and that is very unlikely to change. So, knowing that the structure size does not change by very much you can grep in the general area: (0)> vfcs fcs2 grep elems num_cmd_elems: 0xC8 (0)> dd 0xF B grep C8 F B38F50: C (... Here are the links to my previous posts on kdb: elems_for_vfc_adapters_with_kdb1?lang=en e_depth_with_kdb?lang=en Enjoy kdb fans! Attention: just a note about max_xfer_size and virtual FC adapters. In my experience, if the values for this attribute on the VIO client do not match those on the VIO server, then you will have trouble configuring the virtual FC adapters. Possible side effects may include your system never booting again! So if I change the value to 0x on the client, without mirroring this value on the VIO server, I may encounter the following effects: # rmdev -Rl fcs1 sfwcomm1 Defined fscsi1 Defined fcnet1 Defined fcs1 Defined

4 # chdev -l fcs1 -a max_xfer_size=0x fcs1 changed The cfgmgr command will report errors for the FC adapter. # cfgmgr Method error (/usr/lib/methods/cfgefscsi -l fscsi1 ): Cannot find a child device. Method error (/usr/lib/methods/cfgstorfworkcom -l sfwcomm1 ): Error initializing a device into the kernel. Errors, similar to the following, may appear in the AIX error report. # errpt errpt grep fcs 0E0C5B U S fcs1 Undefined error 8C9E I S fcs1 Informational message You ll observe messages in the error report that claim a request from the client was rejected by the VIOS.... Request was rejected by VIOS Response was rejected by the client... # errpt -an fcs LABEL: VFC_ERR8 IDENTIFIER: 0E0C5B31 Date/Time: Thu Jul 26 12:38:29 EETDT 2012 Sequence Number: 1040 Machine Id: 00C123C64C00 Node Id: aixlpar1 Class: S Type: UNKN WPAR: Global Resource Name: fcs1 Description Undefined error Probable Causes PROCESSOR Failure Causes PROCESSOR Recommended Actions PERFORM PROBLEM DETERMINATION PROCEDURES Detail Data Error Location E0 Error Type 00 RC FFFF FFFF FFFF FFFF

5 VIO Server Partition Name vio2 Physical Adapter Instance Name vfchost50 Physical Adapter Location Code U SS0071-P2-C6-T1 Physical Adapter DRC Name U9119.FHB.87654C6-V7-C1100 Adapter N Port ID Adapter State 0000 FFFF Additional Information LABEL: VFC_ERR7 IDENTIFIER: 8C9E9221 Date/Time: Thu Jul 26 12:38:29 EETDT 2012 Sequence Number: 1039 Machine Id: 00C123C64C00 Node Id: aixlpar1 Class: S Type: INFO WPAR: Global Resource Name: fcs1 Description Informational message Probable Causes Request was rejected by VIOS Response was rejected by the client Failure Causes PROCESSOR Recommended Actions PERFORM PROBLEM DETERMINATION PROCEDURES Detail Data Error Location Error Type 00 RC VIO Server Partition Name vio2 Physical Adapter Instance Name vfchost50 Physical Adapter Location Code U SS0071-P2-C6-T1 Physical Adapter DRC Name U9119.FHB.87654C6-V7-C1100 Adapter N Port ID

6 Adapter State If you encounter this problem, restore the clients FC adapter attributes to their previous values before restarting the system. If you don t, then your LPAR may no longer boot and may hang on LED 554. Change your VIOS first then update your VIO clients.

PowerVM - Dynamically adding a Virtual Fibre Channel adapter to a client partition

PowerVM - Dynamically adding a Virtual Fibre Channel adapter to a client partition Techdocs - The Technical Sales Library PowerVM - Dynamically adding a Virtual Fibre Channel adapter to a client partition Document Author: Gero Schmidt Document ID: TD105218 Doc. Organization: Technical

More information

FUJITSU Storage ETERNUS Multipath Driver 2 (for AIX) Installation Information

FUJITSU Storage ETERNUS Multipath Driver 2 (for AIX) Installation Information FUJITSU Storage ETERNUS Multipath Driver 2 (for AIX) Installation Information Oct 2016 Contents Contents... 1 Supported Operating System (OS) Versions... 1 Supported Disk Storage Systems... 1 Connection

More information

IBM POWERVM WITH FLASHARRAY

IBM POWERVM WITH FLASHARRAY IBM POWERVM WITH FLASHARRAY White paper - September 2017 Contents Executive Summary... 3 Introduction... 3 Pure Storage FlashArray... 3 IBM Power System... 3 DEVICES Virtualization With IBM PowerVM...

More information

Technical Note P/N REV A01 November 24, 2008

Technical Note P/N REV A01 November 24, 2008 AIX Native MPIO for CLARiiON Technical Note P/N 300-008-486 REV A01 November 24, 2008 This technical note contains supplemental information about AIX Native MPIO for CLARiiON storage systems. Technical

More information

Disk I/O and the Network

Disk I/O and the Network Page 1 of 5 close window Print Disk I/O and the Network Increase performance with more tips for AIX 5.3, 6.1 and 7 October 2010 by Jaqui Lynch Editor s Note: This is the concluding article in a two-part

More information

The Contents and Structure of this Manual. This document is composed of the following 12 chapters.

The Contents and Structure of this Manual. This document is composed of the following 12 chapters. 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

AIX Host Utilities 6.0 Installation and Setup Guide

AIX Host Utilities 6.0 Installation and Setup Guide IBM System Storage N series AIX Host Utilities 6.0 Installation and Setup Guide GC27-3925-01 Table of Contents 3 Contents Preface... 6 Supported features... 6 Websites... 6 Getting information, help,

More information

Veritas Storage Foundation and High Availability Solutions Virtualization Guide

Veritas Storage Foundation and High Availability Solutions Virtualization Guide Veritas Storage Foundation and High Availability Solutions Virtualization Guide AIX 5.1 Service Pack 1 Veritas Storage Foundation and High Availability Solutions Virtualization Guide The software described

More information

Power Systems SAN Multipath Configuration Using NPIV v1.2

Power Systems SAN Multipath Configuration Using NPIV v1.2 v1.2 Bejoy C Alias IBM India Software Lab Revision History Date of this revision: 27-Jan-2011 Date of next revision : TBD Revision Number Revision Date Summary of Changes Changes marked V1.0 23-Sep-2010

More information

This page is intentionally left blank.

This page is intentionally left blank. This page is intentionally left blank. Preface This ETERNUS Multipath Driver User's Guide describes the features, functions, and operation of the "ETERNUS Multipath Driver" (hereafter referred to as "Multipath

More information

IBM System Storage N series

IBM System Storage N series IBM System Storage N series Host Settings Affected by AIX Host Utilities The AIX Host Utilities sometimes recommend that settings on the host be modified. These recommendations are based on research and

More information

C exam. Number: C Passing Score: 800 Time Limit: 120 min IBM C IBM AIX Administration V1.

C exam. Number: C Passing Score: 800 Time Limit: 120 min IBM C IBM AIX Administration V1. C9010-022.exam Number: C9010-022 Passing Score: 800 Time Limit: 120 min IBM C9010-022 IBM AIX Administration V1 Exam A QUESTION 1 A customer has a virtualized system using Virtual I/O Server with multiple

More information

Notes for migrating to EMC or Shark with Fibre Channel boot. Planning Notes

Notes for migrating to EMC or Shark with Fibre Channel boot. Planning Notes Notes for migrating to EMC or Shark with Fibre Channel boot R. Ballough, 1/15/2004 Planning Notes 1. Reference document SANBootQA0103.pdf for a complete list of requirements when booting from SAN attached

More information

IBM i on a Power Blade Read-me First. Vess Natchev Power Blades Virtualization Cloud IBM Rochester, MN

IBM i on a Power Blade Read-me First. Vess Natchev Power Blades Virtualization Cloud IBM Rochester, MN IBM i on a Power Blade Read-me First Vess Natchev Power Blades Virtualization Cloud IBM Rochester, MN vess@us.ibm.com October 30 th, 2009 1 This read-me first document provides detailed instructions on

More information

IBM Version 7 Release 3. Easy Tier Server SC

IBM Version 7 Release 3. Easy Tier Server SC IBM Version 7 Release 3 Easy Tier Server SC27-5430-02 This edition applies to Version 7, Release 3 of the IBM Easy Tier Server and to all subsequent releases and modifications until otherwise indicated

More information

gmon is believed to run ok on all versions of Windows. But it was built and tested on Windows XP SP3

gmon is believed to run ok on all versions of Windows. But it was built and tested on Windows XP SP3 Windows Installation & Agent Installation Windows Graphical Monitor (gmon v72) Installation gmon is believed to run ok on all versions of Windows. But it was built and tested on Windows XP SP3 If your

More information

IBM Exam AIX 7 Administration Version: 9.1 [ Total Questions: 229 ]

IBM Exam AIX 7 Administration Version: 9.1 [ Total Questions: 229 ] s@lm@n IBM Exam 000-221 AIX 7 Administration Version: 9.1 [ Total Questions: 229 ] Topic 2, Volume B Question No : 1 - (Topic 2) An administrator migrated a global environment of AIX 6 to AIX 7 using NIM.

More information

IBM p5 and pseries Technical Sales Support. Download Full Version :

IBM p5 and pseries Technical Sales Support. Download Full Version : IBM 000-238 p5 and pseries Technical Sales Support Download Full Version : https://killexams.com/pass4sure/exam-detail/000-238 QUESTION: 130 A customer is ordering a new p650 server to be placed into an

More information

Experiences with VIOS support for IBM i

Experiences with VIOS support for IBM i Experiences with VIOS support for IBM i Pete Stephen, Power Systems / AIX Architect Sirius Computer Solutions Pete.Stephen@siriuscom.com Agenda VIO overview Virtualization Trends. PowerVM and how do I

More information

IBM Enterprise Technical Support for AIX and Linux -v2. Download Full Version :

IBM Enterprise Technical Support for AIX and Linux -v2. Download Full Version : IBM 000-108 Enterprise Technical Support for AIX and Linux -v2 Download Full Version : http://killexams.com/pass4sure/exam-detail/000-108 QUESTION: 117 An administrator is preparing fibre-channel attached

More information

NetBackup SAN Client and Fibre Transport Troubleshooting Guide. 2 What are the components of the SAN Client feature?

NetBackup SAN Client and Fibre Transport Troubleshooting Guide. 2 What are the components of the SAN Client feature? Symantec TechNote 288437 NetBackup SAN Client and Fibre Transport Troubleshooting Guide 1 Introduction Revision F This document explains how to troubleshoot different failures that may occur while using

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : C9010-022 Title : IBM AIX Administration V1 Vendor : IBM Version : DEMO Get Latest & Valid C9010-022 Exam's Question

More information

The Host Server. AIX Configuration Guide. August The Data Infrastructure Software Company

The Host Server. AIX Configuration Guide. August The Data Infrastructure Software Company The Host Server AIX Configuration Guide August 2017 This guide provides configuration settings and considerations for SANsymphony Hosts running IBM's AIX. Basic AIX administration skills are assumed including

More information

HUAWEI SAN Storage Host Connectivity Guide for AIX

HUAWEI SAN Storage Host Connectivity Guide for AIX Technical White Paper HUAWEI SAN Storage Host Connectivity Guide OceanStor Storage AIX Huawei Technologies Co., Ltd. 2017-08-15 Copyright Huawei Technologies Co., Ltd. 2017. All rights reserved. No part

More information

Release notes for Flash Recovery Tool Version 10.0(2)

Release notes for Flash Recovery Tool Version 10.0(2) Release notes for Flash Recovery Tool Version 10.0(2) Problem Description After several months or years in continuous operation, underlying boot flash devices on NEXUS 7000 SUP2/2E supervisor boards may

More information

viosupgrade command from VIOS Non-NIM environment Chris Gibson, IBM Systems Lab Services (Sept 6 th, 2018). Rough Draft.

viosupgrade command from VIOS Non-NIM environment Chris Gibson, IBM Systems Lab Services (Sept 6 th, 2018). Rough Draft. viosupgrade command from VIOS Non-NIM environment Chris Gibson, IBM Systems Lab Services (Sept 6 th, 2018). Rough Draft. NOTE: The following document describes testing of ESP VIOS 3.1 code, pre-ga. In

More information

PowerHA SystemMirror 7.2. Split Brain Handling through SCSI PR Disk Fencing

PowerHA SystemMirror 7.2. Split Brain Handling through SCSI PR Disk Fencing PowerHA SystemMirror 7.2 Split Brain Handling through SCSI PR Disk Fencing Authors: Abhimanyu Kumar Prabhanjan Gururaj Rajeev S Nimmagada Ravi Shankar Page 1 of 23 Table of Contents...1 1Introduction...3...3

More information

V1.1. AIX 5L System Administration I: Implementation. (Course Code AU14) Student Exercises ERC 7.0. IBM Learning Services Worldwide Certified Material

V1.1. AIX 5L System Administration I: Implementation. (Course Code AU14) Student Exercises ERC 7.0. IBM Learning Services Worldwide Certified Material V1.1 AIX 5L System Administration I: Implementation (Course Code AU14) Student Exercises ERC 7.0 IBM Learning Services Worldwide Certified Material Student Exercises Trademarks The reader should recognize

More information

Expert Reference Series of White Papers. Understanding the AIX Object Data Manager

Expert Reference Series of White Papers. Understanding the AIX Object Data Manager Expert Reference Series of White Papers Understanding the AIX Object Data Manager 1-800-COURSES www.globalknowledge.com Understanding the AIX Object Data Manager Iain Campbell, UNIX/Linux Open Systems

More information

IBM EXAM - C AIX 7 Administration. Buy Full Product.

IBM EXAM - C AIX 7 Administration. Buy Full Product. IBM EXAM - C4040-221 AIX 7 Administration Buy Full Product http://www.examskey.com/c4040-221.html Examskey IBM C4040-221 exam demo product is here for you to test the quality of the product. This IBM C4040-221

More information

IBM - C AIX 7 Administration Version: 7.1

IBM - C AIX 7 Administration Version: 7.1 IBM - C4040-221 AIX 7 Administration Version: 7.1 1 Topic 1, Volume A QUESTION: 1 The following information has been reported in an AIX error log: How can the administrator prevent the error from reoccurring?

More information

2. install windows vista

2. install windows vista 2. install windows vista Windows Vista comes preloaded on many brand-new PCs. If you already have a computer with Windows Vista installed, you can go directly to Chapter 3, Move from another PC. If you

More information

FibreQuik Fibre Channel Host Bus Adapter User Guide

FibreQuik Fibre Channel Host Bus Adapter User Guide FibreQuik Fibre Channel Host Bus Adapter User Guide Cambex Corporation 115 Flanders Road Westborough, MA 01581 Customer support support@cambex.com Document: 081-468-032 Date: 6/2/02 Rev.: D Table of Contents

More information

Installation Manual. NEXSAN MSIO for AIX. Version 2.1

Installation Manual. NEXSAN MSIO for AIX. Version 2.1 NEXSAN MSIO for AIX Installation Manual Version 2.1 NEXSAN 555 St. Charles Drive, Suite 202, Thousand Oaks, CA 91360 p. 866.4.NEXSAN f. 866.418.2799 COPYRIGHT Copyright 2009 2011 by Nexsan Corporation.

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : A4040-221 Title : Assessment: AIX 7 Administration Vendors : IBM Version

More information

IBM AIX Operating System Service Strategy Details and Best Practices

IBM AIX Operating System Service Strategy Details and Best Practices IBM AIX Operating System Service Strategy Details and Best Practices Julie Craft AIX Development jcraft@us.ibm.com 06/10/2009 1 Contents Contents... 2 Introduction... 3 Enhanced Service Strategy Releases...

More information

Linux File Systems for Windows

Linux File Systems for Windows PARAGON Linux File Systems for Windows User Manual Paragon Technologie GmbH Systemprogrammierung Leo-Wohleb-Straße 8 79098 Freiburg, Germany Tel. +49 (0) 761 59018201 Fax +49 (0) 761 59018130 Web www.paragon-software.com

More information

How To Reinstall Grub In Windows 7 Without Losing Data And Programs

How To Reinstall Grub In Windows 7 Without Losing Data And Programs How To Reinstall Grub In Windows 7 Without Losing Data And Programs So if I install Windows 7 using CD again, will I lose Ubuntu? then yes you will lose Ubuntu, however if you reinstall Windows without

More information

AIX 7.2 Live Update. 26/11/2015 Chris Gibson AIX/Power CTS

AIX 7.2 Live Update. 26/11/2015 Chris Gibson AIX/Power CTS 26/11/2015 Chris Gibson AIX/Power CTS cgibson@au1.ibm.com November 2015 ASEAN Technical Update Chris Gibson (cgibson@au1.ibm.com) AIX & Power Systems Technical Consultant at IBM STG. IBM Champion for Power

More information

Command Line Parameters Linux Check Disk Space Windows 7

Command Line Parameters Linux Check Disk Space Windows 7 Command Line Parameters Linux Check Disk Space Windows 7 Explains why can't your write to the disk on a Linux or Unix server. 1.6G 7% /boot /dev/sda7 4.7G 145M 4.4G 4% /tmp /dev/sda9 9.4G 628M 8.3G 7%

More information

IBM 32 MB USB Memory Key (P/N 22P5296) Boot Sector Virus Detection and Cleaning Algorithm

IBM 32 MB USB Memory Key (P/N 22P5296) Boot Sector Virus Detection and Cleaning Algorithm IBM 32 MB USB Memory Key (P/N 22P5296) Boot Sector Virus Detection and Cleaning Algorithm (for IBM internal use only) Author: David Kang Last Updated: 1/10/02 Windows 98 and Windows ME 1. Run utility to

More information

CS Programming In C

CS Programming In C CS 24000 - Programming In C Week Two: Basic C Program Organization and Data Types Zhiyuan Li Department of Computer Science Purdue University, USA 2 int main() { } return 0; The Simplest C Program C programs

More information

Host Attachment Guide

Host Attachment Guide Version 1.6.x Host Attachment Guide Publication: GA32-0643-07 (June 2011) Book number: GA32 0643 07 This edition applies to IBM XIV Storage System Software and to all subsequent releases and modifications

More information

May 2018 Release Notes

May 2018 Release Notes May 2018 Release Notes Introduction This release note contains information regarding the May 2018 Release. This document provides important product information that may not be covered in the product manuals

More information

IBM IBM Open Systems Storage Solutions Version 4. Download Full Version :

IBM IBM Open Systems Storage Solutions Version 4. Download Full Version : IBM 000-742 IBM Open Systems Storage Solutions Version 4 Download Full Version : https://killexams.com/pass4sure/exam-detail/000-742 Answer: B QUESTION: 156 Given the configuration shown, which of the

More information

Windows 7 Read The Manual System Restore Memory Could Not

Windows 7 Read The Manual System Restore Memory Could Not Windows 7 Read The Manual System Restore Memory Could Not restore System Restore is a great tool that allows you to revert Windows and its settings to a previous state. This is useful Read this guide and

More information

BMC Capacity Optimization Extended Edition AIX Enhancements

BMC Capacity Optimization Extended Edition AIX Enhancements BMC Capacity Optimization Extended Edition 9.5.1 AIX Enhancements Support for AIX Active Memory Expansion (AME) mode Metrics displayed in BCO AIX PowerVM view for CPU and Memory Allocation Frame name,

More information

Setup for Microsoft Cluster Service Update 1 Release for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5

Setup for Microsoft Cluster Service Update 1 Release for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5 Setup for Microsoft Cluster Service Update 1 Release for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5 Setup for Microsoft Cluster Service Setup for Microsoft Cluster Service Revision: 041108

More information

IBM Exam A Virtualization Technical Support for AIX and Linux Version: 6.0 [ Total Questions: 93 ]

IBM Exam A Virtualization Technical Support for AIX and Linux Version: 6.0 [ Total Questions: 93 ] s@lm@n IBM Exam A4040-101 Virtualization Technical Support for AIX and Linux Version: 6.0 [ Total Questions: 93 ] IBM A4040-101 : Practice Test Question No : 1 Which of the following IOS commands displays

More information

Virtualization Technical Support for AIX and Linux - v2

Virtualization Technical Support for AIX and Linux - v2 IBM 000-109 Virtualization Technical Support for AIX and Linux - v2 Version: 5.0 Topic 1, Volume A QUESTION NO: 1 An administrator is attempting to configure a new deployment of 56 POWER7 Blades across

More information

REO SERIES. AN-DBP-065a: Configuring IBM Tivoli Storage Manager 5.3 and Windows Server 2003 with Fibre Channel- Connected REO VTL

REO SERIES. AN-DBP-065a: Configuring IBM Tivoli Storage Manager 5.3 and Windows Server 2003 with Fibre Channel- Connected REO VTL REO SERIES AN-DBP-065a: Configuring IBM Tivoli Storage Manager 5.3 and Windows Server 2003 with Fibre Channel- Overland Storage REO SERIES Preface This document assumes that you have already set up and

More information

IBM POWER8 100 GigE Adapter Best Practices

IBM POWER8 100 GigE Adapter Best Practices Introduction IBM POWER8 100 GigE Adapter Best Practices With higher network speeds in new network adapters, achieving peak performance requires careful tuning of the adapters and workloads using them.

More information

How To Install Windows Update Vista Without Cd Dell Inspiron 1720

How To Install Windows Update Vista Without Cd Dell Inspiron 1720 How To Install Windows Update Vista Without Cd Dell Inspiron 1720 Dell note the date of their systems on their FTP Website: Press any key when prompted such as h when it says Press any Key to boot from

More information

PowerHA SystemMirror 6.1 to migrating Prerequisites

PowerHA SystemMirror 6.1 to migrating Prerequisites PowerHA SystemMirror 6.1 to 7.1.3 migrating Prerequisites Abstract: Whenever we are going to perform PowerHA SystemMirror rolling or snapshot migration from 6.1 to 7.1.3 we have to fulfill the prerequisites.

More information

Historical Collection Best Practices. Version 2.0

Historical Collection Best Practices. Version 2.0 Historical Collection Best Practices Version 2.0 Ben Stern, Best Practices and Client Success Architect for Virtualization and Cloud bstern@us.ibm.com Copyright International Business Machines Corporation

More information

SATA 150 Controller PCI Card user

SATA 150 Controller PCI Card user SATA 150 Controller PCI Card user manual Model 158046 MAN-158046-UM-0508-01 Thank you for purchasing this MANHATTAN SATA 150 Controller PCI Card, Model 158046. Compatible with esata and SATA 150/300 drives

More information

41CO Operation and Maintaining PowerVM VIOS with IBM i

41CO Operation and Maintaining PowerVM VIOS with IBM i 41CO Operation and Maintaining PowerVM VIOS with IBM i Gary Konicek konicek@us.ibm.com IBM Lab Services Session ID: Agenda Key: 170299 41CO Fix Strategy before June 2015 Base releases: i.e. 2.2.1.0 i.e.

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

HP StorageWorks. XP Disk Array Configuration Guide for IBM AIX XP24000, XP12000, XP10000, SVS200

HP StorageWorks. XP Disk Array Configuration Guide for IBM AIX XP24000, XP12000, XP10000, SVS200 HP StorageWorks XP Disk Array Configuration Guide for IBM AIX XP24000, XP12000, XP10000, SVS200 Part number: A5951 047 Ninth edition: June 2007 Legal and notice information Copyright 2003, 2007 Hewlett-Packard

More information

Configuring User Accounts and RBAC

Configuring User Accounts and RBAC This chapter contains the following sections: Information About User Accounts and RBAC, page 1 Guidelines and Limitations for User Accounts, page 4 Configuring User Accounts, page 5 Configuring RBAC, page

More information

Manually Install Windows Updates Xp On 7 Laptop With Usb

Manually Install Windows Updates Xp On 7 Laptop With Usb Manually Install Windows Updates Xp On 7 Laptop With Usb This manual method requires only 3 steps: This method doesn't work for Windows XP bootable USB drive. If you want to make Windows Vista or Windows

More information

FC-FCoE Adapter Inbox Driver Update for Linux Kernel 2.6.x. Table of Contents

FC-FCoE Adapter Inbox Driver Update for Linux Kernel 2.6.x. Table of Contents FC-FCoE Adapter Inbox Driver Update for Linux Kernel 2.6.x QLogic Corporation. All rights reserved. Table of Contents 1. Package Contents 2. OS Support 3. Supported Features 4. Deploying the Driver 4.1

More information

CIS-331 Final Exam Spring 2018 Total of 120 Points. Version 1

CIS-331 Final Exam Spring 2018 Total of 120 Points. Version 1 Version 1 Instructions 1. Write your name and version number on the top of the yellow paper and the routing tables sheet. 2. Answer Question 2 on the routing tables sheet. 3. Answer Questions 1, 3, 4,

More information

EMC PowerPath for AIX Version 5.1

EMC PowerPath for AIX Version 5.1 EMC PowerPath for AIX Version 5.1 Installation and Administration Guide P/N 300-005-461 REV A03 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1997-2008

More information

Restoring an SP Boot Image

Restoring an SP Boot Image AX100-Series Restoring an SP Boot Image Revision A01 June 9, 2004 This document explains how to restore an SP s boot image. Read it when an SP does not start properly and its fault light blinks four times

More information

Best Practices: Managing AIX Updates using SUMA, NIM, and AIX Service Tools Steven Molis

Best Practices: Managing AIX Updates using SUMA, NIM, and AIX Service Tools Steven Molis using SUMA, NIM, and AIX Service Tools Steven Molis AIX Development smolis@us.ibm.com Table of Contents 1 INTRODUCTION... 3 2 BEST PRACTICES USING SUMA AND NIM... 4 2.1 GETTING UPDATES FOR A SINGLE SYSTEM

More information

FC HBA STOR Miniport Driver for Windows. Table of Contents

FC HBA STOR Miniport Driver for Windows. Table of Contents FC HBA STOR Miniport Driver for Windows This software license applies only to QLogic customers. QLogic Corporation. All rights reserved. 1. Package Contents 2. OS Support 3. Supported Features 4. Using

More information

Setting up a RIS (Remote Installation Service) server (Windows Server 2003 SP 1) Updated February 13 th, 2008.

Setting up a RIS (Remote Installation Service) server (Windows Server 2003 SP 1) Updated February 13 th, 2008. Setting up a RIS (Remote Installation Service) server (Windows Server 2003 SP 1) Updated February 13 th, 2008. The most up to date version of this document can be found at the following link http://www.windows-noob.com/forums/index.php?showtopic=66

More information

Live Partition Mobility

Live Partition Mobility Live Partition Mobility Jaqui Lynch lynchj@forsythe.com Presentation at: http://www.circle4.com/forsythe/lpm2014.pdf 1 1 Why Live Partition Mobility? LPM LIVE PARTITION MOBILITY Uses Server Consolidation

More information

Extreme Computing. Introduction to MapReduce. Cluster Outline Map Reduce

Extreme Computing. Introduction to MapReduce. Cluster Outline Map Reduce Extreme Computing Introduction to MapReduce 1 Cluster We have 12 servers: scutter01, scutter02,... scutter12 If working outside Informatics, first: ssh student.ssh.inf.ed.ac.uk Then log into a random server:

More information

Symmetrix Fibre Channel with Qlogic Host Bus Adapters in the SCO UnixWare 7 Environment

Symmetrix Fibre Channel with Qlogic Host Bus Adapters in the SCO UnixWare 7 Environment Symmetrix Fibre Channel with Qlogic Host Bus Adapters in the SCO UnixWare 7 Environment November 2000 Copyright 2000 EMC Corporation. All rights reserved. No part of this publication may be reproduced

More information

How to boot Mac OS X 10.5 from RocketRAID esata for Mac

How to boot Mac OS X 10.5 from RocketRAID esata for Mac How to boot Mac OS X 10.5 from RocketRAID esata for Mac Step 1: Prepare 3 files 1) Carbon Copy Cloner 2) EFI BIOS 3) Driver for Mac OS X 10.5 Step 2: Install Mac OS X 10.5 Install Mac OS X onto the hard

More information

CIS-331 Final Exam Spring 2015 Total of 115 Points. Version 1

CIS-331 Final Exam Spring 2015 Total of 115 Points. Version 1 Version 1 1. (25 Points) Given that a frame is formatted as follows: And given that a datagram is formatted as follows: And given that a TCP segment is formatted as follows: Assuming no options are present

More information

FCP-2 PR Comment Resets & Serial Access Devices. Roger Cummings July 18, 2001

FCP-2 PR Comment Resets & Serial Access Devices. Roger Cummings July 18, 2001 FCP-2 PR Comment Resets & Serial Access Devices Roger Cummings July 18, 2001 Topics Background How we found the problem Testing Status Existing Standards Future Standards Background VERITAS is an cross-platform

More information

Examples What it means

Examples What it means Examples What it means PHYSICAL VOLUME (PV)Represents a hard disk (hdisk0). PHYSICAL PARTITION (PP) The smallest allocation unit in the LVM. All PPs within a VG are the same si VOLUME GROUP (VG) A set

More information

Emulex Drivers for Linux for LightPulse Adapters Release Notes

Emulex Drivers for Linux for LightPulse Adapters Release Notes Emulex Drivers for Linux for LightPulse Adapters Release Notes Versions: FC Version 11.4.142.21 Date: September 6, 2017 Purpose and Contact Information These release notes describe the new features, current

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL MODBUS RTU/ASCII, MODBUS/TCP plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

Security by Default. Overview CHAPTER

Security by Default. Overview CHAPTER CHAPTER 3 This section contains the following topics: Overview, page 3-1 Trust Verification Service, page 3-2 Initial Trust List, page 3-2 Autoregistration, page 3-3 Supported Cisco Unified IP Phones,

More information

3.1. Storage. Direct Attached Storage (DAS)

3.1. Storage. Direct Attached Storage (DAS) 3.1. Storage Data storage and access is a primary function of a network and selection of the right storage strategy is critical. The following table describes the options for server and network storage.

More information

Intro. Scheme Basics. scm> 5 5. scm>

Intro. Scheme Basics. scm> 5 5. scm> Intro Let s take some time to talk about LISP. It stands for LISt Processing a way of coding using only lists! It sounds pretty radical, and it is. There are lots of cool things to know about LISP; if

More information

ATTO UL4D & UL5D Troubleshooting Guide

ATTO UL4D & UL5D Troubleshooting Guide ATTO UL4D & UL5D Troubleshooting Guide This document describes troubleshooting techniques that can be used to identify and resolve issues associated with the ATTO Ultra320 dual channel SCSI host adapter.

More information

Server Support Matrix ETERNUS Disk storage systems Server Connection Guide (Fibre Channel) for Oracle Solaris

Server Support Matrix ETERNUS Disk storage systems Server Connection Guide (Fibre Channel) for Oracle Solaris 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

B Interface description 12.01/

B Interface description 12.01/ B 95.3530.2 Interface description 12.01/00340396 Contents 1 Introduction 1.1 Preface... 3 1.2 Typographical conventions... 4 1.2.1 Warning signs... 4 1.2.2 Note signs... 4 1.2.3 Presentation... 4 2 Protocol

More information

Fibre Channel Adapter STOR Miniport Driver for Windows. Table of Contents

Fibre Channel Adapter STOR Miniport Driver for Windows. Table of Contents Fibre Channel Adapter STOR Miniport Driver for Windows QLogic Corporation All rights reserved Table of Contents 1. Package Contents 2. OS Support 3. Supported Features 4. Using the Driver 4.1 Creating

More information

C IBM AIX Administration V1

C IBM AIX Administration V1 C9010-022 - IBM AIX Administration V1 1.The system administrator ran the following command to backup his image repository, but nothing was backed up to the file. Why? find /media -print backup -I-f-p /dev/rmt0

More information

PL-I Assignment Broup B-Ass 5 BIOS & UEFI

PL-I Assignment Broup B-Ass 5 BIOS & UEFI PL-I Assignment Broup B-Ass 5 BIOS & UEFI Vocabulary BIOS = Basic Input Output System UEFI = Unified Extensible Firmware Interface POST= Power On Self Test BR = Boot Record (aka MBR) BC =Boot Code (aka

More information

Windows 7 Will Not Installing Update Shutdown Without

Windows 7 Will Not Installing Update Shutdown Without Windows 7 Will Not Installing Update Shutdown Without When I'm in a hurry to shut down my PC and I only see "Shut down installing updates" and You using windows 8 or 7 (assuming 8 because of the tag you

More information

EMC PowerPath for AIX Version 5.3

EMC PowerPath for AIX Version 5.3 EMC PowerPath for AIX Version 5.3 Installation and Administration Guide P/N 300-008-341 REV A08 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1997-2011

More information

Lecture-14 Lookup Functions

Lecture-14 Lookup Functions Lecture-14 Lookup Functions How do I write a formula to compute tax rates based on income? Given a product ID, how can I look up the product s price? Suppose that a product s price changes over time. I

More information

CIS-331 Exam 2 Fall 2014 Total of 105 Points. Version 1

CIS-331 Exam 2 Fall 2014 Total of 105 Points. Version 1 Version 1 1. (20 Points) Given the class A network address 119.0.0.0 will be divided into a maximum of 15,900 subnets. a. (5 Points) How many bits will be necessary to address the 15,900 subnets? b. (5

More information

Vendor: IBM. Exam Code: C Exam Name: Enterprise Technical Support for AIX and Linux -v2. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: Enterprise Technical Support for AIX and Linux -v2. Version: Demo Vendor: IBM Exam Code: C4040-108 Exam Name: Enterprise Technical Support for AIX and Linux -v2 Version: Demo QUESTION 1 Which power reduction technology requires a software component in order to be activated?

More information

Lab - System Restore in Windows 8

Lab - System Restore in Windows 8 Lab - System Restore in Windows 8 Introduction In this lab, you will create a restore point and use it to restore your computer. Recommended Equipment A computer running Windows 8 Step 1: Create a restore

More information

, 16:00-16:45, Raum Krakau

, 16:00-16:45, Raum Krakau 2011 IBM Power Systems Technical University October Title: Running 10-14 Fontainebleau Oracle DB Miami on Beach IBM AIX Miami, and FL Power7 Best Pratices for Performance & Tuning IBM Session: Speaker:

More information

Engineering Technical Laboratory Rev 2. ETLUNIPROG control software Win98/Win2000/WinXP ODESSA Microprocessor Tools

Engineering Technical Laboratory Rev 2. ETLUNIPROG control software Win98/Win2000/WinXP ODESSA Microprocessor Tools Engineering Technical Laboratory Rev 2 ODESSA 2002 Microprocessor Tools ETLUNIPROG control software Win98/Win2000/WinXP 1.1 What You ll Need The following section describe items that are you need to use

More information

Core Switch PID Format Update Best Practices

Core Switch PID Format Update Best Practices Core Switch PID Format Update Best Practices For Immediate Release Updated 7/1/2002 Executive Summary There are certain parameters which must be set identically on all switches in a given fabric. In the

More information

Use Windows Xp Error Codes Blue Screen Of

Use Windows Xp Error Codes Blue Screen Of Use Windows Xp Error Codes Blue Screen Of Death (page A blue screen of death, as appears on Windows 9x The error codes are as follows: General Protection Fault, 0E: Page Fault, 10: Coprocessor Error Fault

More information

HMC 860 Enhanced+ & Classic is DEAD

HMC 860 Enhanced+ & Classic is DEAD HMC 860 Enhanced+ & Classic is DEAD Nigel Griffiths Power Systems Advanced Technology Support IBM Europe 2016 IBM Corporation HMC Classic User Interface 2 Copyright IBM Corporation 2011 1 HMC Classic User

More information

Windows Me Plug-and-Play

Windows Me Plug-and-Play LAB PROCEDURE 18 Windows Me Plug-and-Play OBJECTIVES 1. Remove Network Adapter from the system. 2. Install Network Adapter with Plug-and-Play (PnP). 3. Remove modem. 4. Install modem with Plug-and-Play

More information

Advanced UNIX File Systems. Berkley Fast File System, Logging File System, Virtual File Systems

Advanced UNIX File Systems. Berkley Fast File System, Logging File System, Virtual File Systems Advanced UNIX File Systems Berkley Fast File System, Logging File System, Virtual File Systems Classical Unix File System Traditional UNIX file system keeps I-node information separately from the data

More information