Contents. 2. cttctx Performance Test Utility Server Side Plug-In Index All Rights Reserved.

Size: px
Start display at page:

Download "Contents. 2. cttctx Performance Test Utility... 8. 3. Server Side Plug-In... 9. 4. Index... 11. www.faircom.com All Rights Reserved."

Transcription

1 c-treeace Load Test

2 c-treeace Load Test

3 Contents 1. Performance Test Description Login Info Create Tables Run Test Last Run Threads Total Results History cttctx Performance Test Utility Server Side Plug-In Index All Rights Reserved iii

4

5 1. Performance Test Description The c-treeace Load Test benchmark utility is a multithreaded client process that measures the performance of record inserts, reads, and deletes in a given set of c-treeace data files. c-treeace Load Test is written in C and uses the c-treeace ISAM API. This sample program displays a graphical interface with runtime configuration parameters that can be adjusted. These same parameters can also be specified in the command line version of the program called cttctx. To obtain the best results, this benchmark utility has been developed using FairCom's high performance ISAM C API. It is possible to import the tables created by this utility into a c-treeace SQL database and simultaneously, with the test running, perform standard relational queries on the live tables. With c-treeace, you truly have the Best of both worlds - simultaneous high performance record oriented I/O (provided by the ISAM API) and the ease of standard reporting/web integration (provided by the relational APIs)! Benchmark Overview This test program supports the following parameters: Table type Number of client threads to connect to the c-treeace Server Number of operations (called iterations) per thread All Rights Reserved 1

6 Performance Test Description Server operational model. Either: (1) traditional client/server operation (by clicking the Run button); or (2) a Server Side Plug-In model (by clicking the Run Bound Mode button). See the Run Test (page 4) chapter for more details. Benchmark Operation Specifics The test program s threads operate on a set of 23 c-tree data files, with 60% of the operations performed on 5 of the files and 40% on the remaining 18 files. Each data file has records that are 1,024 bytes long with an associated index consisting of a 90-byte key. The test program allows you to specify whether these records are fixed or variable length, though they will always be 1,024 bytes. Each thread executes the following unit of work: 1. Add a 1024-byte data record (and commit the transaction if the file is under transaction control). 2. Read the record by key value. 3. Delete the record (and commit the transaction if the file is under transaction control). The test program is designed to test the scalability of the c-treeace Server database engine and report specific metrics for performance analysis. The idea is that as long as additional CPU resources are available, dividing the work among additional threads should increase the amount of data able to be processed by the engine. 1.1 Login Info The user specifies the following required c-treeace Server parameters in this section: Login Name The user name. Any c-tree user can run this test application. The default user is ADMIN (the user is not case sensitive). User Password The user password. The default value for the ADMIN user is ADMIN (case sensitive). Server Name The server name as specified in the c-treeace Server configuration file (ctsrvr.cfg). The default value is FAIRCOMS. Server Host Machine The network IP address for the computer hosting the c-treeace Server. If the Server is running on the same machine as the client, use localhost for the best performance. All Rights Reserved 2

7 Performance Test Description 1.2 Create Tables The tables for this test program are automatically created each time you press the "Run" button. Set the file parameters as desired before hitting Run. There are 3 sets of options to configure: The level of transaction support Table definition regarding support for fixed or variable length records Option to import the tables automatically into a c-treesql database Transaction Support c-tree supports three levels of transaction control (also referred to in the industry as Journaling). These levels span the tradeoff between absolute data integrity to extreme performance. The choice of transaction control is application dependent, and is dictated by the application developer. TRNLOG Create - Full Transaction Processing -- When selecting TRNLOG, full transaction capability is enabled for the file. This provides two primary benefits: a. atomicity - means a set of operations may be grouped together and the updates to any files involved will all be committed or aborted together; and b. automatic recovery - transaction logs are written to disk at every commit, and in case of any failure in the system, such as power supply problems, the c-treeace Server will automatically recover the files to the latest synchronous state. This is the most secure and expensive in terms of performance because of the time required to write the transaction log to disk. PREIMG Create - PreImage Processing -- PREIMG files still provide atomicity, however they do not allow for automatic recovery. This option is faster than TRNLOG since the transaction logs are not maintained, thereby eliminating the overhead of writing the transactions to disk. However, this mode does not guarantee the automatic recovery of the data and index files to their latest synchronous state in case of a failure in the system. No Transaction Processing -- Finally, it is possible to create files without any level of transaction support (e.g., no atomicity or automatic recovery). The performance increases as compared to TRNLOG and PREIMG, however the data integrity of the system is not guaranteed. This may be appropriate for conditions where absolute data is not a requirement (e.g., for temporary files, real-time transient data, or situations where the data is otherwise recoverable). The best choice for these parameters in an actual application depends on the specific application design. Fixed vs Variable Length Records Create Fixed Length Records -- This test program allows you to create and test with either Fixed or Variable-length records. Your choice of record format will influence the performance results in concert with the transaction model selected above as fixed record support requires All Rights Reserved 3

