Reconciliation and best practices in a configuration management system. White paper

Size: px
Start display at page:

Download "Reconciliation and best practices in a configuration management system. White paper"

Transcription

1 Reconciliation and best practices in a configuration management system White paper

2 Table of contents Introduction... 3 A reconciliation analogy: automobile manufacturing assembly... 3 Conflict resolution... 4 Identity resolution... 4 HP CMS reconciliation architecture Conduits... 6 Data providers... 6 Use cases... 8 Use case #1: reconciliation of DDM data... 8 Use case #2: reconciliation in a federated scenario... 8 Use case #3: reconciliation by an API... 9 Use case #4: key loading reconciliation via pre-established keys... 9 Recommended best practices...11 Conclusion...11

3 Introduction This paper illustrates key concepts of data reconciliation and the critical role it plays in the creation and enablement of a successful configuration management system (CMS). This topic is especially relevant for data architects who are responsible for the data layer of the solution including class models, reconciliation, mapping between these class models, and the governance process of changing the models. In a CMS, the integrated configuration management database () stores only core service data; extended service data is stored in various federated repositories of the CMS. The integrated functions as the central coordinator that drives decisions about data location, ownership, tracking, and updates to help the CMS determine when, where, and how to pull together the data on demand. How then does a CMS know what data to consume, which data providers to trust, which data to accept, and how to handle conflicting data? The process of reconciliation handles these complex tasks, which enables the to compile accurate configuration items (CI) on demand from different consumers. Reconciliation occurs in every federation, query, discovery, or synchronization process in the CMS. This process is a key technical enabler that must be well thought out and deployed for a successful CMS implementation to effectively manage the IT infrastructure, processes, and services to deliver desired business outcomes. This paper also highlights HP s approach and best practices in architecting and implementing reconciliation in a CMS. A reconciliation analogy: automobile manufacturing assembly An interesting way to understand reconciliation is to think of an automobile manufacturing plant. As the cars roll down the assembly line, automated robots assemble different parts of the car. If the robot has access to multiple suppliers providing different parts, it becomes the robot s task to pick the correct supplier for the correct part, as well as to ensure that the correct part is assembled at the different points of assembly. Similarly, to assemble a CI requested by a consumer application, the CMS reconciliation process must consider two aspects: 1. Where do I get the data from in the CMS? This question is resolved through conflict resolution. 2. How do I pick the correct data from the source I have selected and assemble it with my CI? This issue is resolved through identity resolution. Let s look at how conflict and identity resolution work to provide data reconciliation in a CMS. 3

4 Conflict resolution Conflict resolution is the process of selecting the correct data provider for a given data attribute when presented with multiple data provider options within the CMS. As IT organizations grow over time, overlap between applications becomes unavoidable and, as a result, the same data is often available in multiple repositories. Different consumers usually pick one of the repositories and start to trust that repository as authoritative. However, due to the introduction of newer technology, company policies, or better discovery tools, consumers get access to other sources of the same data. Each of these alternative sources may provide different data values, quality, or even different update cycles. The question becomes which source should the consumer use? There are two approaches to resolve this conflict: 1. Collect raw data from every possible source into one central repository, wait until all data is collected, and then feed all data into one central reconciliation engine to determine the correct data set. For the next required data set, repeat the same cycle. 2. Alternatively, determine one repository that is best suited to accurately provide the correct data value. When the data is required, go to the pre-selected provider to obtain it. HP recommends the second approach which is to ensure that each data attribute has its own authoritative data provider. This data provider is determined when designing the CMS architecture and is known as the single authoritative source of record (ASOR) for that particular data attribute. Often, the ASOR is the repository that owns the attribute and therefore is responsible for the accuracy and integrity of that attribute. This distinction is helpful when choosing between two apparently authoritative data sources. This approach not only reduces network traffic between the requestor and multiple providers for each data request, but also eliminates numerous computing cycles to compare several copies of the data to decide which one wins. Once the request has been made to obtain the data, reconciliation then ensures that the correct data is identified through identity resolution. Identity resolution Identity resolution is the process of selecting the correct data attributes for a given consumer CI request. This is achieved by matching the same CIs in different repositories. For example, a CI request for a particular service may require the Universal to pull together different attributes from multiple data providers. An identity context needs to be established for each of these repositories to pull together data that is consistent, accurate, and reliable for that particular service CI. Without this common context, there is no reliable mechanism to tie the different data attributes from multiple data providers together. Identity matching can be simple or complex depending on the nature of the data required for a given CI request. Some identity resolutions can be achieved by simple key-matching between unique identifiers think of a database JOIN concept between two tables to find the appropriate unique record. Other identity resolutions require complex computation in addition to key-matching. For example, a person s first and last names (which is not enough data), plus the person s employer s name (which still is not enough data), and the person s manager s name (which is probably enough data). If unique data is embedded in other data or split across multiple attributes, reconciliation must support transformations and conversions between data models. These conditions arise from the fact that different data stores may store the same data in multiple formats. For example, a person s first and last names may be stored as two separate attributes in one data model ( John, Smith ), and as a single attribute ( John Smith ) in another data model. In order to reconcile these, either the two names need to be combined, or the single name needs to be split into the first and last name. 4

