HP LeftHand SAN Solutions

Size: px
Start display at page:

Download "HP LeftHand SAN Solutions"

Transcription

1 HP LeftHand SAN Solutions Support Document Support Procedures Seting Up iscsi volumes on CENTOS 5, RedHat 5, Fedora 7 and, Debian Ubutu Linux

2 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. The information contained herein is subject to change without notice. Restricted Rights Legend Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR and , Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. Copyright Notices Copyright 2009 Hewlett-Packard Development Company, L.P. 2

3 Seting Up iscsi volumes on CENTOS 5, RedHat 5, Fedora 7 and, Debian Ubutu Linux The following is a step by step process to setup and using Lefthand Networks iscsi volumes on the following versions of Linux: CENTOS 5 Redhat 5 Fedora 7 Debian / Ubutu. This process was tested at LeftHand Networks on CENTOS 5, but it should work on all the versions listed. For each step in this process I will give examples using the Command Line Interface (CLI) and the Graphical User Interface (GUI), when possible. SAN/iQ Version / Platform 7.0 SP1 / All platforms Solution Install the iscsi Initiator First check to see if the initiator is already installed. Using the CLI run the yum command in the example. If you get following, the initiator is already installed. yum list grep iscsi iscsi-initiator-utils.i el5 installed If the initiator has not been installed run the following command: yum install iscsi-initiator-utils If you are using Debian / Ubuntu Linux install open-iscsi package use the apt-get command. 3

4 Using the GUI go to Applications Add/Remove Software. Select the search tab and type iscsi in the search line and hit the Search button. If the iscsi initiator isn t checked, check it and hit Apply to install the iscsi initiator. Configure CHAP If you want to use CHAP you have to complete the steps in this section otherwise you may skip this. Open /etc/iscsi/iscsid.conf with your favorite editor and setup the username and password: node.session.auth.username = My_ISCSI_USR_NAME node.session.auth.password = MyPassword discovery.sendtargets.auth.username = My_ISCSI_USR_NAME discovery.sendtargets.auth.password = MyPassword Where, node.session.* is used to set a CHAP username and password for initiator authentication by the target(s). discovery.sendtargets.* is used to set a discovery session CHAP username and password for the initiator authentication by the target(s) Start the iscsi Service Now start the iscsi service, using the CLI issue the following command: 4

5 # /etc/init.d/iscsi start To use the GUI go to System Administration Server Settings Services. Scroll down to and select iscsi and then hit the start button. From here on everything has to be done via the CLI except for editing files that can be done using vi or the graphical text editor. Discover Targets First you get the initiator node name for your server and put it into the Authentication Group. To get the initiator node name do the following command: # cat /etc/iscsi/initiatorname.iscsi InitiatorName=iqn com.redhat:2bd8911ebc10 Copy the name and paste it in the Authentication Group initiator node name field. If you want to change the initiator node name you can edit this file. 5

6 Now use iscsiadm command, which is a command-line tool allowing discovery and login to iscsi targets, as well as access and management of the open-iscsi database. If your storage server IP address is , enter: # iscsiadm -m discovery -t sendtargets -p :3260,1 iqn com.lefthandnetworks:bradachmg3: 45:centostest-02 /etc/init.d/iscsi restart Logout session [sid: 1, target: iqn com.lefthandnetworks:bradach-mg3:41:centostest, portal: ,3260] Stopping iscsi daemon: /etc/init.d/iscsi: line 33: Killed /etc/init.d/iscsid stop iscsid dead but pid file exists [ OK ] Turning off network shutdown. Starting iscsi daemon: [ OK ] [ OK ] Setting up iscsi targets: Login session [iface: default, target: iqn com.lefthandnetworks:bradach-mg3:41:centostest, portal: ,3260] Login session [iface: default, target: iqn com.lefthandnetworks:bradach-mg3:45:centostest-02, portal: ,3260 [ OK ] Now there should be a block device under /dev directory. To obtain new device name, you can use the fdisk or tail commands. Here are some examples: # fdisk -l Disk /dev/sda: 17.9 GB, bytes 255 heads, 63 sectors/track, 2186 cylinders Units = cylinders of * 512 = bytes Device Boot Start End Blocks Id System /dev/sda1 * Linux /dev/sda e Linux LVM Disk /dev/sdd: 26.8 GB, bytes 64 heads, 32 sectors/track, cylinders Units = cylinders of 2048 * 512 = bytes Disk /dev/sdd doesn't contain a valid partition table # tail -f /var/log/messages 6