8 Performance Test Description less overhead and is therefore faster than variable length support. Select the Create Fixed Length Records check box to use the fixed length option, otherwise variable length records are selected by default. c-treesql Database Support Add to "PerfTest" Database -- To support both fast ISAM operations as well as simultaneous relational support in a given file, all that is required is to import the file into a c-treeace SQL database. Note: There are items that must be taken into consideration regarding full support for an ISAM file at the c-treesql level, and these are clearly stated in our documentation. In the case where one intends to query or otherwise operate on the tables used in this c-treeace Load Test test program with a c-treeace SQL engine, click the Add to PerfTest Database checkbox. This will automatically import the table into the SQL database named PerfTest. Create the Tables Note the tables will automatically be created each time you select the "Run" option. Note: You will notice two different c-tree models are presented: Client/Server and Bound models. There is no difference in the actual tables created - the resulting tables are identical - however, the client server model passes the table creation statements over the network as multiple calls while the Server Side Plug-In creation sends a single call to the server where the create activity takes place as an entirely local process on the server. Refer to the Server Side Plug-In (page 9) section for more specific details concerning this model. When running the application, though, it is important to understand the differences between the models, as discussed in the Run Test (page 4) topic of this document. 1.3 Run Test In the Run Test pane you may adjust the number of threads and iterations (number of operations) for the test program. Number of Threads - This is the number of unique instances of this test program that will be simultaneously running against the c-treeace Server. Think of each thread as a user. Number of Iterations - This is the number of database operations that are being submitted to the c-treeace Server by each thread. For example, with the example above of 5 threads and 8,000 iterations, the c-treeace Server will receive a total of 40,000 (5 X 8,000) database operations. Also, note that each operation is actually two database requests (an add, then a read and a delete) so the number actually is 80,000 operations. For more information on what this test is doing see the write up at the end of the Performance Test Description (page 1) chapter. All Rights Reserved 4

9 Performance Test Description To execute the test, select from the following two choices: Run - This button will execute the test program in the traditional client/server model. This means the c-treeace Load Test will connect to the c-treeace Server using the TCP/IP communication protocol. Run as c-treeace Plugin -This button will execute the test program in a special Plug-In mode. In this mode of operation the c-treeace engine will be embedded within the c-treeace Load Test program using a special Server Side Plug-In module. This special mode of operation is very unique in the database industry and is a powerful c-treeace option for applications that require the fastest possible database throughput. For more details please proceed to the Server Side Plug-In chapter. Run Details Each thread will repeat the operations (add, read, delete records) the number of times specified in the Number of Iterations field. It is a useful exercise to monitor operating environment metrics such the CPU utilization and disk I/O capabilities to locate potential bottlenecks. When the test is not CPU bound, increasing the number of threads should increase performance. This multi-threaded capability demonstrates the scalability of c-treeace. The exact specification of any particular user system depends upon the requirements of the project and specific tables/files attributes desired. This benchmark utility enables the study of different feature sets impacting in the performance and security of the system. Feel free to experiment, sit back, and enjoy the results! 1.4 Last Run Threads This section of the c-treeace Load Test illustrates the per thread test results for the most recent test. Last Run Thread Columns Thread # - This is a unique number assigned by the test program for uniquely identifying each thread. You should see one thread (numbered 0 through the number of threads - 1) row for each thread specified in the Number of Threads field. Total Time (ms) - This is the total execution time it took for this specific thread to complete. Note this column is measured in milliseconds. Total Operations - This is the total number of operations the thread completed. This should be twice the setting specified in the Number of Iterations field as the add and delete operations are counted as one operation each. Maximum Time (ms) - This is the maximum time it took for the slowest operation to complete. All Rights Reserved 5

10 Performance Test Description Average Time (seconds) - This column is the average time (measured in seconds) for each thread to complete all its operations. TT Row - This row computes the sum for the Total Time and Total Operations columns (adding the values for all threads) and the highest value across all threads for the Maximum Time column. 1.5 Total Results History For each execution of c-treeace Load Test a number of statistics are saved for comparison and are displayed in this section. Total Results History Columns Total Operations - This is the total number of operations all threads completed. Maximum Time (ms) - This is the maximum time it took for the slowest operation to complete. Average Time (seconds) - This column is the average time (measured in seconds) for all threads to complete. Number of Threads - This is the Number of Threads this test was executed with. Number of Iterations - This is the number of iterations this test was executed with. Total Running Time (seconds) - This is the total elapsed time it took for this test to complete; measured from the time the first thread started until the last thread completed. Throughput (Op/s) - This is the Total Operations divided by the Total Running Time. Transaction Mode - This is the file mode specified in the Create Table window (either cttrnlog for the TRNLOG file mode, ctpreimg for the PREIMG file mode, or Non-transaction for the No Transaction support file mode). Record Mode - This column indicates if the files used for this test stored variable length or fixed length records. Target Machine - This column indicates if the test was executed on the same machine as the c-treeace Server or across the network. localhost means the same machine or an IP Address or Host Name will be displayed if across the network. This column provides the same information that is entered in the Server Host Machine box within the Login Info (page 2) area. Test Mode - This column indicates if the test was run in traditional client/server model (using the Run button) or in the Server Side Plug-In Mode (using the Run as c-treeace Plug-in) button. Client cttctx means client/server model and Bound ntrsh means the Server Side Plug-In Mode. Total Elapsed Time - This is a repeat of the Total Running Time column for the last test executed. Throughput - This is a repeat of the Throughput column for the last test executed. All Rights Reserved 6