5 HP s CMS reconciliation strategy supports both types of identity resolutions as illustrated in the use cases section. Reconciliation is a critical enabler of a good CMS, and poor capabilities in this component of the architecture can result in many inefficiencies and problems such as: Increased network and storage usage due to same data attributes stored in and transported across multiple repositories in the CMS Time wasted in investigating the accuracy and validity of data before using it Increased computing resources required to resolve frequent data integrity conflicts Let s now take a look at how the HP CMS reconciliation architecture enables the reconciliation strategy described above. HP CMS reconciliation architecture Reconciliation in the HP CMS can be characterized by describing the interaction between the, the, and the Data Providers, with the interactions being carried out by the Conduits. Core service data Extended service data DDM discovery Federation API ETL (Connect-IT) Conduits Project and portfolio Data providers Third-party integration Application quality LDAP Service desk Asset Business service automation BSM A consumer application initiates a CI request. For example, a service manager application requests the operational state of a service CI. The integrated acts as the broker for the CI request. It receives the CI request from the consumer application and executes the steps required to respond to the request. It knows the ASOR for each data attribute and the multiple protocols and methods to obtain this data. Its core reconciliation engine performs the reconciliation needed in addition to the distributed reconciliation processes. Finally, it puts together the final CI and responds to the consumer request. 5

6 Conduits Conduits are mechanisms that act as bridges between consumers and providers via the Universal. Conduits are built on specific technologies such as Discovery and Dependency Mapping (DDM), federation adapters, and APIs. Additional communication layers build on these as well, such as ETL (Connect-IT) and Java -based clients. Each of the conduits may themselves perform reconciliation at transportation time, in addition to the core reconciliation engine in, depending on the reconciliation use case. Data providers Data in an HP CMS is either stored in the integrated Universal itself or in other data providers in the CMS. Core service data is stored in the Universal or non-federated providers that replicate their data into the Universal on a periodic basis through DDM discovery, API calls, or ETLs (Connect-IT). Extended service data is stored and dynamically accessed from the federated providers at run time through federation adapters and services. Data providers Replication through ELT (Connect-IT) Asset center IT Financial Management SW/HW asset management Contracts, ownership, financial, licenses, etc. Federation Network management center Optimize network availability, performance, and bandwidth Network performance, configuration data Replication through DDM discovery Server Replication through API Third-party product Domain-specific metadata, process outcomes Let s now look at the selection process of authoritative sources for data attributes, the most critical choice point in the design phase of a CMS. Conflict resolution by selecting the appropriate authoritative source of record Going back to the automobile-assembly analogy, as discussed previously, let s assume that the decision to pick the correct supplier is left to the robot at the point of actual assembly. Each time the robot assembles a part, it becomes the robot s task to pick one of the suppliers and the correct part at the time of assembly. In this scenario, it becomes the robot s responsibility to implement quality control for the part. Some parts may fit well while others may be mismatched by color, size, or type. To find the correct part, the robot needs to sort through multiple parts, which slows or even stops the assembly line. However, if the robot knew before actual assembly time which supplier to get the part from, the operation would execute flawlessly each time. In case of a quality issue, it would be simple to pinpoint the offending supplier and rectify the issue quickly. For this to happen, a proactive, upfront approach in the planning phase of the automobile plant is imperative. At the time of designing the automobile plant, correct specifications, time, quantity, and other attributes of each of the parts need to be described to different suppliers. Depending on the supplier s ability, an agreement then needs to be documented which states: If you can give me the correct part at the right time in the right quantity, I will trust you as my authoritative source of car parts. If your error rates are above acceptable limits or if you are unable to supply the right parts at the right time, I will drop you as my preferred supplier. By planning ahead so that only the correct part arrives at the time it is required, we remove the need for the robot to sort through and choose the correct part from numerous suppliers at assembly time. 6

7 Similarly, a reconciliation strategy that picks every possible data attribute available and feeds it into one central über-reconciliation engine to make the appropriate decision each time, leads to degraded reconciliation performance and quality as the size and complexity of the CMS grows. Throwing more processing power at the problem may decrease the wall-clock time required but does not improve the quality of reconciliation. HP s approach to reconciliation is to determine the best ASOR for each data attribute when designing the CMS architecture. The real owner of each attribute is identified before adding it to the CMS. This approach avoids elaborate conflict-resolution processes at run time. Use cases are exercised to choose the appropriate ASOR for each attribute. Exceptions to this rule are treated as exceptions there should be exactly one authoritative source for any given attribute. If there are possible multiple sources, it is imperative to identify which source to defer to, and under what conditions. This approach ensures de-duplication and cleans up data sources at selection time. For example, between HP DDM and HP Network Node Manager (NNM), HP NNM would generally be identified as the ASOR for providing network devices information. As NNM provides additional depth and network management capabilities, it is the logical choice as the ASOR for networks and network devices. NNM patterns should be used to discover network devices and DDM default patterns for discovering network devices not activated. ASOR Federation Network management center Optimize network availability, performance, and bandwidth Network performance, configuration data DDM discovery Server An ASOR should be unique in scope and business accountability for the data it provides. If two provider data sources appear to be equal in all respects, the correct ASOR is the one that is accountable from a business perspective for maintaining accurate records. 7

