Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides

Size: px
Start display at page:

Download "Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides"

Transcription

1 HP OO Community Guides Monitoring HP OO 10 This document describes the specifications of components we want to monitor, and the means to monitor them, in order to achieve effective monitoring of HP Operations Orchestration 10.0x. Overview This document includes components to monitor, technical monitoring options, and some demonstrations of usage of monitoring tools. It is focused on monitoring Central and RAS through all the relevant layers. This includes using OO REST API calls to monitor the application level, monitoring the JVM performance and monitoring the infrastructure level components such as DB, Services, CPU, memory, etc. HP Operations Orchestration HP Operations Orchestration (HP OO) is a next generation IT Process Automation solution that is designed from the ground up to increase automation adoption whether in a traditional data center or hybrid cloud environment. OO 10 Community This guide is created for the OO community. To get started with HP OO 10 check out our community onboarding kit that contains three persona-based learning tracks for administrators, flow authors, and end users. Each track provides knowledge assets of the following types: Videos Tutorials Quick Guides Presentations This document does not contain recommended thresholds, tuning and sizing guidelines. Available Tools In order to ease the process of building a monitoring infrastructure for OO, you can utilize the following tools. Java Melody: Java Melody is implemented in the OO web application. HP SiteScope (SiS): We chose to demo some of the monitors utilizing HP SiteScope as the monitoring application. HP OO Flows and Operations: Our base content pack contains several operations which can be easily used in order to build your own health check flows. For example: JVM Low Memory Check JVM Memory Usage Statistics Http Client Get LDAP Search Service Status Some of these tools such as Java Melody, SiteScope generic monitors and OO flows, are available Out-Of-The-Box.

2 Monitoring Layers The figure above illustrates relevant monitors and available tools for monitoring Central and RAS. Central OO Application Layer: In this layer we can use the OO REST API, as well as logs in order to get feedback in the functional level. Java Application Server and JVM Layer: In this layer we can monitor the JVM using JMX, logs and OO operations. We can also get valuable information regarding the Java Application status and performance using Java Melody (See Appendix 2). Infrastructure Layer: Includes OS, services, database, etc. This layer can be monitored via standard monitoring as well as using Out-Of-The-Box OO Flows. RAS RAS is a java based application; it is not an application server (thus it cannot contain Java Melody). And as a remote agent it is of course much thinner then Central. When monitoring RAS, we should focus on its connectivity to Central, and on the JVM and OS related metrics. The next sections describe the detailed monitoring for each layer in a top-bottom fashion.

3 OO Application Layer Application layer monitoring data resides in the database and logs. It can be retrieved by using the following: REST API Logs Central REST API Metric REST Syntax Remarks RAS Servers Status Get /workers Example JSON result: [{ "uuid":"16fcc0d1-17e2-48d6-8d60-4abcf4fd3571", "installpath":"c:/program Files/Hewlett-Packard/HP Operations Orchestration/central", "os":"windows Server 2008 R2", "jvm":"1.7.0_40", "description":"16fcc0d1-17e2-48d6-8d60-4abcf4fd3571", "dotnetversion":"4.x", "hostname":"myhost.mydomain.corp", "groups":[ "RAS_Operator_Path" ], "status":"running", "active":true LDAP Communication Status }] Request: POST/authns/ldap-config/{id}/test Description: Test an existing LDAP configuration. Request: POST/authns/ldap-config/test Description: Test an ad hoc LDAP configuration. The body of this request must contain a JSON object with the search details. Example: {"type":"open_dj", "domain":"catlab", "addresses":[{"host":"myhost.mydomain.corp","port":389}], "securedchannel":false, "enabled":true, "privilegeduser":"cn=ooadmin,ou=services,dc=catlab,dc=corp", "privilegeduserpassword":"********", "groupsdns":["ou=oo,ou=applications,dc=catlab,dc=corp"], "groupssearchrecursive":true, "groupsfilter":"(&(objectclass=groupofnames)(member={0}))", "groupnameattribute":"cn", "usersfilter":"(&(uid={0})( (objectclass=inetorgperson)(objectclass=organizationalperson) (objectclass=person)))", "usersdns":["ou=users,dc=catlab,dc=corp"], "userssearchrecursive":true, "usercommonnameattribute":"cn", "user attribute":null, "groupmembershipattribute":null, "username":"admin", "userpassword":"admin", "customgroupsattributesnames":null} Several REST options (any operations which perform an LDAP search) can be used for this purpose. This specific example tests the LDAP configuration and returns the attributes of the user you have tested with (The same as clicking the test button in the UI). Utilizing the REST API has the advantage of an end-to-end check from the OO application to the LDAP Server. Central Logs Metric Log Remarks\Examples Failed Executions Execution.log :11:00,713 [WorkerExecutionThread-2_ ] (ExecutionServiceImpl.java:498) ERROR - Error occurred during operation execution. Execution id:

4 com.hp.oo.internal.sdk.execution.flowexecutionexception: Failed to execute content action: com.hp.oo:oo-base-legacy-plugin: snapshot -> com.iconclude.content.actions.cmd.ping.localping In general it is recommended to capture ERROR and FATAL statements in the log file. Java Application Server and Java Virtual Machine Layer Application Server level monitoring can be done by using the following tools: For Central Servers JMX (for the JVM - in case you can/will not use JMX, please view Appendix 1) Java Melody (please view Appendix 2) OO Operations OO Logs For RAS Servers JMX (for the JVM - in case you can/will not use JMX, please view Appendix 1) OO Operations RAS Log The quickest way to achieve Java Application Monitoring will be to use the Out-Of-The-Box Site Scope JMX monitor for both Central and RAS. Using JMX In the following screenshot, you can see an Out-of-the-Box SiS JMX performance monitor, showing data of an OO 10.0x standalone RAS. The following table describes the java metrics: Counter java.lang/garbagecollector/ps MarkSweep/CollectionCount java.lang/garbagecollector/ps MarkSweep/CollectionTime java.lang/garbagecollector/ps Scavenge/CollectionCount java.lang/garbagecollector/ps Scavenge/CollectionTime Description Number of Major garbage collection since the start of the JVM and the cumulative CPU time these GC took Indicates the amount of minor garbage collections - meaning garbage collection from the young/eden and survivor spaces in the heap Cumulative amount of CPU time minor garbage collection

5 Counter java.lang/garbagecollector/ps Scavenge/LastGcInfo/duration java.lang/garbagecollector/ps MarkSweep/LastGcInfo/duration java.lang/memory/heapmemoryusage/used java.lang/memory/nonheapmemoryusage/used java.lang/threading/threadcount OO/WorkerManagerMBean/workerManagerMBean/InBufferSize OO/WorkerManagerMBean/workerManagerMBean/OutBufferSize Description Duration of the last minor GC Duration of the last major GC, long periods of time may indicate a memory problem Amount of memory used, if the amount of memory used is close to the maximum available memory to the heap this can indicate excessive memory usage PERM memory, used mainly to store loaded classes Amount of threads in the JVM Current size of the inbuffer which holds the steps the worker is supposed to run Current size of the outbuffer, which holds the steps that need to be persisted to the DB. Note JMX offers 2 optional methods for authentication and authorization against the JMX server: 1. Using text files, where the password is not encrypted. The files are protected using standard file system security. 2. Using LDAP. In order to secure JMX, it is highly recommended to configure it with LDAP Authentication and enable SSL. Using the OO operations There are 2 very useful OO operations for the JVM health: JVM Low Memory Check: This operation retrieves the JVM memory pool info, including the maximum memory, used memory, memory pools, and returns a response if there is a low memory issue or memory is within thresholds. JVM Memory Usage Statistics: A detailed description of these operations is available in the operation s description tab. OO Logs The OO Log files are located under <OO installation Folder>\central\var\logs and it is recommended to monitor for ERROR and FATAL events. The following log files are available for Central (while only the wrapper and execution logs are available for RAS): Metric Log Remarks Failed HTTP requests to Central Access The access log contains every request sent to the OO by HTTP/HTTPS the server Log JVM and wrapper issues Wrapper.log The wrapper log contains messages such as startup/shutdown of the server, memory issues in the server etc. Execution errors Execution.log All logged messages General.log Infrastructure Layer OS It is advised to use standard OS monitoring:

6 CPU Utilization Disk Space Memory Usage Services HP Operations Orchestration Central service status HP Operations Orchestration RAS service status Both OS and Services can be monitored in several ways: SiS Monitors. OO flows, utilizing the following operations: Get CPU Usage. Get Available Memory in Megabytes Service Status Windows File System, Network, Memory diagnostics and system health check OOB flows. Any standard monitoring tool. DB The OO application rolls data in tables and the growth should be relatively consistent. We recommend checking the DB size growth consistency. A good threshold will be an alert if the DB size is doubled over the last day. In addition, we advise to use standard DB monitoring: Available free space for the OO schema DB size Database error logs Swap file usage HA (In case you use High availability ) Monitor backup validity Note: Indications regarding the DB performance are also available via Java Melody. DB monitoring recommendations and monitoring relevant SQL commands and tools are vendor specific. Please also consult your DBA regarding the server s CPU, system IOPS ( I/O per Second), memory usage, DB connections, open DB files, temp usage and more. SiS has Out-Of-The-Box monitors for Oracle and SQL Server. For other Databases you can use the custom DB monitor or other solutions. LDAP Verify that there is access from the Central Server to the relevant LDAP (Default ports are 389 for simple bind, 636 for LDAP over SSL). Verify that the OO application User logins successfully to the LDAP server. Note: This can also be done in the application layer. And that s the end of guide. If you have any questions then please post them on the OO community forums:

7 Appendix 1: Logging the JVM Memory Usage Information Some organizations chose not to enable the JMX debug console for Java based applications due to e.g. security concerns. In this case you can log Java memory usage data by turning on several java-logging options in the Java Additional Parameters section of the ras-wrapper.conf file. The following example outputs garbage collection information to a separated log: wrapper.java.additional.22="-xloggc:%ras_home%/var/logs/jvm.log" wrapper.java.additional.23="-xx:-usegclogfilerotation" wrapper.java.additional.25="-xx:gclogfilesize=10240k" These settings will produce the following information: [GC K->17428K(494976K), secs] The above line indicates: [GC/Full GC <amount of memory in young/old generation before the GC> -> <amount of memory in young/old generation after the GC>(Committed size of the heap in Kb), <duration of the GC in seconds>] This data can indicate memory issues if we see the following: Similar or close Amount of memory before and after a Full GC can indicate insufficient heap or a memory leak over time Long periods of garbage collections (more than a few seconds) can indicate insufficient memory or a memory leak and can also indicate and over loaded system There many online resources that can provide addition information and suggestions for logging JVM metrics to a file.