11 Performance Test Description Note, it is also possible to save the Total History output to a text file. Right click on any row within the "Total Results History" pane to access the Save menu. All Rights Reserved 7

12 cttctx Performance Test Utility 2. cttctx Performance Test Utility cttctx is a multi-threaded c-tree client test for comprehensive testing of c-treeace Server operations. This utility was designed specifically for profiling c-treeace Server performance. Use this utility to simulate high load conditions against the c-treeace Server for verifying application performance. Usage cttctx <uid> <upw> <svn> [create [-t<trnmod>] <nthrds> [-c<concurrency>] [-d<dist>] [-e] [-h] [-j] [-o<op>] [-p] [-r<msec>] [-n<niter>] ] Arguments <uid> User name <upw> User password <svn> c-treeace Server name create Create new test data/index files -t<trnmod> Transaction mode to use when creating the files trnmod is one of the following t cttrnlog p ctpreimg n no tran <nthrds> Number of c-tree threads to spawn -c<concurrency> Change thread concurrency to <concurrency> -e Use the embedded c-treesql interface (otherwise use the ISAM interface) -h Hard exit, abrupt termination without thread cleanup -j Add to vlength files -o<op> Operation to apply <op> is one of the following: a Add r Read d Delete -p[1 2] track performance stats such as latency of operations. p1 tracks total elapsed time. p2 enables full profiling (elapsed time plus individual call times. This is the equivalent of a previous -p option). Output of these stats are written to a file named fnc.<pid>.<threadid>.log where PID is the cttctx process ID and THREADID is the executing thread ID. -r<msec> Number of milliseconds between performing each operation -n<niter> Number of loop iterations to perform All Rights Reserved 8

13 3. Server Side Plug-In In this section we discuss the support for the c-treeace Server Side Plug-In model of operation which is enabled in this test program by running the test using the "Run as c-treeace Plugin" button. The c-treeace Server Side Plug-In model tightly couples your application directly to the c-treeace database core. This model completely eliminates the communication layer required by a conventional client/server application. Instead, the data is passed between your application code and the c-treeace database core by using the process stack. This model can provide massive performance gains over traditional client/server based systems. All Rights Reserved 9

14 Copyright Notice Copyright FairCom Corporation. All rights reserved. No part of this publication may be stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording or otherwise without the prior written permission of FairCom Corporation. Printed in the United States of America. Information in this document is subject to change without notice. Trademarks c-treeace, c-treertg, c-treeams, c-tree Plus, c-tree, r-tree, FairCom and FairCom s circular disc logo are trademarks of FairCom, registered in the United States and other countries. The following are third-party trademarks: AMD and AMD Opteron are trademarks of Advanced Micro Devices, Inc. Macintosh, Mac, Mac OS, and Xcode are trademarks of Apple Inc., registered in the U.S. and other countries. Embarcadero, the Embarcadero Technologies logos and all other Embarcadero Technologies product or service names are trademarks, service marks, and/or registered trademarks of Embarcadero Technologies, Inc. and are protected by the laws of the United States and other countries. Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Business Objects Software Ltd. Business Objects is an SAP company. HP and HP-UX are registered trademarks of the Hewlett-Packard Company. AIX, IBM, POWER6, POWER7, and pseries are trademarks or registered trademarks of International Business Machines Corporation in the United States, other countries, or both. Intel, Intel Core, Itanium, Pentium and Xeon are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. Microsoft, the.net logo, the Windows logo, Access, Excel, SQL Server, Visual Basic, Visual C++, Visual C#, Visual Studio, Windows, Windows Server, and Windows Vista are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Novell and SUSE are registered trademarks of Novell, Inc. in the United States and other countries. Oracle and Java are registered trademarks of Oracle and/or its affiliates. QNX and Neutrino are registered trademarks of QNX Software Systems Ltd. in certain jurisdictions. CentOS, Red Hat, and the Shadow Man logo are registered trademarks of Red Hat, Inc. in the United States and other countries, used with permission. UNIX and UnixWare are registered trademarks of The Open Group in the United States and other countries. Linux is a trademark of Linus Torvalds in the United States, other countries, or both. Python and PyCon are trademarks or registered trademarks of the Python Software Foundation. OpenServer is a trademark or registered trademark of Xinuos, Inc. in the U.S.A. and other countries. Btrieve is a registered trademark of Actian Corporation. ACUCOBOL-GT, MICRO FOCUS, RM/COBOL, and Visual COBOL are trademarks or registered trademarks of Micro Focus (IP) Limited or its subsidiaries in the United Kingdom, United States and other countries. iscobol and Veryant are trademarks or registered trademarks of Veryant in the United States and other countries. All other trademarks, trade names, company names, product names, and registered trademarks are the property of their respective holders. Portions Dharma Systems, Inc. All rights reserved. This software or web site utilizes or contains material that is DUNDAS DATA VISUALIZATION, INC. and its licensors, all rights reserved. Portions Copyright Jean-loup Gailly and Mark Adler. 12/16/2015