8 Use cases The four use cases described below illustrate different aspects of reconciliation. As conflict resolution is alleviated at the time of designing the CMS, these use cases describe identity resolution at run time. Use case #1: reconciliation of DDM data Core service data in the Universal is updated periodically by DDM discovery. As changes occur in the CMS, these are discovered by the discovery probes and sent back to the Universal. Internal Universal reconciliation engine DDM discovery Server Data provider For example, assume that a CI exists for a server Hiawatha and that the host-name is the key for that CI. If an OS patch has been applied to the server since the last discovery, the new discovery cycle will report the update back to the Universal. Without any reconciliation mechanism, a duplicate CI would be created due to the difference in an attribute value (OS patch level). However, the mechanism of identity resolution ensures that the existing CI is matched with the new discovery through host-name key comparison and the existing CI is updated with the new attribute value. Use case #2: reconciliation in a federated scenario In the example illustrated above, the CI is put together by the Universal by federating data attributes from different data providers. Data provider Asset center Memory: 8 GB Hostname svr1 IP: OS: HP-UX Memory: 8 GB Status: Red Third-party product Hostname svr1 Status: Red IP: OS: HP-UX Memory attribute ASOR: asset manager Status attribute ASOR: third-party product IP attribute ASOR: network node manager Internal Universal reconciliation engine Hostname svr1 Memory: 8 GB Status: Red IP: Reconciled IP: Network management center Hostname svr1 IP: Mac address: xyz Hostname: Niles 8

9 If the ASORs for the attributes are not determined, the Universal needs to query every provider for each data attribute and process every returned value through the reconciliation engine to decide the winner. If there is a failure, further queries and reconciling cycles are needed. The cycle is then repeated for each attribute in the CI. Clearly, when scaled up, this approach generates an incremental load on network traffic, reconciliation cycles, and data providers. However, per HP s CMS reconciliation strategy, each attribute required for compiling the requested CI is pulled only from its own ASOR any other provider in the CMS containing the same attribute is ignored. For example, even though the IP attribute could be pulled from each of the three providers, it is only federated from NNM, its ASOR, determined at the CMS design phase. This bypasses the need for IP attribute conflict resolution at run time and reduces processing cycles in the core reconciliation engine. The reconciliation engine only needs to assemble the correct attributes together as opposed to spending several cycles trying to decide the best value for each and every attribute from every possible provider in the CMS. Only identity resolution is performed as the host-name matching is done with each provider to pull the right data set from each of the sources. Use case #3: reconciliation by an API A data provider itself may invoke an API to push a CI creation, update, or deletion into the Universal. In this case, reconciliation works in the same manner as discovery reconciliation based on matching data values. To maintain the integrity of the CIs in the Universal, the reconciliation process compares one or more attribute values, and if necessary, business logic is also executed. The CI is then appropriately created, updated, or deleted. 1. CI create, update, or delete PUSH 2. Universal reconciliation Third-party product Internal Universal reconciliation engine Data provider Use case #4: key loading reconciliation via pre-established keys Key loading is a method to speed up reconciliation at operational run time by establishing a pre-determined handshake between the integrated and a data provider. Normal reconciliation Internal Universal reconciliation engine 3. Identity reconciliation, business logic to retrieve correct data 1. CI query 2. Extended data request Third-party product 6. Query response 4. Extended data response 5. Universal reconciliation Data provider 9

10 This handshake is established by inserting unique Universal IDs into the data provider as foreign keys (foreign key population). Here, Connect-IT acts as the key loading engine, populating unique Universal CI IDs into the data provider. Key loading should occur periodically to ensure any data changes in the provider have up-to-date foreign keys. Key loading Internal U reconciliation engine Foreign keys inserted into federated data provider Foreign key: CI ID Network node manager Data provider At query time, the Universal only needs to use a single key the unique CI ID to retrieve the extended data from the federated data provider and bypass the latency of the reconciliation (identity resolution) process itself. Reconciliation at run time (after key loading has taken place) 1. CI query 6. Query response Internal Universal reconciliation engine 2. Extended data request 4. Extended data response 5. Universal reconciliation 3. Identity reconciliation, business logic to retrieve correct data Foreign key: Cl ID Network node manager Data provider Reconciliation is efficient and immediate, improving consumer response time and reducing load on the data provider. Note that an algorithm is still needed to match provider records with the identity of the CIs in the Universal. Reconciliation cannot be cheated through key loading; it simply provides a faster query at consumer query time. It is important to consider data latency tradeoffs when implementing key loading. As key loading is performed periodically, data in the provider may change between the key loading cycles. If a query is made before the next key loading cycle is run, the data returned may not be accurate or current. Therefore, though key loading provides faster query responses at run time, real-time reconciliation is the only option for real-time data needs. 10