7 Jun 20 12:15:52 test kernel: SCSI device sdd: byte hdwr sectors (26844 MB) Jun 20 12:15:52 test kernel: sdd: Write Protect is off Jun 20 12:15:52 test kernel: SCSI device sdd: drive cache: none Jun 20 12:15:52 test kernel: sdd: unknown partition table Jun 20 12:15:52 test kernel: sd 3:0:0:0: Attached scsi disk sddjun 20 12:15:52 test kernel: sd 3:0:0:0: Attached scsi generic sg3 type 0 Jun 20 12:15:52 test iscsid: connection3:0 is operational now Jun 20 12:45:54 test ntpd[2266]: synchronized to , stratum 2 Jun 20 13:13:18 test ntpd[2266]: synchronized to , stratum 2 Jun 20 13:20:00 test pcscd: winscard.c:219:scardconnect() Reader E-Gate 0 0 Not Found Look at the bold SDD device. This is what you are looking for from these commands. Format and Mount iscsi Volume At this point it is al standard Linux file system stuff. First create a partition with fdisk. # fdisk /dev/sdd Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel. Changes will remain in memory only, until you decide to write them. After that, of course, the previouscontent won't be recoverable. The number of cylinders for this disk is set to There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1 software that runs at boot time (e.g., old versions of LILO) 2 booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) Command (m for help): n Command action e extended p primary partition (1-4) Partition number (1-4): 1 First cylinder ( , default 1): Using default value 1 Last cylinder or +size or +sizem or +sizek ( , default 25600): Using default value Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. 7

8 Syncing disks. Next create a file system. # mkfs.ext3 /dev/sdd1 mke2fs 1.39 (29-May-2006) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) inodes, blocks blocks (5.00%) reserved for the super user First data block=0 Maximum file system blocks=0 200 block groups blocks per group, fragments per group inodes per group Superblock backups stored on blocks: 32768, 98304, , , , , , , , Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and file system accounting information: done This file system will be automatically checked every 27 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. Now all you have to do is create a directory and mount the file system. # mkdir /mnt/iscsi # mount /dev/sdd1 /mnt/iscsi # df Filesyste m 1K-blocks Used Available Use Mounted on /dev/mapper/volgroup00-logvol % / /dev/sda % /boot tmpfs % /dev/shm /dev/sdd % /mnt/iscsi 8

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 Download the software from http://www.starwindsoftware.com/ Click on products then under

More information

BackTrack Hard Drive Installation

BackTrack Hard Drive Installation BackTrack Hard Drive Installation BackTrack Development Team jabra [at] remote-exploit [dot] org Installing Backtrack to a USB Stick or Hard Drive 1 Table of Contents BackTrack Hard Drive Installation...3

More information

Drobo How-To Guide. What You Will Need. Use a Drobo iscsi Array with a Linux Server

Drobo How-To Guide. What You Will Need. Use a Drobo iscsi Array with a Linux Server In today s IT environments, administrators need to learn and understand how to make all of the components that provide services to their users work together. These components include network devices, servers,

More information

FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection-

FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection- FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection- (iscsi) for Linux This page is intentionally left blank. Preface This manual briefly explains the operations that need to be performed

More information

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

Parallels Virtuozzo Containers 4.7 for Linux