15 4. Index C Copyright Notice x Create Tables 3 cttctx Performance Test Utility 8 L Last Run Threads 5 Login Info 2, 6 P Performance Test Description 1, 4 R Run Test 2, 4 S Server Side Plug-In 4, 9 T Total Results History 6 All Rights Reserved 11

User's Guide c-treeace Status Log Analyzer

User's Guide c-treeace Status Log Analyzer User's Guide c-treeace Status Log Analyzer User's Guide c-treeace Status Log Analyzer Contents 1. Introduction... 4 2. Startup... 5 3. Open a File... 6 4. Using Main Window... 9 4.1 Filtered Event View...

More information

User's Guide FairCom Performance Monitor

User's Guide FairCom Performance Monitor User's Guide FairCom Performance Monitor User's Guide FairCom Performance Monitor Contents 1. c-treeace Performance Monitor... 4 2. Startup... 5 3. Using Main Window... 6 4. Menus... 8 5. Icon Row... 11

More information

c-treeace Server Monitor

c-treeace Server Monitor c-treeace Server Monitor c-treeace Server Monitor Contents 1. c-treeace Monitor... 4 2. Startup... 5 3. Active Connections Tab... 6 4. System SnapShot Tab... 8 5. User SnapShot Tab... 9 6. SnapShot Favorites

More information

Copyright Notice. Information in this document is subject to change without notice.

Copyright Notice. Information in this document is subject to change without notice. Knowledgebase Knowledgebase Copyright Notice Copyright 1992-2016 FairCom Corporation. All rights reserved. No part of this publication may be stored in a retrieval system, or transmitted in any form or

More information

c-treeace V9.0 UpdateGuide

c-treeace V9.0 UpdateGuide c-treeace V9.0 UpdateGuide c-treeace V9.0 UpdateGuide Copyright 1992-2015 FairCom Corporation. All rights reserved. No part of this publication may be stored in a retrieval system, or transmitted in any

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

c-tree Server Administrator's Guide

c-tree Server Administrator's Guide c-tree Server Administrator's Guide c-tree Server Administrator's Guide Copyright Notice Copyright 1992-2016 FairCom Corporation. All rights reserved. No part of this publication may be stored in a retrieval

More information

Data Sheet VISUAL COBOL 2.2.1 WHAT S NEW? COBOL JVM. Java Application Servers. Web Tools Platform PERFORMANCE. Web Services and JSP Tutorials

Data Sheet VISUAL COBOL 2.2.1 WHAT S NEW? COBOL JVM. Java Application Servers. Web Tools Platform PERFORMANCE. Web Services and JSP Tutorials Visual COBOL is the industry leading solution for COBOL application development and deployment on Windows, Unix and Linux systems. It combines best in class development tooling within Eclipse and Visual

More information

Tutorial c-treeace Web Service Using Java

Tutorial c-treeace Web Service Using Java Tutorial c-treeace Web Service Using Java Tutorial c-treeace Web Service Using Java Copyright 1992-2012 FairCom Corporation All rights reserved. No part of this publication may be stored in a retrieval

More information

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create

More information

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service Achieving Scalability and High Availability Abstract DB2 Connect Enterprise Edition for Windows NT provides fast and robust connectivity

More information

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead An Oracle White Paper September 2013 Advanced Java Diagnostics and Monitoring Without Performance Overhead Introduction... 1 Non-Intrusive Profiling and Diagnostics... 2 JMX Console... 2 Java Flight Recorder...

More information

Oracle Cloud. What s New for Oracle Compute Cloud Service (IaaS) Topics. July 2016. What's New for Oracle Compute Cloud Service (IaaS) Release 16.

Oracle Cloud. What s New for Oracle Compute Cloud Service (IaaS) Topics. July 2016. What's New for Oracle Compute Cloud Service (IaaS) Release 16. Oracle Cloud What's New for Oracle Compute Cloud Service (IaaS) Release 16.3 E71882-05 July 2016 What s New for Oracle Compute Cloud Service (IaaS) Learn about the new and changed features of Oracle Compute