11 Recommended best practices 1. Incorporate use-case exercises during the CMS planning phase to design your reconciliation strategy. Reconciliation works best when heavy emphasis is laid at the planning phase. This helps reduce reconciliation processing cycles at run time, as well as reduce the cost of maintaining reconciliation rules. 2. Determine one ASOR for each data attribute in the CMS. This enables data reconciliation to trust and connect only to that source for the required data avoiding conflict resolution during run time. 3. Every CI and attribute in the CMS should have an owner. This ownership should be specifically established at the attribute level and not at the CI level. Any attribute without an owner should be considered a nonauthoritative attribute. 4. Re-evaluate the validity of ASORs periodically. As the CMS matures, new data providers may be added or dropped out of the CMS. It is important to ensure that the required data is provided by true ASORs at any given point of time. Conclusion Technologies that accept data from every possible source and process it through batch-type reconciliation cycles in a central über-engine fail to scale up as the number of CIs grows in the or the CMS grows in complexity or size. Reconciliation loads tend to grow over time and it becomes an uphill battle to manage increasingly lengthier computing cycles to reconcile data. Even with this expensive approach, data may not be reliable, up to date, or readily available when needed by a consumer in the CMS. HP s CMS reconciliation strategy is distinctly geared to be a key enabler of a well-functioning and efficient CMS. First, HP CMS s reconciliation strategy strongly emphasizes the need to rationalize data providers that act as authoritative sources for configuration data. Most attention is paid to this aspect of the CMS architecture at the planning phase of the lifecycle through use-case exercises. This strategy acts as a gatekeeper for those data attributes into the reconciliation engines whose validity is ensured by the authoritative sources themselves. Second, the distributed architecture and flexible configurability of the reconciliation components enables real-time reconciliation in the core reconciliation engine and various conduits that connect the CMS consumers, Universal, and its data providers. It avoids overloading the core reconciliation engine and enables scalability as a CMS matures. Third, has a number of productized integrations with other HP Business Technology Optimization (BTO) software and third-party products for which the HP CMS reconciliation architecture is well defined. This allows data architects to implement these components without any additional efforts or investments on reconciliation other than making modifications for their unique situations. HP CMS reconciliation enables actionable federation for a real CMS whose reconciliation capabilities are scalable, efficient, and fast with a high quality of data integrity. These capabilities enable active reconciliation of data when CIs are added, updated, or deleted, which provides that data is always valid, current, and up to date when the business needs it. 11

12 Get connected Get the insider view on tech trends, alerts and HP solutions for better business outcomes Technology for better business outcomes To learn more, visit Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. 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. Java is a U.S. trademark of Sun Microsystems, Inc. 4AA2-8202ENW, December 2009

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

HP Asset Manager. Software version: 5.20. Asset Tracking Solution

HP Asset Manager. Software version: 5.20. Asset Tracking Solution HP Asset Manager Software version: 5.20 Asset Tracking Solution Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices Copyright Notices Copyright 1994-2009 Hewlett-Packard

More information

HP Change Configuration and Release Management (CCRM) Solution

HP Change Configuration and Release Management (CCRM) Solution HP Change Configuration and Release Management (CCRM) Solution HP Service Manager, HP Release Control, and HP Universal CMDB For the Windows Operating System Software Version: 9.30 Concept Guide Document

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Asset Tracking solution Build number: 120 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Service Manager software

HP Service Manager software HP Service Manager software The HP next generation IT Service Management solution is the industry leading consolidated IT service desk. Brochure HP Service Manager: Setting the standard for IT Service

More information

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices HP Universal CMDB Software Version: 10.22 Data Flow Management Best Practices Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP

More information

HP Remote Monitoring. How do I acquire it? What types of remote monitoring tools are in use? What is HP Remote Monitoring?

HP Remote Monitoring. How do I acquire it? What types of remote monitoring tools are in use? What is HP Remote Monitoring? HP Remote Monitoring HP Remote Monitoring is an efficient, secure means of collecting and reporting usage data from your printing and imaging output environment. What is HP Remote Monitoring? HP Remote

More information

BRIDGE. the gaps between IT, cloud service providers, and the business. IT service management for the cloud. Business white paper

BRIDGE. the gaps between IT, cloud service providers, and the business. IT service management for the cloud. Business white paper BRIDGE the gaps between IT, cloud service providers, and the business. IT service management for the cloud Business white paper Executive summary Today, with more and more cloud services materializing,

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 HP NNMi - HP BSM Topology Integration Best Practices Document Release Date: December 2013 Software Release

More information

How To Standardize Itil V3.3.5

How To Standardize Itil V3.3.5 Business white paper Standardize your ITSM An HP approach based on best practices Table of contents 3 Introduction 3 Benefits and challenges 5 The HP approach to standardizing ITSM 6 Establish an IT operations

More information

HP E-PCM Plus Network Management Software Series

HP E-PCM Plus Network Management Software Series Data sheet Product overview HP E-PCM Plus Network Management is a Microsoft Windows -based network management platform that enables mapping, configuration, and monitoring. HP PCM Plus provides security

More information

The top 10 misconceptions about performance and availability monitoring

The top 10 misconceptions about performance and availability monitoring The top 10 misconceptions about performance and availability monitoring Table of contents Introduction................................................................ 3 The top 10 misconceptions about

More information

Automated testing and continuous integration

Automated testing and continuous integration Technical white paper Automated testing and continuous integration Build and test your software at the same time Table of contents Introduction 2 Who should read this document? 2 Build managers 2 Developers

More information