8 Appendix 2: Using Java Melody Java Melody is a Java Application Server monitoring tool which is implemented in the OO Central Application. Java Melody displays statistics regarding memory usage, CPU usage, http sessions and the database. To access the JavaMelody statistics, please go to: Metric Details Remarks Used Memory Memory utilization metrics % CPU CPU Usage. Active jdbc Currently working JDBC Provides metrics regarding DB connections. connections connections Used jdbc Currently opened JDBC Provides information regarding DB connections pooling connections connections http hits per Amount of http requests to Provides information regarding web server load. minute the server per minute HTTP Mean Times Sql hits per minute SQL Mean Times Average times for the HTTP requests sent to the server (note that these requests can be drilled down to in statistics http section Provides information regarding DB server load. Average times for the SQL requests generated by the server Amount of SQL requests generated by the server Java Melody has a REST API, in case you want to query it with your own monitoring tool. The results can be returned in JSON or XML format. The API documentation is available here:

HP OO 10.X - SiteScope Monitoring Templates

HP OO 10.X - SiteScope Monitoring Templates HP OO Community Guides HP OO 10.X - SiteScope Monitoring Templates As with any application continuous automated monitoring is key. Monitoring is important in order to quickly identify potential issues,

More information

CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS

CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS Java EE Components Java EE Vendor Specifications Containers Java EE Blueprint Services JDBC Data Sources Java Naming and Directory Interface Java Message

More information

Oracle WebLogic Server 11g Administration

Oracle WebLogic Server 11g Administration Oracle WebLogic Server 11g Administration This course is designed to provide instruction and hands-on practice in installing and configuring Oracle WebLogic Server 11g. These tasks include starting and

More information

WebSphere Server Administration Course

WebSphere Server Administration Course WebSphere Server Administration Course Chapter 1. Java EE and WebSphere Overview Goals of Enterprise Applications What is Java? What is Java EE? The Java EE Specifications Role of Application Server What

More information

IBM WebSphere Server Administration

IBM WebSphere Server Administration IBM WebSphere Server Administration This course teaches the administration and deployment of web applications in the IBM WebSphere Application Server. Duration 24 hours Course Objectives Upon completion

More information

WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE

WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE Contents 1. Pattern Overview... 3 Features 3 Getting started with the Web Application Pattern... 3 Accepting the Web Application Pattern license agreement...

More information

How to Set Up Disaster Recovery for HP OO

How to Set Up Disaster Recovery for HP OO HP OO 10 OnBoarding Kit Community Assistance Team How to Set Up Disaster Recovery for HP OO Various global and sector-specific regulations, as well as standards such as COBIT DS4, ISO 2031 and others,

More information

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc.

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc. Tuning WebSphere Application Server ND 7.0 Royal Cyber Inc. JVM related problems Application server stops responding Server crash Hung process Out of memory condition Performance degradation Check if the

More information

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER Andrew Bennett, TEAM Informatics, Inc. Why We Monitor During any software implementation there comes a time where a question is raised

More information

A technical guide for monitoring Adobe LiveCycle ES deployments

A technical guide for monitoring Adobe LiveCycle ES deployments Technical Guide A technical guide for monitoring Adobe LiveCycle ES deployments Table of contents 1 Section 1: LiveCycle ES system monitoring 4 Section 2: Internal LiveCycle ES monitoring 5 Section 3:

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Holistic Performance Analysis of J2EE Applications

Holistic Performance Analysis of J2EE Applications Holistic Performance Analysis of J2EE Applications By Madhu Tanikella In order to identify and resolve performance problems of enterprise Java Applications and reduce the time-to-market, performance analysis

More information

Integrated Billing Solutions with HP CSA 4.00

Integrated Billing Solutions with HP CSA 4.00 Technical white paper Integrated Billing Solutions with HP CSA 4.00 Table of Contents Introduction... 2 Part 1. HP CSA Concepts... 2 Part 2. Billable Service Conditions... 4 Part 3. Billable Intervals...

More information

Tool - 1: Health Center

Tool - 1: Health Center Tool - 1: Health Center Joseph Amrith Raj http://facebook.com/webspherelibrary 2 Tool - 1: Health Center Table of Contents WebSphere Application Server Troubleshooting... Error! Bookmark not defined. About

More information

Windows Server 2012 Server Manager

Windows Server 2012 Server Manager Windows Server 2012 Server Manager Introduction: Prior to release of Server Manager in Windows Server 2008, Enterprise solution was to use different third party vendors which includes CA, HP utilities

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.7 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5 Course Page - Page 1 of 5 WebSphere Application Server 7.0 Administration on Windows BSP-1700 Length: 5 days Price: $ 2,895.00 Course Description This course teaches the basics of the administration and

More information

WEBLOGIC ADMINISTRATION

WEBLOGIC ADMINISTRATION WEBLOGIC ADMINISTRATION Session 1: Introduction Oracle Weblogic Server Components Java SDK and Java Enterprise Edition Application Servers & Web Servers Documentation Session 2: Installation System Configuration

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.0.3 This document supports the version of each product listed and supports all subsequent versions until the document

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

1 Download & Installation... 4. 1 Usernames and... Passwords

1 Download & Installation... 4. 1 Usernames and... Passwords Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III EventSentry Setup 4 1 Download & Installation... 4 Part IV Configuration 4 1 Usernames and... Passwords 5 2 Network...

More information

MONITORING PERFORMANCE IN WINDOWS 7

MONITORING PERFORMANCE IN WINDOWS 7 MONITORING PERFORMANCE IN WINDOWS 7 Performance Monitor In this demo we will take a look at how we can use the Performance Monitor to capture information about our machine performance. We can access Performance

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

Semantic based Web Application Firewall (SWAF V 1.6) Operations and User Manual. Document Version 1.0

Semantic based Web Application Firewall (SWAF V 1.6) Operations and User Manual. Document Version 1.0 Semantic based Web Application Firewall (SWAF V 1.6) Operations and User Manual Document Version 1.0 Table of Contents 1 SWAF... 4 1.1 SWAF Features... 4 2 Operations and User Manual... 7 2.1 SWAF Administrator

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

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

J2EE-JAVA SYSTEM MONITORING (Wily introscope)

J2EE-JAVA SYSTEM MONITORING (Wily introscope) J2EE-JAVA SYSTEM MONITORING (Wily introscope) Purpose: To describe a procedure for java system monitoring through SAP certified third party tool Wily introscope. Scope: (Assumption) This procedure is applicable

More information

Using LDAP Authentication in a PowerCenter Domain

Using LDAP Authentication in a PowerCenter Domain Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,

More information

How To Improve Performance On An Asa 9.4 Web Application Server (For Advanced Users)

How To Improve Performance On An Asa 9.4 Web Application Server (For Advanced Users) Paper SAS315-2014 SAS 9.4 Web Application Performance: Monitoring, Tuning, Scaling, and Troubleshooting Rob Sioss, SAS Institute Inc., Cary, NC ABSTRACT SAS 9.4 introduces several new software products

More information

SQL Tuning and Maintenance for the Altiris Deployment Server express database.

SQL Tuning and Maintenance for the Altiris Deployment Server express database. Article ID: 22953 SQL Tuning and Maintenance for the Altiris Deployment Server express database. Question Now Deployment Server is installed how do I manage the express database? Topics that will be covered

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

User Guide for VMware Adapter for SAP LVM VERSION 1.2

User Guide for VMware Adapter for SAP LVM VERSION 1.2 User Guide for VMware Adapter for SAP LVM VERSION 1.2 Table of Contents Introduction to VMware Adapter for SAP LVM... 3 Product Description... 3 Executive Summary... 3 Target Audience... 3 Prerequisites...

More information

Big Data Operations Guide for Cloudera Manager v5.x Hadoop

Big Data Operations Guide for Cloudera Manager v5.x Hadoop Big Data Operations Guide for Cloudera Manager v5.x Hadoop Logging into the Enterprise Cloudera Manager 1. On the server where you have installed 'Cloudera Manager', make sure that the server is running,

More information

Tuning Your GlassFish Performance Tips. Deep Singh Enterprise Java Performance Team Sun Microsystems, Inc.

Tuning Your GlassFish Performance Tips. Deep Singh Enterprise Java Performance Team Sun Microsystems, Inc. Tuning Your GlassFish Performance Tips Deep Singh Enterprise Java Performance Team Sun Microsystems, Inc. 1 Presentation Goal Learn tips and techniques on how to improve performance of GlassFish Application

More information

VMware vrealize Operations. Management Pack for. PostgreSQL

VMware vrealize Operations. Management Pack for. PostgreSQL VMware for PostgreSQL How Blue Medora Complements vrealize VMware provides best-ofbreed management for Virtualization / Cloud vsphere via vrealize Operations How Blue Medora Complements vrealize Applications

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

InspecTView Highlights

InspecTView Highlights InspecTView auditing software acts like a security camera on your servers. It provides bulletproof video evidence of user sessions, significantly shortening investigation time. Every action performed by

More information

SQL diagnostic manager Management Pack for Microsoft System Center. Overview

SQL diagnostic manager Management Pack for Microsoft System Center. Overview Overview What is so cool about the SQL diagnostic manager Management Pack? The SQL diagnostic manager (SQLdm) Management Pack integrates key monitors and alerts used by SQL Server DBAs with Microsoft's

More information

Avalanche Site Edition

Avalanche Site Edition Avalanche Site Edition Version 4.8 avse ug 48 20090325 Revised 03/20/2009 ii Copyright 2008 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite 335 Midvale,

More information

Justin Bruns, Performance Test Lead, Fireman's Fund Insurance Robert May, Enterprise Software Tools Administrator Fireman's Fund Insurance

Justin Bruns, Performance Test Lead, Fireman's Fund Insurance Robert May, Enterprise Software Tools Administrator Fireman's Fund Insurance Justin Bruns, Performance Test Lead, Fireman's Fund Insurance Robert May, Enterprise Software Tools Administrator Fireman's Fund Insurance Copyright 2012 Hewlett-Packard Development Company, L.P. The information

More information

XpoLog Center Suite Log Management & Analysis platform

XpoLog Center Suite Log Management & Analysis platform XpoLog Center Suite Log Management & Analysis platform Summary: 1. End to End data management collects and indexes data in any format from any machine / device in the environment. 2. Logs Monitoring -

More information

5nine Cloud Monitor for Hyper-V

5nine Cloud Monitor for Hyper-V 5nine Cloud Monitor for Hyper-V Getting Started Guide Table of Contents System Requirements... 2 Installation... 3 Getting Started... 8 Settings... 9 Authentication... 9 5nine Cloud Monitor for Hyper-V

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

HP SiteScope software

HP SiteScope software HP SiteScope software When you can see availability and performance, you can improve it. Improve the availability and performance of your IT environment HP SiteScope software helps you to agentlessly monitor

More information

Sample. WebCenter Sites. Go-Live Checklist

Sample. WebCenter Sites. Go-Live Checklist Sample WebCenter Sites Go-Live Checklist Go-Live Checklist The Check-list given here is only indicative. You must consult your infrastructure & development team to develop a full check-list. 1 Ensure that

More information

No.1 IT Online training institute from Hyderabad Email: info@sriramtechnologies.com URL: sriramtechnologies.com

No.1 IT Online training institute from Hyderabad Email: info@sriramtechnologies.com URL: sriramtechnologies.com I. Basics 1. What is Application Server 2. The need for an Application Server 3. Java Application Solution Architecture 4. 3-tier architecture 5. Various commercial products in 3-tiers 6. The logic behind

More information

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS

More information

Aradial Installation Guide

Aradial Installation Guide Aradial Technologies Ltd. Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document

More information

HP Operations Orchestration Software

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

More information

Client Overview. Engagement Situation

Client Overview. Engagement Situation Client Overview Our client is a provider of Operational Analytics and Visualization solutions for cloud/datacenters that enables IT function of an organization to monitor, and plan complex cloud and data

More information

Robert Honeyman http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk

Robert Honeyman http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk An Introduction to WebLogic Administration Robert Honeyman http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk WEBLOGIC 11G : WHAT IS IT? Weblogic 10.3.3-10.3.6 = 11g Java EE 5 compliant Application

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Michelle Pregler Ball Emerging Markets Account Executive Shahrukh Niazi Sr.System Consultant Java Solutions Quest Background Agenda

More information

WebLogic Server Admin

WebLogic Server Admin Course Duration: 1 Month Working days excluding weekends Overview of Architectures Installation and Configuration Creation and working using Domain Weblogic Server Directory Structure Managing and Monitoring

More information

Introduction to Source Control Management in OO 10

Introduction to Source Control Management in OO 10 HP OO 10 OnBoarding Kit Community Assistance Team Introduction to Source Control Management in OO 10 HP Operations Orchestration 10 comes with an enhanced development model which is completely aligned

More information

Blackboard Learn TM, Release 9 Technology Architecture. John Fontaine

Blackboard Learn TM, Release 9 Technology Architecture. John Fontaine Blackboard Learn TM, Release 9 Technology Architecture John Fontaine Overview Background Blackboard Learn Deployment Model and Architecture Setup and Installation Common Administrative Tasks Tuning Integrating

More information

Sample HP OO Web Application

Sample HP OO Web Application HP OO 10 OnBoarding Kit Community Assitstance Team Sample HP OO Web Application HP OO 10.x Central s rich API enables easy integration of the different parts of HP OO Central into custom web applications.

More information

ITG Software Engineering

ITG Software Engineering IBM WebSphere Administration 8.5 Course ID: Page 1 Last Updated 12/15/2014 WebSphere Administration 8.5 Course Overview: This 5 Day course will cover the administration and configuration of WebSphere 8.5.

More information

Central Administration QuickStart Guide

Central Administration QuickStart Guide Central Administration QuickStart Guide Contents 1. Overview... 2 Licensing... 2 Documentation... 2 2. Configuring Central Administration... 3 3. Using the Central Administration web console... 4 Managing

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Symantec Endpoint Protection Shared Insight Cache User Guide

Symantec Endpoint Protection Shared Insight Cache User Guide Symantec Endpoint Protection Shared Insight Cache User Guide Symantec Endpoint Protection Shared Insight Cache User Guide The software described in this book is furnished under a license agreement and

More information

Monitor Solution Best Practice v3.2 part of Symantec Server Management Suite

Monitor Solution Best Practice v3.2 part of Symantec Server Management Suite Summary When implementing Monitoring and Alerting part of Server Management suite. The following items are areas that should be reviewed. It is important to start to monitor what you need and add/build

More information

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide Spectrum Technology Platform Version 9.0 Spectrum Spatial Administration Guide Contents Chapter 1: Introduction...7 Welcome and Overview...8 Chapter 2: Configuring Your System...9 Changing the Default

More information

Application Performance in the Cloud

Application Performance in the Cloud Application Performance in the Cloud Understanding and ensuring application performance in highly elastic environments Albert Mavashev, CTO Nastel Technologies, Inc. amavashev@nastel.com What is Cloud?

More information

JBoss AS Administration Console User Guide. by Shelly McGowan and Ian Springer

JBoss AS Administration Console User Guide. by Shelly McGowan and Ian Springer JBoss AS Administration Console User Guide 1 by Shelly McGowan and Ian Springer Preface... v 1. We Need Feedback!... v 1. Overview... 1 2. Accessing the Console... 3 3. User Interface Overview... 5 4.

More information

Performance Best Practices Guide for SAP NetWeaver Portal 7.3

Performance Best Practices Guide for SAP NetWeaver Portal 7.3 SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights

More information

Monitoring Remedy with BMC Solutions

Monitoring Remedy with BMC Solutions Monitoring Remedy with BMC Solutions Overview How does BMC Software monitor Remedy with our own solutions? The challenge is many fold with a solution like Remedy and this does not only apply to Remedy,

More information

Edit system files. Delete file. ObserveIT Highlights. Change OS settings. Change password. See exactly what users are doing!

Edit system files. Delete file. ObserveIT Highlights. Change OS settings. Change password. See exactly what users are doing! ObserveIT auditing software acts like a security camera on your servers. It provides bulletproof video evidence of user sessions, significantly shortening investigation time. Every action performed by

More information

CLOUD CRUISER FOR WINDOWS AZURE PACK

CLOUD CRUISER FOR WINDOWS AZURE PACK CLOUD CRUISER FOR WINDOWS AZURE PACK frequently asked questions 2013 Cloud Cruiser www.cloudcruiser.com OCTOBER 2013 PRODUCT FEATURES What is included with Cloud Cruiser Express? Cloud Cruiser Express

More information

HP Diagnostics. Java Agent Guide. For the Windows, Solaris and Linux operating systems. Software Version: 9.23. Document Release Date: May 2014

HP Diagnostics. Java Agent Guide. For the Windows, Solaris and Linux operating systems. Software Version: 9.23. Document Release Date: May 2014 HP Diagnostics For the Windows, Solaris and Linux operating systems Software Version: 9.23 Java Agent Guide Document Release Date: May 2014 Software Release Date: May 2014 Legal Notices Warranty The only

More information

HP Device Manager 4.7

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

More information

Hands-on Lab Exercise Guide

Hands-on Lab Exercise Guide 614: Monitoring Your Entire Citrix Environment with Microsoft System Center Operations Manager and Comtrade Hands-on Lab Exercise Guide Comtrade: John Lee Bogdan Viher Citrix: Evin Safdia May 2015 1 Table

More information

Configuring ActiveVOS Identity Service Using LDAP

Configuring ActiveVOS Identity Service Using LDAP Configuring ActiveVOS Identity Service Using LDAP Overview The ActiveVOS Identity Service can be set up to use LDAP based authentication and authorization. With this type of identity service, users and

More information

Monitoring Agent for Citrix Virtual Desktop Infrastructure Version 8.1.3. Reference IBM

Monitoring Agent for Citrix Virtual Desktop Infrastructure Version 8.1.3. Reference IBM Monitoring Agent for Citrix Virtual Desktop Infrastructure Version 8.1.3 Reference IBM Monitoring Agent for Citrix Virtual Desktop Infrastructure Version 8.1.3 Reference IBM Note Before using this information

More information

Basic TCP/IP networking knowledge of client/server concepts Basic Linux commands and desktop navigation (if don't know we will cover it )

Basic TCP/IP networking knowledge of client/server concepts Basic Linux commands and desktop navigation (if don't know we will cover it ) About Oracle WebLogic Server Oracle WebLogic Server is the industry's best application server for building and deploying enterprise Java EE applications with support for new features for lowering cost

More information

Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director

Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director Graeme Gordon Senior Systems Engineer, VMware 2013 VMware Inc. All rights reserved Traditional IT Application

More information

How To Monitor A Server With Zabbix

How To Monitor A Server With Zabbix & JavaEE Platform Monitoring A Good Match? Company Facts Jesta Digital is a leading global provider of next generation entertainment content and services for the digital consumer. subsidiary of Jesta Group,

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

HP LeftHand SAN Solutions

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

More information

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any

More information

iway iway Business Activity Monitor User's Guide Version 6.0.2 Service Manager (SM) DN3501982.1209

iway iway Business Activity Monitor User's Guide Version 6.0.2 Service Manager (SM) DN3501982.1209 iway iway Business Activity Monitor User's Guide Version 6.0.2 Service Manager (SM) DN3501982.1209 Cactus, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software,

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Glassfish Architecture.

Glassfish Architecture. Glassfish Architecture. First part Introduction. Over time, GlassFish has evolved into a server platform that is much more than the reference implementation of the Java EE specifcations. It is now a highly

More information

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11 Oracle Primavera Contract Management 14.1 Sizing Guide July 2014 Contents Introduction... 5 Contract Management Database Server... 5 Requirements of the Contract Management Web and Application Servers...

More information

SQL Server. SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases

SQL Server. SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases SQL Server SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases SQL Server 100 Success Secrets Copyright 2008 Notice of rights All

More information

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Oracle vs. SQL Server Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Agenda Discussions on the various advantages and disadvantages of one platform vs. the other For each topic,

More information

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as

More information

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming Email Setup Guide 1. Entourage 2008 Page 2 2. ios / iphone Page 5 3. Outlook 2013 Page 10 4. Outlook 2007 Page 17 5. Windows Live Mail a. New Account Setup Page 21 b. Change Existing Account Page 25 Entourage

More information

The SkySQL Administration Console

The SkySQL Administration Console www.skysql.com The SkySQL Administration Console Version 1.1 Draft Documentation Overview The SkySQL Administration Console is a web based application for the administration and monitoring of MySQL 1 databases.

More information

Java Management Extensions (JMX) and IBM FileNet System Monitor

Java Management Extensions (JMX) and IBM FileNet System Monitor Java Management Extensions (JMX) and IBM FileNet System Monitor Derive J2EE statistics from FileNet System Monitor alerts Level: Introductory Steven J. Bass 01.Mar.2009 Scope: Does your customer want to

More information

CA Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for IIS Server Monitoring iis v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change

More information

System Administration of Windchill 10.2

System Administration of Windchill 10.2 System Administration of Windchill 10.2 Overview Course Code Course Length TRN-4340-T 3 Days In this course, you will gain an understanding of how to perform routine Windchill system administration tasks,

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration

OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration OMU350 Operations Manager 9.x on UNIX/Linux Advanced Administration Instructor-Led Training For versions 9.0, 9.01, & 9.10 OVERVIEW This 5-day instructor-led course focuses on advanced administration topics

More information

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1.

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. WD31_VirtualApplicationSharedServices.ppt Page 1 of 29 This presentation covers the shared

More information

Preparing a SQL Server for EmpowerID installation

Preparing a SQL Server for EmpowerID installation Preparing a SQL Server for EmpowerID installation By: Jamis Eichenauer Last Updated: October 7, 2014 Contents Hardware preparation... 3 Software preparation... 3 SQL Server preparation... 4 Full-Text Search

More information