More information

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0 Delivers highly flexible, security-rich and scalable SOA access to CICS applications IBM Multiplatforms, Version 7.0 Highlights Connects WebSphere SOA Introduces real-time monitoring Foundation server

More information

c-treeace V10.0 Update Guide

c-treeace V10.0 Update Guide c-treeace V10.0 Update Guide c-treeace V10.0 Update Guide Copyright Notice Copyright 1992-2016 FairCom Corporation. All rights reserved. No part of this publication may be stored in a retrieval system,

More information

IBM Tivoli Monitoring for Databases

IBM Tivoli Monitoring for Databases Enhance the availability and performance of database servers IBM Tivoli Monitoring for Databases Highlights Integrated, intelligent database monitoring for your on demand business Preconfiguration of metric

More information

Teradata Query Scheduler. User Guide

Teradata Query Scheduler. User Guide Teradata Query Scheduler User Guide Release 14.00 B035-2512-071A November 2011 The product or products described in this book are licensed products of Teradata Corporation or its affiliates. Teradata,

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

SQL Server Setup Guide for BusinessObjects Planning

SQL Server Setup Guide for BusinessObjects Planning SQL Server Setup Guide for BusinessObjects Planning BusinessObjects Planning XI Release 2 Copyright 2007 Business Objects. All rights reserved. Business Objects owns the following U.S. patents, which may

More information

Parallels Mobile. Usage Guidelines. Copyright 1999-2009 Parallels Holdings, Ltd.

Parallels Mobile. Usage Guidelines. Copyright 1999-2009 Parallels Holdings, Ltd. Parallels Mobile Usage Guidelines Copyright 1999-2009 Parallels Holdings, Ltd. ISBN: N/A Parallels Holdings, Ltd. c/o Parallels Software, Inc. 13755 Sunrise Valley Drive Suite 600 Herndon, VA 20171 USA

More information

Performance Testing Process A Whitepaper

Performance Testing Process A Whitepaper Process A Whitepaper Copyright 2006. Technologies Pvt. Ltd. All Rights Reserved. is a registered trademark of, Inc. All other trademarks are owned by the respective owners. Proprietary Table of Contents

More information

VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5

VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5 Performance Study VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5 VMware VirtualCenter uses a database to store metadata on the state of a VMware Infrastructure environment.

More information

APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS USER EXPERIENCE MANAGEMENT SERVICE LEVEL OBJECTIVE REAL USER MONITORING SYNTHETIC USER MONITORING SERVICE TEST KEY PERFORMANCE INDICATOR PERFORMANCE

More information

Toad for Oracle 8.6 SQL Tuning

Toad for Oracle 8.6 SQL Tuning Quick User Guide for Toad for Oracle 8.6 SQL Tuning SQL Tuning Version 6.1.1 SQL Tuning definitively solves SQL bottlenecks through a unique methodology that scans code, without executing programs, to

More information

Data Transfer Tips and Techniques

Data Transfer Tips and Techniques Agenda Key: Session Number: System i Access for Windows: Data Transfer Tips and Techniques 8 Copyright IBM Corporation, 2008. All Rights Reserved. This publication may refer to products that are not currently

More information

Running a Workflow on a PowerCenter Grid

Running a Workflow on a PowerCenter Grid Running a Workflow on a PowerCenter Grid 2010-2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide SAP How-to Guide Mobile Device Management SAP Afaria How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide Applicable Releases: SAP Afaria 7 SP3 HotFix 06, SAP Afaria

More information

DOCUMENTATION MICROSOFT WINDOWS SYSTEM BACKUP AND RESTORE OPERATIONS

DOCUMENTATION MICROSOFT WINDOWS SYSTEM BACKUP AND RESTORE OPERATIONS DOCUMENTATION MICROSOFT WINDOWS SYSTEM BACKUP AND RESTORE Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication

More information

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 2/4/2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the

More information

Imaging Computing Server User Guide

Imaging Computing Server User Guide Imaging Computing Server User Guide PerkinElmer, Viscount Centre II, University of Warwick Science Park, Millburn Hill Road, Coventry, CV4 7HS T +44 (0) 24 7669 2229 F +44 (0) 24 7669 0091 E cellularimaging@perkinelmer.com

More information

System Requirements - Table of Contents

System Requirements - Table of Contents Page 1 of 12 System Requirements - Table of Contents CommNet Server CommNet Agent CommNet Browser CommNet Browser as a Stand-Alone Application CommNet Browser as a Remote Web-Based Application CommNet

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

More information

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 [1]Oracle Communications Offline Mediation Controller NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 E39478-01 June 2015 Oracle Communications Offline Mediation Controller NetFlow

More information

Novell Open Workgroup Suite

Novell Open Workgroup Suite Novell Open Workgroup Suite Small Business Edition QUICK START GUIDE September 2007 v1.5 Page 1 Introduction This Quick Start explains how to install the Novell Open Workgroup Suite software on a server.