HP Universal CMDB, Universal Discovery, and UCMDB Configuration Manager Software Licensing and Configuration Guide

HP Universal CMDB, Universal Discovery, and UCMDB Configuration Manager Software Licensing and Configuration Guide HP Universal CMDB, Universal Discovery, and UCMDB Configuration Manager Software Licensing and Configuration Guide Document Summary This document is intended for HP customers to clarify the different components

More information

Table of contents. Standardizing IT Service Management. Best practices based on HP experience in ITSM consolidation. White paper

Table of contents. Standardizing IT Service Management. Best practices based on HP experience in ITSM consolidation. White paper Standardizing IT Service Management Best practices based on HP experience in ITSM consolidation White paper Table of contents Go!... 2 Benefits and challenges... 2 The HP approach to standardizing ITSM...

More information

Legal Notices... 2. Introduction... 3

Legal Notices... 2. Introduction... 3 HP Asset Manager Asset Manager 5.10 Sizing Guide Using the Oracle Database Server, or IBM DB2 Database Server, or Microsoft SQL Server Legal Notices... 2 Introduction... 3 Asset Manager Architecture...

More information

ProCurve Manager Plus 2.2

ProCurve Manager Plus 2.2 NEW ProCurve Manager Plus 2.2 ProCurve Manager Plus 2.2 is a secure, advanced Windows -based network management platform that allows administrators to configure, update, monitor, and troubleshoot ProCurve

More information

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer Survey Utility HP Industry Standard Servers June 2004 HP Insight Diagnostics Online Edition Technical White Paper Featuring Survey Utility and IML Viewer Table of Contents Abstract Executive Summary 3

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Processes and Best Practices Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows/Linux operating system Software Version: 9.20 Effective Modeling for BSM Best Practices Document Release Date: August 2012 Software Release Date: August 2012

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

HP PCM Plus v4 Network Management Software Series

HP PCM Plus v4 Network Management Software Series HP PCM Plus v4 Network Management Software Series Data sheet Product overview HP PCM+ Network Management Software is a Microsoft Windows -based network management platform that enables mapping, network

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Integration with software distribution tools Build number: 50 Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server Performance brief for IBM WebSphere Application Server.0 with VMware ESX.0 on HP ProLiant DL0 G server Table of contents Executive summary... WebSphere test configuration... Server information... WebSphere

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

HP Application Security Center

HP Application Security Center HP Application Security Center Web application security across the application lifecycle Solution brief HP Application Security Center helps security professionals, quality assurance (QA) specialists and

More information

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide Product overview... 3 Vulnerability scanning components... 3 Vulnerability fix and patch components... 3 Checklist... 4 Pre-installation

More information

HP Systems Insight Manager and HP OpenView

HP Systems Insight Manager and HP OpenView HP Systems Insight Manager and HP OpenView Working Better Together to Deliver End-to-End Management, from Hardware Infrastructure to Business Service Availability Executive Summary... 2 Challenges of Managing

More information

10 Best Practices for Application Performance Testing

10 Best Practices for Application Performance Testing Business white paper 10 Best Practices for Application Performance Testing Leveraging Agile Performance Testing for Web and Mobile Applications 10 Best Practices for Application Performance Testing Table

More information

HP Storage Data Migration Service

HP Storage Data Migration Service HP Storage Data Migration Service HP Data Center Services Technical data The HP Storage Data Migration Service transfers your designated information to target storage device technologies across a data

More information

Additional License Authorizations

Additional License Authorizations Additional License Authorizations for HP Service Management Center Software products and for HP Release Control Software Product use authorizations This document provides Additional License Authorizations

More information

HP Data Replication Solution Service for 3PAR Virtual Copy

HP Data Replication Solution Service for 3PAR Virtual Copy HP Data Replication Solution Service for 3PAR Virtual Copy HP Care Pack Services Technical data HP Data Replication Solution Service for 3PAR Virtual Copy provides implementation of the HP 3PAR Storage

More information

HP OpenView Service Desk Process Insight 2.10 software

HP OpenView Service Desk Process Insight 2.10 software HP OpenView Service Desk Process Insight 2.10 software Data sheet HP OpenView Service Desk Process Insight software provides real-time visibility into the ITIL processes managed by your HP OpenView Service

More information

Solution brief. HP solutions for IT service management. Integration, automation, and the power of self-service IT

Solution brief. HP solutions for IT service management. Integration, automation, and the power of self-service IT Solution brief HP solutions for IT service management Integration, automation, and the power of self-service IT Make IT indispensable to the business. Turn IT staff into efficient, cost-cutting rock stars.

More information

HP OpenView Application Readiness Program Data sheet

HP OpenView Application Readiness Program Data sheet HP OpenView Application Readiness Program Data sheet The HP OpenView Application Readiness Program enables implementation partners (HP consulting, value-added resellers and system integrators) to leverage

More information

HP ProCurve Identity Driven Manager 3.0

HP ProCurve Identity Driven Manager 3.0 Product overview HP ProCurve Identity Driven Manager (IDM), a plug-in to HP ProCurve Manager Plus, dynamically provisions network security and performance settings based on user, device, location, time,

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

McAfee Agent Handler

McAfee Agent Handler McAfee Agent Handler COPYRIGHT Copyright 2009 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