Parallels Virtuozzo Containers 4.7 for Linux Parallels Virtuozzo Containers 4.7 for Linux Deploying Clusters in Parallels-Based Systems Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd.

More information

Add Disk Space to a VM when a Partition is Full

Add Disk Space to a VM when a Partition is Full Add Disk Sace to a VM when a Partition is Full Document ID: 119025 Contributed by Mike Dooley, Cisco TAC Engineer. Jun 29, 2015 Contents Introduction Background Information Procedure Section 1 Determine

More information

P4000 SAN/iQ software upgrade user guide

P4000 SAN/iQ software upgrade user guide HP StorageWorks P4000 SAN/iQ software upgrade user guide Abstract This guide provides information about upgrading the SAN/iQ software to release 8.5 Part number: AX696-96010 Second edition: March 2010

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Applications Notes Best Practices for Using SolarWinds' ORION to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Installation Manuals Installation and Setup Guide Health Check Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

HP Software as a Service

HP Software as a Service HP Software as a Service Software Version: 6.1 Federated SSO Document Release Date: August 2013 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

HP SDN VM and Ubuntu Setup

HP SDN VM and Ubuntu Setup HP SDN VM and Ubuntu Setup Technical Configuration Guide Version: 1 September 2013 Table of Contents Introduction... 2 Option 1: VirtualBox Preconfigured Setup... 2 Option 2: VMware Setup (from scratch)...

More information

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family *5991-5301* Part number: 5991-5301 Edition: 3, E0406 Copyright 2006 Hewlett-Packard Development

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Microsoft Hyper-V Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade

How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade Executive summary... 2 System requirements... 2 Hardware requirements...

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Best Practices for Collecting Performance Monitor Logs Legal Notices Warranty The only warranties for HP products and services are set forth

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes SAN/iQ Remote Copy Networking Requirements Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

HP PolyServe Software 4.1.0 upgrade guide

HP PolyServe Software 4.1.0 upgrade guide HP StorageWorks HP PolyServe Software 4.1.0 upgrade guide This document describes how to upgrade to HP PolyServe Matrix Server 4.1.0, HP PolyServe Software for Microsoft SQL Server 4.1.0, and HP PolyServe

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

On Disk Encryption with Red Hat Enterprise Linux

On Disk Encryption with Red Hat Enterprise Linux On Disk Encryption with Red Hat Enterprise Linux Author: Contact: Copyright: URL: Bowe Strickland, Curriculum Manager bowe@redhat.com Copyright 2011, Red Hat, Inc. All rights reserved. http://people.redhat.com/~bowe/summit/2011/tot/on_disk_encryption

More information

HighlyavailableiSCSIstoragewith DRBDandPacemaker

HighlyavailableiSCSIstoragewith DRBDandPacemaker HighlyavailableiSCSIstoragewith DRBDandPacemaker HighlyavailableiSCSIstoragewithDRBDandPacemaker Brian Hellman & Florian Haas Copyright 2009, 2010, 2011 LINBIT HA-Solutions GmbH Trademark notice DRBD and

More information

RedHat (RHEL) System Administration Course Summary

RedHat (RHEL) System Administration Course Summary Contact Us: (616) 875-4060 RedHat (RHEL) System Administration Course Summary Length: 5 Days Prerequisite: RedHat fundamentals course Recommendation Statement: Students should have some experience with

More information

HP Operations Smart Plug-in for Virtualization Infrastructure

HP Operations Smart Plug-in for Virtualization Infrastructure HP Operations Smart Plug-in for Virtualization Infrastructure for HP Operations Manager for Windows Software Version: 1.00 Deployment and Reference Guide Document Release Date: October 2008 Software Release

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Configuring User Authentication...

More information

HP OpenView Smart Plug-in for Microsoft Exchange Server