More information

Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays. Red Hat Performance Engineering

Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays. Red Hat Performance Engineering Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays Red Hat Performance Engineering Version 1.0 August 2013 1801 Varsity Drive Raleigh NC

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

IBM Systems Director Navigator for i5/os New Web console for i5, Fast, Easy, Ready

IBM Systems Director Navigator for i5/os New Web console for i5, Fast, Easy, Ready Agenda Key: Session Number: 35CA 540195 IBM Systems Director Navigator for i5/os New Web console for i5, Fast, Easy, Ready 8 Copyright IBM Corporation, 2008. All Rights Reserved. This publication may refer

More information

Tuning U2 Databases on Windows. Nik Kesic, Lead Technical Support

Tuning U2 Databases on Windows. Nik Kesic, Lead Technical Support Tuning U2 Databases on Windows Nik Kesic, Lead Technical Support Nik Kesic s Bio Joined unidata in 1995 ATS (Advanced Technical Support), U2 Common Clients and DB tools College degree in Telecommunications

More information

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 (10.1.3.4.

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 (10.1.3.4. Oracle Business Intelligence Publisher Certification Information 10g Release 3 (10.1.3.4.2) E12692-08 September 2011 This document outlines the certified hardware and software configurations for Oracle

More information

JP1/IT Desktop Management 2 - Agent (For UNIX Systems)

JP1/IT Desktop Management 2 - Agent (For UNIX Systems) JP1 Version 11 JP1/IT Desktop Management 2 - Agent (For UNIX Systems) 3021-3-B62(E) Notices Relevant program products JP1/IT Desktop Management 2 - Additional License for Linux P-8142-7GBL JP1/IT Desktop

More information

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features An Oracle Technical White Paper June 2010 Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features Introduction... 2 Windows Paravirtual Drivers 2.0 Release... 2 Live Migration... 3 Hibernation...

More information

System Requirements - CommNet Server

System Requirements - CommNet Server System Requirements - CommNet Page 1 of 11 System Requirements - CommNet The following requirements are for the CommNet : Operating System Processors Microsoft with Service Pack 4 Microsoft Advanced with

More information

DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS

DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication

More information

FileMaker 11. ODBC and JDBC Guide

FileMaker 11. ODBC and JDBC Guide FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS

More information

1 Documentation Accessibility

1 Documentation Accessibility Oracle Database Client Quick Installation Guide 10g Release 1 (10.1.0.2.0) for Windows Part No. B13691-01 March 2004 This guide describes how to quickly install Oracle Database Client on Windows systems.

More information

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use

More information

Keeper Care System Data Manager Version 1.0

Keeper Care System Data Manager Version 1.0 Automated Inventory Solutions, Inc. User Manual Keeper Care System Data Manager Version 1.0 Automated Inventory Solutions Phone: (304)725-4801 Fax: (304)725-6983 www.aisvendors.com Email: support@aisvendors.com

More information

FairCom c-tree Server System Support Guide

FairCom c-tree Server System Support Guide FairCom c-tree Server System Support Guide Copyright 2001-2003 FairCom Corporation ALL RIGHTS RESERVED. Published by FairCom Corporation 2100 Forum Blvd., Suite C Columbia, MO 65203 USA Telephone: (573)

More information

Data Integrator Performance Optimization Guide

Data Integrator Performance Optimization Guide Data Integrator Performance Optimization Guide Data Integrator 11.7.2 for Windows and UNIX Patents Trademarks Copyright Third-party contributors Business Objects owns the following

More information

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS Oracle Application Management Suite for Oracle E-Business Suite is a robust application management solution that helps you achieve

More information

Microsoft SQL Server 2008 R2 Express Edition with Advanced Services Installation Guide

Microsoft SQL Server 2008 R2 Express Edition with Advanced Services Installation Guide Microsoft SQL Server 2008 R2 Express Edition with Advanced Services Installation Guide Notices 2010 XMPie Inc. All rights reserved. U.S. Patents 6948115, 7406194, 7548338, 7757169 and pending patents.

More information

PARALLELS SERVER BARE METAL 5.0 README

PARALLELS SERVER BARE METAL 5.0 README PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal

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 High Availability Fine Tuning - Best Practices Document Release Date: December 2013 Software Release Date:

More information

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 [1]JD Edwards EnterpriseOne Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 E61545-01 October 2015 Describes the configuration of the Application

More information

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012 HP Real User Monitor For the Windows and Linux operating systems Software Version: 9.21 Release Notes Document Release Date: November 2012 Software Release Date: November 2012 Legal Notices Warranty The

More information

-------------------------------------------------------------------- README.TXT

-------------------------------------------------------------------- README.TXT README.TXT Adaptec Storage Manager (ASM) as of September 17, 2007 Please review this file for important information about issues and erratas that were discovered after completion of the standard product

More information

System Requirements and Platform Support Guide

System Requirements and Platform Support Guide Foglight 5.6.7 System Requirements and Platform Support Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start SYSTEM REQUIREMENTS Processor Windows OS: Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core,

More information

An Oracle White Paper July 2011. Oracle Desktop Virtualization Simplified Client Access for Oracle Applications

An Oracle White Paper July 2011. Oracle Desktop Virtualization Simplified Client Access for Oracle Applications An Oracle White Paper July 2011 Oracle Desktop Virtualization Simplified Client Access for Oracle Applications Overview Oracle has the world s most comprehensive portfolio of industry-specific applications

More information

Ahsay Replication Server v5.5. Administrator s Guide. Ahsay TM Online Backup - Development Department

Ahsay Replication Server v5.5. Administrator s Guide. Ahsay TM Online Backup - Development Department Ahsay Replication Server v5.5 Administrator s Guide Ahsay TM Online Backup - Development Department October 9, 2009 Copyright Notice Ahsay Systems Corporation Limited 2008. All rights reserved. Author:

More information

Oracle CRM On Demand Connected Mobile Sales Administration Guide. Version 1.0.3 March 2012

Oracle CRM On Demand Connected Mobile Sales Administration Guide. Version 1.0.3 March 2012 Oracle CRM On Demand Connected Mobile Sales Administration Guide March 2012 Copyright 2005, 2012 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Integration of SAP Netweaver User Management with LDAP

Integration of SAP Netweaver User Management with LDAP Integration of SAP Netweaver User Management with LDAP Applies to: SAP Netweaver 7.0/7.1 Microsoft Active Directory 2003 Summary The document describes the detailed steps of configuring the integration

More information

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance An Oracle Technical White Paper March 2014 Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance Introduction... 2 Overview... 3 Oracle ZFS Storage

More information

Overview of ServerView Windows Agent This chapter explains overview of ServerView Windows Agent, and system requirements.

Overview of ServerView Windows Agent This chapter explains overview of ServerView Windows Agent, and system requirements. ServerView User s Guide (For Windows Agent) Areas Covered - Before Reading This Manual This section explains the notes for your safety and conventions used in this manual. Chapter 1 Overview of ServerView

More information

Parallels Transporter Agent

Parallels Transporter Agent Parallels Transporter Agent User's Guide Copyright 1999-2015 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland

More information

SNOW LICENSE MANAGER (7.X)... 3

SNOW LICENSE MANAGER (7.X)... 3 SYSTEM REQUIREMENTS Products Snow License Manager Software Store Option Snow Inventory Server, IDR, IDP Client for Windows Client for Linux Client for Unix Client for OS X Oracle Scanner Snow Integration

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

Standard Client Configuration Requirements

Standard Client Configuration Requirements Test Developer s Studio (TDS) Standard Client Configuration Requirements Information Technologies (IT) Content Applications Development Group (CADG) Version 1.0 February 20, 2008 Copyright 2008 by NCS

More information

New Relic & JMeter - Perfect Performance Testing

New Relic & JMeter - Perfect Performance Testing TUTORIAL New Relic & JMeter - Perfect Performance Testing by David Sale Contents Introduction 3 Demo Application 4 Hooking Into New Relic 4 What Is JMeter? 6 Installation and Usage 6 Analysis In New Relic

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties

More information

Distributing File Data with Snap Enterprise Data Replicator (Snap EDR)

Distributing File Data with Snap Enterprise Data Replicator (Snap EDR) TECHNICAL OVERVIEW Distributing File Data with Snap Enterprise Data Replicator (Snap ) Contents 1. Abstract...1 2. Introduction to Snap...1 3. Product Architecture...2 4. Distribute Data Management Tool...2

More information

Scholastic Reading Inventory Installation Guide

Scholastic Reading Inventory Installation Guide Scholastic Reading Inventory Installation Guide For use with Scholastic Reading Inventory version 2.0.1 or later and SAM version 2.0.2 or later Copyright 2011 by Scholastic Inc. All rights reserved. Published

More information

FileNet System Manager Dashboard Help

FileNet System Manager Dashboard Help FileNet System Manager Dashboard Help Release 3.5.0 June 2005 FileNet is a registered trademark of FileNet Corporation. All other products and brand names are trademarks or registered trademarks of their

More information

Enterprise Manager. Version 6.2. Installation Guide

Enterprise Manager. Version 6.2. Installation Guide Enterprise Manager Version 6.2 Installation Guide Enterprise Manager 6.2 Installation Guide Document Number 680-028-014 Revision Date Description A August 2012 Initial release to support version 6.2.1

More information

HP IMC User Behavior Auditor

HP IMC User Behavior Auditor HP IMC User Behavior Auditor Administrator Guide Abstract This guide describes the User Behavior Auditor (UBA), an add-on service module of the HP Intelligent Management Center. UBA is designed for IMC

More information

User's Guide. System Monitor - Performance Monitoring Services 5.0

User's Guide. System Monitor - Performance Monitoring Services 5.0 User's Guide System Monitor - Performance Monitoring Services 5.0 Preface System Monitor - Performance Monitoring Services (hereafter referred to as "System Monitor - Performance Monitoring Services")

More information

2 Software requirements and installation

2 Software requirements and installation Oracle Enterprise Manager for Oracle TimesTen In-Memory Database Release Notes Release 12.1.0.3.0 E58956-03 October 2015 This document provides late-breaking information and information that is not yet

More information

JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra

JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra January 2014 Legal Notices Apache Cassandra, Spark and Solr and their respective logos are trademarks or registered trademarks

More information

SUN ORACLE DATABASE MACHINE

SUN ORACLE DATABASE MACHINE SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 2 to 8 database servers From 3 to 14 Sun Oracle Exadata Storage Servers Up to 5.3 TB of Exadata QDR (40 Gb/second) InfiniBand Switches Uncompressed

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft

More information

Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide

Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide Notices 2011 XMPie Inc. All rights reserved. U.S. Patents 6948115, 7406194, 7548338, 7757169 and pending patents. JP Patent 4406364B

More information

Dell Fabric Manager Installation Guide 1.0.0

Dell Fabric Manager Installation Guide 1.0.0 Dell Fabric Manager Installation Guide 1.0.0 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

PROGRESS DATADIRECT QA AND PERFORMANCE TESTING EXTENSIVE TESTING ENSURES DATA CONNECTIVITY THAT WORKS

PROGRESS DATADIRECT QA AND PERFORMANCE TESTING EXTENSIVE TESTING ENSURES DATA CONNECTIVITY THAT WORKS Progress DataDirect Connect DATA SHEET PROGRESS DATADIRECT QA AND PERFORMANCE TESTING EXTENSIVE TESTING ENSURES DATA CONNECTIVITY THAT WORKS Progress DataDirect ODBC, JDBC and ADO.NET data connectivity

More information

VMware/Hyper-V Backup Plug-in User Guide

VMware/Hyper-V Backup Plug-in User Guide VMware/Hyper-V Backup Plug-in User Guide COPYRIGHT No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying,

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Apache Tomcat Release 12.1.0.1.0 E28545-04 February 2014 This document provides installation instructions and configuration information

More information

Plesk 8.3 for Linux/Unix System Monitoring Module Administrator's Guide

Plesk 8.3 for Linux/Unix System Monitoring Module Administrator's Guide Plesk 8.3 for Linux/Unix System Monitoring Module Administrator's Guide Revision 1.0 Copyright Notice ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 600 Herndon VA 20171 USA Phone: +1 (703) 815 5670

More information

Operating Instructions Software (Fax Driver)

Operating Instructions Software (Fax Driver) Operating Instructions Software (Fax Driver) For Digital Imaging Systems Sending Document System Configuration General Description System Requirements Before using this software, please carefully read

More information

Replicating File Data with Snap Enterprise Data Replicator (Snap EDR)

Replicating File Data with Snap Enterprise Data Replicator (Snap EDR) TECHNICAL OVERVIEW Replicating File Data with Snap Enterprise Data Replicator (Snap ) 1. Abstract...1 2. Introduction to Snap...1 3. Product Architecture...1 4. Replicate Data Management Tool...2 4.1.

More information

1 Changes in this release

1 Changes in this release Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS Secure Bytes, October 2011 This document is confidential and for the use of a Secure Bytes client only. The information contained herein is the property of Secure Bytes and may

More information

Deploying Microsoft Clusters in Parallels Virtuozzo-Based Systems

Deploying Microsoft Clusters in Parallels Virtuozzo-Based Systems Parallels Deploying Microsoft Clusters in Parallels Virtuozzo-Based Systems Copyright 1999-2008 Parallels, Inc. ISBN: N/A Parallels Holdings, Ltd. c/o Parallels Software, Inc. 13755 Sunrise Valley Drive

More information

Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide. Citrix Access Gateway 8.1, Enterprise Edition

Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide. Citrix Access Gateway 8.1, Enterprise Edition Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide Citrix Access Gateway 8.1, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows Server 2003, Windows Server 2008 5.1 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Job Management Partner 1/Performance Management - Remote Monitor for Virtual Machine Description, User's Guide and Reference

Job Management Partner 1/Performance Management - Remote Monitor for Virtual Machine Description, User's Guide and Reference Job Management Partner 1 Version 10 Job Management Partner 1/Performance Management - Remote Monitor for Virtual Machine Description, User's Guide and Reference 3021-3-353(E) Relevant program products

More information

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager for Citrix Presentation Server Citrix Presentation Server 4.5 for Windows Citrix Access

More information

System Requirements Table of contents

System Requirements Table of contents Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5

More information