Finding the right cloud solutions for your organization

Finding the right cloud solutions for your organization Finding the right cloud solutions for your organization Business white paper If you manage technology today, you know the story: everything is mobile, connected, interactive, immediate, and fluid. Expectations

More information

Quantifying the Value of Investments in HP Cloud Service Automation. An ROI White Paper

Quantifying the Value of Investments in HP Cloud Service Automation. An ROI White Paper Quantifying the Value of Investments in HP Cloud Service Automation An ROI White Paper Table of contents Executive overview... 3 Benefit categories... 3 Effective Cloud Service Automation: Managing the

More information

RUNNING A HELPDESK CONTENTS. using HP Web Jetadmin

RUNNING A HELPDESK CONTENTS. using HP Web Jetadmin RUNNING A HELPDESK using HP Web Jetadmin CONTENTS Overview... 2 Helpdesk examples... 2 Viewing devices... 2 Quick Device Discovery... 3 Search... 3 Filters... 3 Columns... 4 Device Groups... 4 Troubleshooting

More information

Innovative technology for big data analytics

Innovative technology for big data analytics Technical white paper Innovative technology for big data analytics The HP Vertica Analytics Platform database provides price/performance, scalability, availability, and ease of administration Table of

More information

Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates

Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates Quick and economical troubleshooting and performance management for Microsoft environments Business white

More information

capacity management for StorageWorks NAS servers

capacity management for StorageWorks NAS servers application notes hp OpenView capacity management for StorageWorks NAS servers First Edition (February 2004) Part Number: AA-RV1BA-TE This document describes how to use HP OpenView Storage Area Manager

More information

Service Virtualization:

Service Virtualization: Service Virtualization: Reduce the time and cost to develop and test modern, composite applications Business white paper Table of contents Why you need service virtualization 3 The challenges of composite

More information

HP and Business Objects Transforming information into intelligence

HP and Business Objects Transforming information into intelligence HP and Business Objects Transforming information into intelligence 1 Empowering your organization Intelligence: the ability to acquire and apply knowledge. For businesses today, gaining intelligence means

More information

HP StoreOnce D2D. Understanding the challenges associated with NetApp s deduplication. Business white paper

HP StoreOnce D2D. Understanding the challenges associated with NetApp s deduplication. Business white paper HP StoreOnce D2D Understanding the challenges associated with NetApp s deduplication Business white paper Table of contents Challenge #1: Primary deduplication: Understanding the tradeoffs...4 Not all

More information

A closer look at HP LoadRunner software

A closer look at HP LoadRunner software Technical white paper A closer look at HP LoadRunner software Table of contents Sizing up the system 2 The limits of manual testing 2 A new take on testing: the HP LoadRunner solution 3 The HP LoadRunner

More information

HP CloudSystem Matrix: Collecting Usage Data for Showback, Charge-back, and Billing Purposes

HP CloudSystem Matrix: Collecting Usage Data for Showback, Charge-back, and Billing Purposes HP CloudSystem Matrix: Collecting Usage Data for Showback, Charge-back, and Billing Purposes Technical white paper Table of contents Abstract... 2 Overview... 2 CloudSystem Matrix... 4 The CloudSystem

More information

HP OpenView Service Level Manager 5.0 software

HP OpenView Service Level Manager 5.0 software HP OpenView Service Level Manager 5.0 software Data sheet Meet the challenge of running IT as a business with HP OpenView Service Level Manager 5.0. This module of the HP OpenView Service Desk 5.0 a second-generation

More information

Enterprise Business Service Management

Enterprise Business Service Management Technical white paper Enterprise Business Service Management Key steps and components of a successful solution Table of contents Executive Summary... 2 Setting the goal establishing an IT initiative...

More information

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management HP Asset Manager Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management How To Manage Generic Software Counters and Multiple Companies Legal Notices... 2 Introduction...

More information

HP OpenView Smart Plug-in for Active Directory

HP OpenView Smart Plug-in for Active Directory HP OpenView Smart Plug-in for Active Directory Data sheet As the primary enterprise directory service in Windows environments, the criticality of monitoring and maintaining Microsoft Active Directory cannot

More information

Table of contents. HP NNMi: the i is for integration. White paper

Table of contents. HP NNMi: the i is for integration. White paper HP NNMi: the i is for integration. White paper Table of contents Executive summary... 2 HP software integrations (supported out of the box)... 3 HP NNMi integrations for Business Service Management...

More information

EMC Documentum Interactive Delivery Services Accelerated Overview

EMC Documentum Interactive Delivery Services Accelerated Overview White Paper EMC Documentum Interactive Delivery Services Accelerated A Detailed Review Abstract This white paper presents an overview of EMC Documentum Interactive Delivery Services Accelerated (IDSx).

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Service Desk help topics for printing Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

HP Prior Software Version Support HP Mature Software Product Support

HP Prior Software Version Support HP Mature Software Product Support HP Prior Software Version Support HP Mature Software Product Support HP Technology Services - Contractual Services Technical data HP Prior Software Version Support and HP Mature Software Product Support

More information

HP Insight Capacity Advisor Virtualization Services