HP OpenView Smart Plug-in for Microsoft Exchange Server HP OpenView Smart Plug-in for Microsoft Exchange Server For the UNIX Operating System Release Notes Software version: 10.00 / November 2006 This document provides an overview of the changes made to HP

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide Acronis Backup & Recovery 10 Server for Linux Quick Start Guide Table of contents 1 Supported operating systems...3 2 What you need to get started...3 3 Installing and starting to use the product...3 3.1

More information

HP D2D NAS Integration with HP Data Protector 6.11

HP D2D NAS Integration with HP Data Protector 6.11 HP D2D NAS Integration with HP Data Protector 6.11 Abstract This guide provides step by step instructions on how to configure and optimize HP Data Protector 6.11 in order to back up to HP D2D Backup Systems

More information

Guidelines for using Microsoft System Center Virtual Machine Manager with HP StorageWorks Storage Mirroring

Guidelines for using Microsoft System Center Virtual Machine Manager with HP StorageWorks Storage Mirroring HP StorageWorks Guidelines for using Microsoft System Center Virtual Machine Manager with HP StorageWorks Storage Mirroring Application Note doc-number Part number: T2558-96337 First edition: June 2009

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

Synchronizing ProCurve IDM and Windows Active Directory

Synchronizing ProCurve IDM and Windows Active Directory An HP ProCurve Networking Application Note Synchronizing ProCurve IDM and Windows Active Directory Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network and Active Directory tree diagrams... 2

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which

More information

StarWind iscsi SAN Configuring HA File Server for SMB NAS

StarWind iscsi SAN Configuring HA File Server for SMB NAS Hardware-less VM Storage StarWind iscsi SAN Configuring HA File Server for SMB NAS DATE: FEBRUARY 2012 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software

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

How to configure MAC authentication on a ProCurve switch

How to configure MAC authentication on a ProCurve switch An HP ProCurve Networking Application Note How to configure MAC authentication on a ProCurve switch Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. Configuring the ProCurve

More information

HP Data Protector Integration with Autonomy IDOL Server

HP Data Protector Integration with Autonomy IDOL Server HP Data Protector Integration with Autonomy IDOL Server Introducing e-discovery for HP Data Protector environments Technical white paper Table of contents Summary... 2 Introduction... 2 Integration concepts...

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Oracle Backup Recovery Setup on LeftHand Networks IP SAN Legal Notices Warranty The only warranties for HP products and services are set forth

More information

HP OpenView Internet Services. SNMP Integration with HP Operations Manager for Windows White Paper

HP OpenView Internet Services. SNMP Integration with HP Operations Manager for Windows White Paper HP OpenView Internet Services SNMP Integration with HP Operations Manager for Windows White Paper Version: 1.00 Overview... 2 Prerequisites... 2 For HPOM Management Server... 2 For OVIS... 2 Configuration...

More information

Using iscsi with BackupAssist. User Guide

Using iscsi with BackupAssist. User Guide User Guide Contents 1. Introduction... 2 Documentation... 2 Terminology... 2 Advantages of iscsi... 2 Supported environments... 2 2. Overview... 3 About iscsi... 3 iscsi best practices with BackupAssist...

More information

HP Access Control Express Installation Guide

HP Access Control Express Installation Guide HP Access Control Express Installation Guide 1 HP Access Control Express Installation Guide Reference number: 20111005 Edition: November 2011 2 Legal notices (c) Copyright 2011 Hewlett-Packard Development

More information

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE You can read the recommendations in the user guide, the technical guide or the installation guide for HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE. You'll find the answers to all your questions on the HP EMAIL

More information

Red Hat Linux 7.2 Installation Guide

Red Hat Linux 7.2 Installation Guide Red Hat Linux 7.2 Installation Guide Ryan Spangler spanglerrp22@uww.edu http://ceut.uww.edu April 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002

More information

How To Set Up Software Raid In Linux 6.2.2 (Amd64)

How To Set Up Software Raid In Linux 6.2.2 (Amd64) Software RAID on Red Hat Enterprise Linux v6 Installation, Migration and Recovery November 2010 Ashokan Vellimalai Raghavendra Biligiri Dell Enterprise Operating Systems THIS WHITE PAPER IS FOR INFORMATIONAL

More information

How To Use The Enhanced Write Filter On Windows Xp Embedded (Dota) With A Powerbook (Dot) And Powerbook 2 (Windows Xp) With An Overlay (Powerbook) With The Write Filter (Wfmgr) On A

How To Use The Enhanced Write Filter On Windows Xp Embedded (Dota) With A Powerbook (Dot) And Powerbook 2 (Windows Xp) With An Overlay (Powerbook) With The Write Filter (Wfmgr) On A Using the Enhanced Write Filter HP Windows XP Embedded-based thin clients: t5630 t57x0 Abstract... 2 Introduction... 2 Benefits of the Enhanced Write Filter... 2 Enhanced Write Filter Status Service...

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Event Monitoring Service Version A.04.20.11 Release Notes

Event Monitoring Service Version A.04.20.11 Release Notes Event Monitoring Service Version A.04.20.11 Release Notes HP-UX 11i v1 December 2006 Manufacturing Part Number: B7609-90039 December 2006 Copyright 2006 Hewlett-Packard Development Company, L.P. Legal

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Best Practices for Using PRTG Traffic Grapher to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Best Practices Best Practice for Active Monitoring of LeftHand SANs Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

HP Vertica on Amazon Web Services Backup and Restore Guide

HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 8/13/2015 Legal Notices Warranty The only warranties for HP products

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

Linux Host Utilities 6.1 Installation and Setup Guide

Linux Host Utilities 6.1 Installation and Setup Guide Linux Host Utilities 6.1 Installation and Setup Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S.A. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support telephone: +1 (888) 4-NETAPP

More information

HP ilo mobile app for Android

HP ilo mobile app for Android HP ilo mobile app for Android User Guide Abstract The HP ilo mobile app provides access to the remote console and scripting features of HP ProLiant servers. HP Part Number: 690350-003 Published: March

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Use Cases for Integrations with HP Applications Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The

More information

Installing Microsoft Windows

Installing Microsoft Windows Installing Microsoft Windows on HP Workstations with Advanced Format Hard Drives Technical white paper Table of contents Introduction... 2 Identifying an Advanced Format drive... 2 Installing Windows on

More information

HP Software as a Service. Federated SSO Guide

HP Software as a Service. Federated SSO Guide HP Software as a Service Federated SSO Guide Document Release Date: July 2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying

More information

How to Configure Web Authentication on a ProCurve Switch

How to Configure Web Authentication on a ProCurve Switch An HP ProCurve Networking Application Note How to Configure Web Authentication on a ProCurve Switch Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring the ProCurve

More information

Using Secure4Audit in an IRIX 6.5 Environment

Using Secure4Audit in an IRIX 6.5 Environment Using Secure4Audit in an IRIX 6.5 Environment Overview... 3 Icons... 3 Installation Reminders... 4 A Very Brief Overview of IRIX System auditing... 5 Installing System Auditing... 5 The System Audit Directories...

More information

PARALLELS SERVER 4 BARE METAL README

PARALLELS SERVER 4 BARE METAL README PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels

More information

iscsi Quick-Connect Guide for Red Hat Linux

iscsi Quick-Connect Guide for Red Hat Linux iscsi Quick-Connect Guide for Red Hat Linux A supplement for Network Administrators The Intel Networking Division Revision 1.0 March 2013 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

Intel Rapid Start Technology (FFS) Guide

Intel Rapid Start Technology (FFS) Guide Intel Rapid Start Technology (FFS) Guide Technical white paper Table of contents Intel Rapid Start Technology (FFS) Guide... 2 Product Definition... 2 Requirements... 2 Enabling Intel Rapid Start Technology...

More information

HP Priority Services. Priority Access