HP Insight Capacity Advisor Virtualization Services HP Insight Capacity Advisor Virtualization Services HP Services Service overview HP Insight Capacity Advisor Virtualization Services (icavs) can assist you in understanding and developing a consolidated

More information

HP Smart Array Controllers and basic RAID performance factors

HP Smart Array Controllers and basic RAID performance factors Technical white paper HP Smart Array Controllers and basic RAID performance factors Technology brief Table of contents Abstract 2 Benefits of drive arrays 2 Factors that affect performance 2 HP Smart Array

More information

HP PCM Plus v3 Network Management Software Series Overview

HP PCM Plus v3 Network Management Software Series Overview Overview HP PCM Plus Network Management is a Microsoft Windows -based network management platform that enables mapping, configuration, and monitoring. HP PCM Plus provides security and extensibility for

More information

Agile and the cloud: why automating application deployment matters. Executive summary. Applications are the business

Agile and the cloud: why automating application deployment matters. Executive summary. Applications are the business Agile and the cloud: why automating application deployment matters Business white paper Executive summary Agile development methodologies and the cloud computing model have increased the pace of deployment

More information

HP Intelligent Management Center Enterprise Software. Platform. Key features. Data sheet

HP Intelligent Management Center Enterprise Software. Platform. Key features. Data sheet Data sheet HP Intelligent Management Center Enterprise Software Platform Key features Highly flexible and scalable deployment options Powerful administration control Rich resource management Detailed performance

More information

HP 3PAR storage technologies for desktop virtualization

HP 3PAR storage technologies for desktop virtualization Maximize virtual desktop ROI without risking service levels HP 3PAR storage technologies for desktop virtualization Solution brief Desktop virtualization pushes the cost, efficiency, and management benefits

More information

QuickSpecs. HP PCM Plus v4 Network Management Software Series (Retired) Key features

QuickSpecs. HP PCM Plus v4 Network Management Software Series (Retired) Key features Overview (Retired) HP PCM+ Network Management Software is a Microsoft Windows -based network management platform that enables mapping, network and device configuration, and monitoring. HP PCM+ provides

More information

HP Education Services Course Overview

HP Education Services Course Overview HP Education Services Course Overview HP Operations Manager for UNIX I (Administration) (H4356S) This five-day course is the first of three courses (H4356S + H4357S + UC342) on HP Operations 8.x Software

More information

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

the limits of your infrastructure. How to get the most out of virtualization

the limits of your infrastructure. How to get the most out of virtualization the limits of your infrastructure. How to get the most out of virtualization Business white paper Table of contents Executive summary...4 The benefits of virtualization?...4 How people and processes add

More information

Table of contents. Best practices in open source governance. Managing the selection and proliferation of open source software across your enterprise

Table of contents. Best practices in open source governance. Managing the selection and proliferation of open source software across your enterprise Best practices in open source governance Managing the selection and proliferation of open source software across your enterprise Table of contents The importance of open source governance... 2 Executive

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Incident Management help topics for printing Document Release Date: July 2014 Software Release Date: July

More information

HP Web Jetadmin Database Connector Plug-in reference manual

HP Web Jetadmin Database Connector Plug-in reference manual HP Web Jetadmin Database Connector Plug-in reference manual Copyright notice 2004 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation or translation without prior written permission

More information

Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager

Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager Integration note, 4 th edition Introduction... 2 Utilizing HP WBEM Providers for Windows... 2 Security...

More information

HP Matrix Operating Environment Federated CMS Overview

HP Matrix Operating Environment Federated CMS Overview HP Matrix Operating Environment Federated CMS Overview HP Matrix OE infrastructure orchestration 7.0 Technical white paper Table of contents Introduction... 2 Overview... 2 Installation and configuration...

More information

HP Virtual Controller and Virtual Firewall for VMware vsphere 1-proc SW LTU

HP Virtual Controller and Virtual Firewall for VMware vsphere 1-proc SW LTU HP Virtual Controller and Virtual Firewall for VMware vsphere 1-proc SW LTU Data sheet Product overview The HP TippingPoint Virtual Controller + Virtual Firewall (vcontroller+vfw) extends our leading intrusion

More information

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on How to Customize AssetCenter and ServiceCenter to Share Configuration Item (CI) Information HP OpenView IT Asset Management

More information

HP ALM Best Practices Series

HP ALM Best Practices Series HP ALM Best Practices Series For ALM Practitioners Business Process Models Best Practices Document Release Date: June 2015 Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9.

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9. HP Service Manager For the supported Windows and UNIX operating systems Software Version: 9.32 Service Desk help topics for printing Document Release Date: August 2013 Software Release Date: August 2013

More information

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

Getting started with API testing

Getting started with API testing Technical white paper Getting started with API testing Test all layers of your composite applications, not just the GUI Table of contents Executive summary... 3 Introduction... 3 Who should read this document?...

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 Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

HP Service Manager software. The HP next-generation IT Service Management solution is the industry-leading consolidated IT service desk.

HP Service Manager software. The HP next-generation IT Service Management solution is the industry-leading consolidated IT service desk. software The HP next-generation IT Service solution is the industry-leading consolidated IT service desk. : setting the standard for IT service management solutions with a robust lifecycle approach to

More information