HP Priority Services. Priority Access HP Priority Services Online Case Management tool Web-based submission and tracking solutions. The HP Support Case Manager (SCM) provides 24/7 access and enables users to submit and manage support cases

More information

HP Thin Client Imaging Tool

HP Thin Client Imaging Tool HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Installation and Update Guide Table of contents Overview... 3 HPDM Server preparation... 3 FTP server configuration... 3 Windows Firewall settings... 3 Firewall

More information

NI Real-Time Hypervisor for Windows

NI Real-Time Hypervisor for Windows QUICK START GUIDE NI Real-Time Hypervisor Version 2.1 The NI Real-Time Hypervisor provides a platform you can use to develop and run LabVIEW and LabVIEW Real-Time applications simultaneously on a single

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos)

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) Document Version 3.23 November 2010 1 Copyright 2007-2010 Hewlett-Packard Development Company, L.P. The information

More information

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Installation and integration guide Abstract... 2 Introduction... 2 Application overview... 2 Application configuration...

More information

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox Introduction... 3 Exchange 2003... 4 Creating a Recovery Storage Group... 4 Restoring the Information

More information

HP Data Protector best practices for backing up and restoring Microsoft SharePoint Server 2010

HP Data Protector best practices for backing up and restoring Microsoft SharePoint Server 2010 HP Data Protector best practices for backing up and restoring Microsoft SharePoint Server 2010 Technical white paper Table of contents Introduction... 2 Configuring Data Protector Security... 4 Data Protector

More information

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide Part Number 371502-004 October 2007 (Fourth Edition) Copyright 2004, 2007 Hewlett-Packard Development

More information

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 Hadoop Cluster Monitoring Solution Template Best Practices Document Release Date: December 2013 Software Release

More information

StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013

StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013 StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

Zadara Storage Cloud. VPSA User Guide. February 2014. Revision B. 2011 2014 ZADARA Storage, Inc. All rights reserved.

Zadara Storage Cloud. VPSA User Guide. February 2014. Revision B. 2011 2014 ZADARA Storage, Inc. All rights reserved. Zadara Storage Cloud February 2014 Revision B 2011 2014 ZADARA Storage, Inc. All rights reserved. Page 1 Contents 1 Preface... 5 1.1 Intended Audience... 5 1.2 Document History... 5 2 Introduction... 5

More information

How to configure 802.1X authentication with a Windows XP or Vista supplicant

How to configure 802.1X authentication with a Windows XP or Vista supplicant An HP ProCurve Networking Application Note How to configure 802.1X authentication with a Windows XP or Vista supplicant Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database. Software Version: 7.2.x

Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database. Software Version: 7.2.x Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 12/15/2015 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise

More information

StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013

StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013 StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks

More information

Configuring Offboard Storage Guide

Configuring Offboard Storage Guide Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-12-03 Copyright Notice Copyright 2014 Juniper

More information

Parallels Server Bare Metal 5.0

Parallels Server Bare Metal 5.0 Parallels Server Bare Metal 5.0 Getting Started Guide Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels

More information

StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012

StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012 StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

WES 9.2 DRIVE CONFIGURATION WORKSHEET WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may

More information

Configuring HP LeftHand Storage with Microsoft Windows Server

Configuring HP LeftHand Storage with Microsoft Windows Server Technical white paper Configuring HP LeftHand Storage with Microsoft Windows Server Table of contents Introduction 3 Target audience 3 Connecting Windows server to HP LeftHand volumes 3 Assigning a VIP

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

StarWind iscsi SAN Software: Using StarWind with VMware ESX Server

StarWind iscsi SAN Software: Using StarWind with VMware ESX Server StarWind iscsi SAN Software: Using StarWind with VMware ESX Server www.starwindsoftware.com Copyright 2008-2010. All rights reserved. COPYRIGHT Copyright 2008-2010. All rights reserved. No part of this

More information