Data Collection and Reporting Requirements - HP Resell Contract

Data Collection and Reporting Requirements - HP Resell Contract White paper Device Management: Data collection and reporting requirements HP Managed Print Specialist - Resell Table of contents Data Collection for Device Management (overview)... 2 Data Collection for

More information

SACM and CMDB Strategy and Roadmap. David Lowe ActionableITSM.com March 20, 2012

SACM and CMDB Strategy and Roadmap. David Lowe ActionableITSM.com March 20, 2012 SACM and CMDB Strategy and Roadmap David Lowe ActionableITSM.com March 20, 2012 Disclaimer The strategy and roadmap information presented here is generic by nature and based on a highly hypothetical use

More information

HP Serviceguard Cluster Configuration for HP-UX 11i or Linux Partitioned Systems April 2009

HP Serviceguard Cluster Configuration for HP-UX 11i or Linux Partitioned Systems April 2009 HP Serviceguard Cluster Configuration for HP-UX 11i or Linux Partitioned Systems April 2009 Abstract... 2 Partition Configurations... 2 Serviceguard design assumptions... 4 Hardware redundancy... 4 Cluster

More information

Table of contents. Performance testing in Agile environments. Deliver quality software in less time. Business white paper

Table of contents. Performance testing in Agile environments. Deliver quality software in less time. Business white paper Performance testing in Agile environments Deliver quality software in less time Business white paper Table of contents Executive summary... 2 Why Agile? And, why now?... 2 Incorporating performance testing

More information

The Value of Integrating Configuration Management Databases With Enterprise Architecture Tools

The Value of Integrating Configuration Management Databases With Enterprise Architecture Tools Research Publication Date: 13 January 2011 ID Number: G00210132 The Value of Integrating Configuration Management Databases With Enterprise Architecture Tools Ronni J. Colville, Patricia Adams As configuration

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 Client Manager 6.1

HP Client Manager 6.1 HP Client Manager 6.1 Introduction... 2 New Features in HPCM 6.1... 4 Understanding how HPCM works... 6 Extensive reporting capability... 7 HPCM in operation... 7 Client inventory... 7 Health monitoring...

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Operations Manager Incent Web Service Integration Gue Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

HP Identity Driven Manager Software Series Overview

HP Identity Driven Manager Software Series Overview Overview HP Identity Driven Manager (IDM), a plug-in to HP PCM+, dynamically provisions network security and performance settings based on user, device, location, time, and endpoint posture. Identity Driven

More information

A complete platform for proactive data management

A complete platform for proactive data management Brochure A complete platform for proactive data management HP Structured Data Manager Software for Oracle e-business Suite The right data management strategy The increased size and unmanaged growth of

More information

Red Hat Enterprise Linux open-source software services and support. Support solutions for an agile Linux industry-standard server environment

Red Hat Enterprise Linux open-source software services and support. Support solutions for an agile Linux industry-standard server environment Red Hat Enterprise Linux open-source software services and support Support solutions for an agile Linux industry-standard server environment Linux is on the move. Linux has emerged as a powerful, flexible

More information

Three simple steps to effective service catalog and request management

Three simple steps to effective service catalog and request management Three simple steps to effective service catalog and request management Prepare for cloud initiatives and get incremental ROI with self service catalog and request management Business white paper Executive

More information

Managing Scalability of Web services

Managing Scalability of Web services HP Asset Manager Managing Scalability of Web services Legal Notices... 2 Introduction... 3 Objective of this document... 3 Prerequisites... 3 General Approach... 4 Context... 4 Process... 4 Comments...

More information

HP Storage Virtual Volume Design and Implementation Service

HP Storage Virtual Volume Design and Implementation Service HP Storage Virtual Volume Design and Implementation Service HP Care Pack Services Technical data Proper configuration of storage hardware is crucial to help improve the effectiveness of your storage devices.

More information

Business white paper. Top ten reasons to automate your IT processes

Business white paper. Top ten reasons to automate your IT processes Business white paper Top ten reasons to automate your IT processes Table of contents 4 Data center management trends and tools 4 Today s challenge 4 What is next? 5 Automating the remediation of incidents

More information

HP Software. Services. Increase the value of IT with HP s end-to-end consulting. Brochure

HP Software. Services. Increase the value of IT with HP s end-to-end consulting. Brochure HP Software Professional Services Increase the value of IT with HP s end-to-end consulting Brochure Our IT Service Management project with HP has an 18-month payback and now has given us a better understanding

More information

BEST PRACTICES FOR MANAGING YOUR ASSETS

BEST PRACTICES FOR MANAGING YOUR ASSETS BEST PRACTICES FOR MANAGING YOUR ASSETS with HP Web Jetadmin CONTENTS Overview... 2 HP Web Jetadmin implementation practices... 2 HP Web Jetadmin use... 2 Users and permissions... 2 Hosting the application...

More information

Protect Microsoft Exchange databases, achieve long-term data retention

Protect Microsoft Exchange databases, achieve long-term data retention Technical white paper Protect Microsoft Exchange databases, achieve long-term data retention HP StoreOnce Backup systems, HP StoreOnce Catalyst, and Symantec NetBackup OpenStorage Table of contents Introduction...

More information