Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol. Version 1.1b

Size: px
Start display at page:

Download "Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol. Version 1.1b"

Transcription

1 Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol Version 1.1b

2 Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol Release: v 1.1b Document release date: 11/15/2013 Copyright 2013 Super Micro Computer, Inc. All Rights Reserved. Legal Notices This software and documentation is the property of Super Micro Computer, Inc., and supplied only under a license. Any use or reproduction of this software is not allowed, except as expressly permitted by the terms of said license. Information in this document is subject to change without notice. Trademark Notice All trademarks and copyrights referred to are the property of their respective owners.

3 Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol Revision History Date Rev Description Jul Initial Document. Sep Reorganize MIB structures. Jul a 1. Change product name to SuperDoctor 5 (SD5). Nov b 1. Changed default install folder of SD5. ii

4 Supermicro Server Monitoring with SuperDoctor 5 and Nagios Using SNMP Protocol Contents 1. Introduction Prerequisites Installing Java Runtime Environment (JRE) Installing the check_snmp_health Plug-in SuperDoctor 5 (SD5) Seting Up SNMP Service in Linux Installing Smartctl Utility Getting Started Defining the Hosts Defining a Command Defining the Services Validating the Nagios Configurations Restarting Nagios Service Connecting to the Nagios Web UI Using check_snmp_health h or --help bc cn co d i t to Appendix SD5 FAQ How to Reset Memory Error Status? Can I Disable the SD5 Web? Can I Disable the NRPE Protocol? No Health Information from SNMP Was Fetched Contacting Supermicro iii

5 1. Introduction This Nagios plug-in, named check_snmp_health, uses SNMP to talk to SuperDoctor 5 and check the health of the following hardware components: Fan Processor temperature System temperature DDR3 temperature Power supply failure Voltage Chassis intrusion Physical disk failure Memory failure (Linux platform only) 1 Processor failure (Linux platform only) 2 RAID health (LSI MegaRAID 2108 and 2208 controllers only) The results of executing the check_snmp_health plug-in are shown on the Nagios Web UI. 1 The memory health check includes CECC and UECC. Both kinds must be BIOS supported, and this function is currently only available on Linux platforms. 2 The processor failure checks must be BIOS supported and is currently only available on Linux platforms. 4

6 2. Prerequisites 2.1 Installing Java Runtime Environment (JRE) The check_snmp_health plug-in is written in Java. To run the plug-in, install JRE 1.6 or above in your Nagios server. Please set the JAVA_HOME environment variable to the JRE installation path. 2.2 Installing the check_snmp_health Plug-in 1. Unzip the package file SSMServerPlugin-1.0-build.[xyz].zip to the /usr/local/nagios/libexec/ssmserverplugin folder, assuming your Nagios is installed on the /usr/local/nagios location. 2. Using the command chmod +x check_snmp_health.sh to make the check_snmp_health plug-in executable. 3. Execute the check_snmp_health.sh program without providing any argument. If the JRE and the plug-in are installed correctly, the error message appears: Invalid options. Three options must be provided for -i (--ip). 2.3 SuperDoctor 5 (SD5) The check_snmp_health plug-in is designed to work with the SuperDoctor 5, which implements an SNMP extension to support Supermicro MIBs (see 5.3 Supermicro MIB in SuperDoctor 5 User's Guide for details). For the installation of the SuperDoctor 5, please refer to Chapter 2 Setting Up SD5 in SuperDoctor 5 User's Guide. For the quick installation of multiple SD5s, see Tips for Deploying a Large Number of SD5s in SuperDoctor 5 User's Guide. 2.4 Seting Up SNMP Service in Linux To support SNMP, the NET-SNMP service needs to be installed and configured on your Linux. For the installation and configuration of the NET-SNMP service, please refer to 5.2 Setup SNMP Service in Linux in SuperDoctor 5 User's Guide. 5

7 2.5 Installing Smartctl Utility SD5 uses an open source program named smartctl to check the health of physical disks. To enable this function, you need to manually install the smartctl program. Download the program from: Many Linux distributions provide pre-compiled packages to simplify the installation of smartctl. For example, on the CentOS 5.x, you can install smartctl by using the yum command as shown below. 6

8 3. Getting Started 3.1 Defining the Hosts Define a host for each of the SD5s. Suppose that the host is written in the host1.cfg file. define host { host_name alias address use linux-server } Edit the $NAGIOS_HOME$/etc/nagios.cfg file to include the host1.cfg. 3.2 Defining a Command Define a command for check_snmp_health. Suppose that the command is written in the commands.cfg file. define command { command_name check_snmp_health_all command_line /usr/local/nagios/libexec/ssmserverplugin/check_snmp_health.s h i $HOSTADDRESS$ -t $ARG1$ } 7

9 3.3 Defining the Services Define the service to be checked by Nagios. Suppose that the service is written in the host1.cfg file. define service { use local-service service_description check_snmp_health host_name check_command check_snmp_health_all!a } You can also define a service to check a particular type of monitored items, e.g., fan, disk, or memory, by specifying the type argument: a: all (like checking all health) w: power, f: fan c: current d: disk m: memory t: temperature v: voltage s: switch p: processor r: raid For example, the service used to check fan status is shown below: define service { use local-service host_name service_description check fan status check_command check_snmp_health_all!f } You can also check multiple types of monitored items by enumerating each of the type. A service used to check disk, fan, and voltage status is shown below. 8

10 define service { use local-service host_name service_description check disk, fan, and voltage status check_command check_snmp_health_all!dfv } 3.4 Validating the Nagios Configurations 9

11 3.5 Restarting Nagios Service 3.6 Connecting to the Nagios Web UI The results are shown on the Nagios Web UI as below. 10

12 4. Using check_snmp_health 4.1 h or --help The -h or --help option shows the help menu, as shown below. 4.2 bc Use the bc option to specify user-defined thresholds for memory and processor checking. The argument format is as follows: [type][duration][fail count],. [type]: m: correctable single bit ECC errors. M: uncorrectable ECC errors. p: processor failures. [duration]: d: day h: hour m: minute s: second [fail count]: The acceptable number of failures. To trigger a critical status, the failure counts must be greater than this value. 11

13 Example: To specify a threshold for memory that indicates four single bit ECC errors per 1GB RAM within one day (24 hours) is allowed (i.e., m1d4), and 0 uncorrectable ECC error is allowed within 1 hour (i.e., M1h0). -bc m1d4,m1h0 Note: To reset the memory, refer to 5.2 How to Reset Memory Error Status? for more information. Example: To specify a threshold for processor that indicates 2 correctable processor failures within 30 days is allowed (i.e., p30d2), and 0 uncorrectable processor failure is allowed within 1 hour (i.e., P1h0). -bc p30d2,p1h0 4.3 cn Use the cn option to specify user-defined thresholds for checking the number of processors, memory and hard disks. The argument format is as follows: [type][number],. [type]: p: processor. m: memory. d: hard disk drives. [number]: The expected number of processors, memory, or hard disks. To trigger an OK status, the assigned number must be equal to the number of the processors, memory, or hard disks installed on the system under monitoring. Example: The arguments are specified for the cn option, and this option indicates the system under monitoring has one processor, four memory DIMMs, and one hard disk drive. -cn p1,m4,d1 4.4 co Use the co option to specify an SNMP community string. 12

14 4.5 d Use the d option to show detailed information regarding the monitoring logics, which is used for debugging propose only. This option should not be used in Nagios. 4.6 i Use the i option to specify the host name or IP address to be checked. 4.7 t Use the t option to specify the type of monitored items to be checked. The default value is all. Use the "-t r" option as shown below to check the health status of a RAID controller, including the states of its components such as battery backup units, virtual drives and hard disks. 13

15 The following figure indicates one virtual drive and one hard disk are alerted, and the health status of the RAID controller is thus critical. The following figure shows the RAID controller is critical due to the absent BBU. 4.8 to Use the to option to specify the SNMP timeout value. The default value is 15 seconds. You may need to increase the timeout value if the check_snmp_health plug-in cannot retrieve all MIBs. For example, a host to be checked has several hard disks. Checking its physical disk failures may be longer than 15 seconds and times out the check_snmp_health plug-in. To avoid such a situation, specify a larger timeout value by using the to option. 14

16 5. Appendix 5.1 SD5 FAQ Q: I see some error messages in the [SD5 install folder]/wrapper.log file. Do you have a list of all error messages and solutions? A: Here are the known error messages. NO Message Root Cause Solution A0001 HealthInfo The SD5 is run on a Install SD5 on Supermicro servers. initialization error. com.supermicro.ss m.tmhealth.model. MotherboardModel NotExistException: non-supermicro server. Health information is only available on Supermicro servers. A0002 Unable to start JVM: No such file or directory The SD5 cannot find the required Java Virtual Machine (JVM) located in the [SD5 install folder]/jre folder. Reinstall the SD How to Reset Memory Error Status? Q: An uncorrectable ECC error has been raised on a server and I have manually changed the pragmatic memory module. However, the check_snmp_health plug-in still shows a critical status. A: The check logic of memory errors is based on these: 1. There are memory error logs in the BIOS event log. 2. The log's generated time is in the check time period. For example, suppose that you use the -bc M1d0 option (i.e., any uncorrectable ECC error occurring in one day will cause a critical state) to check memory error. Once an uncorrectable ECC error has been found, the status will remain critical for one day even after the problematic memory is manually changed. To get an OK status immediately after manually repairing the memory, you need to follow these steps: 15

17 1. Clear BIOS event logs from the BIOS setup menu. 2. Delete the file [SD5 install folder]/config/bioslogs.txt 5.3 Can I Disable the SD5 Web? Q: I only use the check_snmp_health plug-in to check the health of a host and do not use a browser to view the sensor readings via the SD5 Web. Can I disable it? A: Yes, the SD5 Web can be disabled during installation. At the Setup SuperDoctor 5 Web step, select 2- No to disable the SD5 Web. See the figure below. You can also manually disable the SD5 Web after installation. Use a text editor to open the [SD5 install folder]/plugins/builtin/web/plugin.cfg file, as shown below. 16

18 Change the enabled attribute from 1 to 0 and save the document. Exit the text editor and restart the SD5 to apply the setting. If the SD5 Web is disabled, the TCP ports 8181 and 8444 are not used. 5.4 Can I Disable the NRPE Protocol? Q: I only use the check_snmp_health plug-in to check the health of a host and do not use the NRPE protocol to talk with the SD5. Can I disable the support of the NRPE protocol? A: The SD5 supports three NRPE connection modes: Mode A: Plain text with allowed IP (port 5333) Mode B: Anonymous SSL connection with allowed IP (port 5666) Mode C: SSL encryption with a public key infrastructure (port 5999) Because the NRPE protocol is the default connection protocol provided by the SD5, it cannot be completely turned off. At least one connection mode must be specified. For modifying the connection mode settings, refer to 3.2 SuperDoctor 5 Connection Modes in SuperDoctor 5 User's Guide. 5.5 No Health Information from SNMP Was Fetched Q: I execute the command check_snmp_health.sh -i [host_ip] and the result shows No health information from SNMP was fetched. What is the problem? A: Usually this message indicates that the host to be checked does not support Supermicro MIB. Possible reasons include: 17

19 The operating system s built-in SNMP service (i.e., the Net-SNMP) does not start. The SD5 does not start. The SD5 SNMP extension is not correctly installed. The SNMP port is blocked by firewall. The default timeout value is not long enough for a health check. 18

20 Contacting Supermicro Headquarters Address: Super Micro Computer, Inc. 980 Rock Ave. San Jose, CA U.S.A. Tel: +1 (408) Fax: +1 (408) (General Information) (Technical Support) Web Site: Europe Address: Super Micro Computer B.V. Het Sterrenbeeld 28, 5215 ML 's-hertogenbosch, The Netherlands Tel: +31 (0) Fax: +31 (0) (General Information) (Technical Support) (Customer Support) Asia-Pacific Address: Super Micro Computer, Inc. 3F, No. 150, Jian 1st Rd. Zhonghe Dist., New Taipei City Taiwan (R.O.C) Tel: +886-(2) Fax: +886-(2) Web Site: Technical Support: Tel: +886-(2)

21 This page is intentionally left blank 20

Supermicro Server Monitoring with SuperDoctor 5 and SCOM 2012

Supermicro Server Monitoring with SuperDoctor 5 and SCOM 2012 Supermicro Server Monitoring with SuperDoctor 5 and SCOM 2012 User s Guide Revision 1.0 The information in this USER S MANUAL has been carefully reviewed and is believed to be accurate. The vendor assumes

More information

SuperDoctor 5 User's Guide. Version 1.2

SuperDoctor 5 User's Guide. Version 1.2 SuperDoctor 5 User's Guide Version 1.2 SuperDoctor 5 User's Guide Release: v 1.2 Document release date: 11/15/2013 Copyright 2013 Super Micro Computer, Inc. All Rights Reserved. Legal Notices This software

More information

SuperDoctor 5. User's Guide. Version 1.2e

SuperDoctor 5. User's Guide. Version 1.2e SuperDoctor 5 User's Guide Version 1.2e The information in this USER S MANUAL has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for any inaccuracies that

More information

Intel PCH RAID Configuration Utility

Intel PCH RAID Configuration Utility Intel PCH RAID Configuration Utility USER S MANUAL Revision 1.0a The information in this User s Manual has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for

More information

UEFI BIOS Recovery Instructions

UEFI BIOS Recovery Instructions UEFI BIOS Recovery Instructions USER S GUIDE Revision 1.0a The information in this User s Guide has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for any

More information

Web-based Management Utility

Web-based Management Utility MicroBlade Web-based Management Utility USER S MANUAL Revison.0b MicroBlade Web-based Management Utility USER S MANUAL The information in this USER S MANUAL has been carefully reviewed and is believed

More information

Supermicro Server Management Utilities

Supermicro Server Management Utilities Supermicro Server Management Utilities SSM SPM SUM SuperDoctor 5 IPMI Utilities Optimized for Data Centers Remotely manage servers deployed worldwide Manage hardware with no impact on applications Integrate

More information

System Management Software Suite

System Management Software Suite IPMI Utilities SUM SCM SPM SSM Optimized for Data Centers ly manage servers deployed across globe Manage hardware with no impact to applications Integrate utilities easily with existing infrastructure

More information

Supermicro Server Management Utilities

Supermicro Server Management Utilities Supermicro IPMI Utilities SuperDoctor 5 SPM SUM SCM Optimized for Data Centers ly manage servers deployed worldwide Manage hardware with no impact on applications Integrate utilities easily with existing

More information

JAMF Software Server Installation Guide for Linux. Version 8.6

JAMF Software Server Installation Guide for Linux. Version 8.6 JAMF Software Server Installation Guide for Linux Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.

More information

AOC-TBT-DSL5320. User Guide 1.0

AOC-TBT-DSL5320. User Guide 1.0 AOC-TBT-DSL5320 User Guide 1.0 The information in this user guide has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for any inaccuracies that may be contained

More information

LSI 2308 SAS Configuration Utility

LSI 2308 SAS Configuration Utility LSI 2308 SAS Configuration Utility USER S MANUAL Revision 1.0 The information in this User s Manual has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for

More information

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks...

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... Copyright (c) 1999-2007 Ethan Galstad Last Updated: May 1, 2007 CONTENTS Section 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... 3. Installation...

More information

JAMF Software Server Installation Guide for Windows. Version 8.6

JAMF Software Server Installation Guide for Windows. Version 8.6 JAMF Software Server Installation Guide for Windows Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.

More information

AOM-TPM-9655V AOM-TPM-9655H

AOM-TPM-9655V AOM-TPM-9655H AOM-TPM-9655V AOM-TPM-9655H USER S MANUAL Revision 1.0 The information in this User s Manual has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility for any inaccuracies

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

TECHNICAL CONDITIONS REGARDING ACCESS TO VP.ONLINE. User guide. vp.online 2011 2011-10-01

TECHNICAL CONDITIONS REGARDING ACCESS TO VP.ONLINE. User guide. vp.online 2011 2011-10-01 TECHNICAL CONDITIONS REGARDING ACCESS TO VP.ONLINE vp.online 2011 2011-10-01 Contents 1 PROBLEMS SEEING VP.ONLINE... 3 2 BROWSER CONFIGURATION... 6 3 WRITE ACCESS TO DISK DRIVE... 7 4 SESSION TIMEOUT AND

More information

Web-based Management Utility

Web-based Management Utility Superblade Web-based Management Utility User s Manual Revison. Superblade SuperBlade Web-based Management Utility User s Manual The information in this User s Manual has been carefully reviewed and is

More information

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System Deploying F5 with Nagios Open Source Network Monitoring System Welcome to the F5 and Nagios deployment

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

XenClient Enterprise Synchronizer Installation Guide

XenClient Enterprise Synchronizer Installation Guide XenClient Enterprise Synchronizer Installation Guide Version 5.1.0 March 26, 2014 Table of Contents About this Guide...3 Hardware, Software and Browser Requirements...3 BIOS Settings...4 Adding Hyper-V

More information

LSI 2108/2208 SAS MegaRAID Configuration Utility

LSI 2108/2208 SAS MegaRAID Configuration Utility LSI 2108/2208 SAS MegaRAID Configuration Utility USER S MANUAL Revision 1.0 The information in this User s Manual has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility

More information

McAfee Firewall Enterprise

McAfee Firewall Enterprise Hardware Guide Revision C McAfee Firewall Enterprise S1104, S2008, S3008 The McAfee Firewall Enterprise Hardware Product Guide describes the features and capabilities of appliance models S1104, S2008,

More information

Installing and Configuring vcenter Multi-Hypervisor Manager

Installing and Configuring vcenter Multi-Hypervisor Manager Installing and Configuring vcenter Multi-Hypervisor Manager vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.1 This document supports the version of each product listed and supports all subsequent

More information

MSM Software Feature Difference Between the MR Controller and the IR Controller

MSM Software Feature Difference Between the MR Controller and the IR Controller MSM Software Feature Difference Between the MR Controller and the IR Controller Systems Engineering Note S11252, Version 1.0 DB05-000341-00 For a comprehensive list of changes to this document, see the

More information

Installing and Configuring vcenter Support Assistant

Installing and Configuring vcenter Support Assistant Installing and Configuring vcenter Support Assistant vcenter Support Assistant 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

MONITORING EMC GREENPLUM DCA WITH NAGIOS

MONITORING EMC GREENPLUM DCA WITH NAGIOS White Paper MONITORING EMC GREENPLUM DCA WITH NAGIOS EMC Greenplum Data Computing Appliance, EMC DCA Nagios Plug-In, Monitor DCA hardware components Monitor DCA database and Hadoop services View full DCA

More information

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Deployment Guide Deploying the BIG-IP System with Microsoft Windows Server 2003 Terminal Services Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Welcome to the BIG-IP

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

TANDBERG MANAGEMENT SUITE 10.0

TANDBERG MANAGEMENT SUITE 10.0 TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS

More information

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

More information

McAfee Asset Manager Console

McAfee Asset Manager Console Installation Guide McAfee Asset Manager Console Version 6.5 COPYRIGHT Copyright 2012 McAfee, Inc. Do not copy without permission. TRADEMARK ATTRIBUTIONS McAfee, the McAfee logo, McAfee Active Protection,

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Deploying EMC Documentum WDK Applications with IBM WebSEAL as a Reverse Proxy

Deploying EMC Documentum WDK Applications with IBM WebSEAL as a Reverse Proxy Deploying EMC Documentum WDK Applications with IBM WebSEAL as a Reverse Proxy Applied Technology Abstract This white paper serves as a detailed solutions guide for installing and configuring IBM WebSEAL

More information

Monitoring Software Services registered with science.canarie.ca

Monitoring Software Services registered with science.canarie.ca Monitoring Software Services registered with.canarie.ca Introduction The software registry at.canarie.ca monitors each of the contributed services via the API defined in Research Service Support for the

More information

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset)

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Version: 1.4 Table of Contents Using Your Gigabyte Management Console... 3 Gigabyte Management Console Key Features and Functions...

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

How To Upgrade A Websense Log Server On A Windows 7.6 On A Powerbook (Windows) On A Thumbdrive Or Ipad (Windows 7.5) On An Ubuntu 7.3.2 (Windows 8) Or Windows

How To Upgrade A Websense Log Server On A Windows 7.6 On A Powerbook (Windows) On A Thumbdrive Or Ipad (Windows 7.5) On An Ubuntu 7.3.2 (Windows 8) Or Windows Websense v7.6 Install or Upgrade Checklist Greetings from Websense Technical Support. Most Websense upgrades complete successfully, and from my years of troubleshooting, I have learned a number of steps

More information

Configuring and Monitoring Hitachi SAN Servers

Configuring and Monitoring Hitachi SAN Servers Configuring and Monitoring Hitachi SAN Servers eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this

More information

Synchronizer Installation

Synchronizer Installation Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient

More information

SyAM Software, Inc. Server Monitor Desktop Monitor Notebook Monitor V3.2 Local System Management Software User Manual

SyAM Software, Inc. Server Monitor Desktop Monitor Notebook Monitor V3.2 Local System Management Software User Manual SyAM Software, Inc. Server Monitor Desktop Monitor Notebook Monitor V3.2 Local System Management Software User Manual Revision A August 2006 1 2006 SyAM Software, Inc. All rights reserved. SyAM Software

More information

There are numerous ways to access monitors:

There are numerous ways to access monitors: Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Sharp Remote Device Manager (SRDM) Server Software Setup Guide

Sharp Remote Device Manager (SRDM) Server Software Setup Guide Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

Installation & Configuration Guide

Installation & Configuration Guide Installation & Configuration Guide Bluebeam Studio Enterprise ( Software ) 2014 Bluebeam Software, Inc. All Rights Reserved. Patents Pending in the U.S. and/or other countries. Bluebeam and Revu are trademarks

More information

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System DEPLOYMENT GUIDE Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System Version 1.0 Deploying F5 with Cacti Open Source Network Monitoring System Welcome to the F5 and Cacti deployment

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

F-Secure Messaging Security Gateway. Deployment Guide

F-Secure Messaging Security Gateway. Deployment Guide F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4

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

Installing, Uninstalling, and Upgrading Service Monitor

Installing, Uninstalling, and Upgrading Service Monitor CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page

More information

Getting Started. Symantec Client Security. About Symantec Client Security. How to get started

Getting Started. Symantec Client Security. About Symantec Client Security. How to get started Getting Started Symantec Client Security About Security Security provides scalable, cross-platform firewall, intrusion prevention, and antivirus protection for workstations and antivirus protection for

More information

IUCLID 5 Guidance and support. Installation Guide Distributed Version. Linux - Apache Tomcat - PostgreSQL

IUCLID 5 Guidance and support. Installation Guide Distributed Version. Linux - Apache Tomcat - PostgreSQL IUCLID 5 Guidance and support Installation Guide Distributed Version Linux - Apache Tomcat - PostgreSQL June 2009 Legal Notice Neither the European Chemicals Agency nor any person acting on behalf of the

More information

Novell Access Manager

Novell Access Manager J2EE Agent Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP3 February 02, 2011 www.novell.com Novell Access Manager 3.1 SP3 J2EE Agent Guide Legal Notices Novell, Inc., makes no representations

More information

Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide

Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make

More information

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4 Pcounter Web Report 3.x Installation Guide - v2014-11-30 Pcounter Web Report Installation Guide Version 3.4 Table of Contents Table of Contents... 2 Installation Overview... 3 Installation Prerequisites

More information

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting

More information

Configuration Manager Error Messages

Configuration Manager Error Messages Adobe Enterprise & Developer Support Knowledge Article ID: c4698 bc Configuration Manager Error Messages This document provides a list of error messages that you may see when using the Configuration Manager

More information

SECURITY DOCUMENT. BetterTranslationTechnology

SECURITY DOCUMENT. BetterTranslationTechnology SECURITY DOCUMENT BetterTranslationTechnology XTM Security Document Documentation for XTM Version 6.2 Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of

More information

RSM Web Gateway RSM Web Client INSTALLATION AND ADMINISTRATION GUIDE

RSM Web Gateway RSM Web Client INSTALLATION AND ADMINISTRATION GUIDE RSM Web Gateway RSM Web Client INSTALLATION AND ADMINISTRATION GUIDE Installation and Administration Guide RSM Web Client and RSM Web Gateway 17 August, 2004 Page 1 Copyright Notice 2004 Sony Corporation.

More information

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide 026-1010 Rev 7 06-OCT-2011 Site Manager Installation Guide Retail Solutions 3240 Town Point Drive NW, Suite 100 Kennesaw, GA 30144, USA Phone: 770-425-2724 Fax: 770-425-9319 Table of Contents 1 SERVER

More information

Installing and Configuring the Intel Server Manager 8 SNMP Subagents. Intel Server Manager 8.40

Installing and Configuring the Intel Server Manager 8 SNMP Subagents. Intel Server Manager 8.40 Installing and Configuring the Intel Server Manager 8 SNMP Subagents Intel Server Manager 8.40 Legal Information This Installing and Configuring the Intel Server Manager 8 SNMP Subagents--Intel Server

More information

AOC-SAT2-MV8 USER'S GUIDE

AOC-SAT2-MV8 USER'S GUIDE SUPER AOC-SAT2-MV8 USER'S GUIDE Rev. 1.0 AOC-SAT2-MV8 User's Guide The information in this User s Guide has been carefully reviewed and is believed to be accurate. The vendor assumes no responsibility

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

PowerChute TM Network Shutdown Security Features & Deployment

PowerChute TM Network Shutdown Security Features & Deployment PowerChute TM Network Shutdown Security Features & Deployment By David Grehan, Sarah Jane Hannon ABSTRACT PowerChute TM Network Shutdown (PowerChute) software works in conjunction with the UPS Network

More information

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2 DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...

More information

SNMP Adapter Installation and Configuration Guide

SNMP Adapter Installation and Configuration Guide SNMP Adapter Installation and Configuration Guide vcenter Operations Manager 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

FileMaker Server 15. Getting Started Guide

FileMaker Server 15. Getting Started Guide FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

Compiere 3.2 Installation Instructions Windows System - Oracle Database

Compiere 3.2 Installation Instructions Windows System - Oracle Database Compiere 3.2 Installation Instructions Windows System - Oracle Database Compiere Learning Services Division Copyright 2008 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

Studio 5.0 User s Guide

Studio 5.0 User s Guide Studio 5.0 User s Guide wls-ug-administrator-20060728-05 Revised 8/8/06 ii Copyright 2006 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite 335 Midvale,

More information

Semantic based Web Application Firewall (SWAF - V 1.6)

Semantic based Web Application Firewall (SWAF - V 1.6) Semantic based Web Application Firewall (SWAF - V 1.6) Installation and Troubleshooting Manual Document Version 1.0 1 Installation Manual SWAF Deployment Scenario: Client SWAF Firewall Applications Figure

More information

Witango Application Server 6. Installation Guide for OS X

Witango Application Server 6. Installation Guide for OS X Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: support@witango.com Web: www.witango.com

More information

Microsoft Hyper-V Server 2008 R2 Getting Started Guide

Microsoft Hyper-V Server 2008 R2 Getting Started Guide Microsoft Hyper-V Server 2008 R2 Getting Started Guide Microsoft Corporation Published: July 2009 Abstract This guide helps you get started with Microsoft Hyper-V Server 2008 R2 by providing information

More information

Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB

Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB Compiere Learning Services Division Copyright 2007 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

Rebasoft Auditor Quick Start Guide

Rebasoft Auditor Quick Start Guide Copyright Rebasoft Limited: 2009-2011 1 Release 2.1, Rev. 1 Copyright Notice Copyright 2009-2011 Rebasoft Ltd. All rights reserved. REBASOFT Software, the Rebasoft logo, Rebasoft Auditor are registered

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Predictive Analytics Client

Predictive Analytics Client Predictive Analytics Client ONE Automation Platform Installation Guide Version: 11.2 Publication Date: 2015-10 Automic Software GmbH ii Copyright Copyright Automic and the Automic logo are trademarks owned

More information

VMware vcenter Log Insight Getting Started Guide

VMware vcenter Log Insight Getting Started Guide VMware vcenter Log Insight Getting Started Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Setting Up SSL on IIS6 for MEGA Advisor

Setting Up SSL on IIS6 for MEGA Advisor Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority

More information

NEC Express5800 Series NEC ESMPRO AlertManager User's Guide

NEC Express5800 Series NEC ESMPRO AlertManager User's Guide NEC Express5800 Series NEC ESMPRO AlertManager User's Guide 7-2006 ONL-4152aN-COMMON-128-99-0606 PROPRIETARY NOTICE AND LIABILITY DISCLAIMER The information disclosed in this document, including all designs

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

SyncThru TM Web Admin Service Administrator Manual

SyncThru TM Web Admin Service Administrator Manual SyncThru TM Web Admin Service Administrator Manual 2007 Samsung Electronics Co., Ltd. All rights reserved. This administrator's guide is provided for information purposes only. All information included

More information

WhatsUp Gold v16.1 Installation and Configuration Guide

WhatsUp Gold v16.1 Installation and Configuration Guide WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional.

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. 33-40006-001 REV: B PCSC 3541 Challenger Street Torrance, CA 90503 Phone: (310) 303-3600

More information

Management, Logging and Troubleshooting

Management, Logging and Troubleshooting CHAPTER 15 This chapter describes the following: SNMP Configuration System Logging SNMP Configuration Cisco NAC Guest Server supports management applications monitoring the system over SNMP (Simple Network

More information

ez Agent Administrator s Guide

ez Agent Administrator s Guide ez Agent Administrator s Guide Copyright This document is protected by the United States copyright laws, and is proprietary to Zscaler Inc. Copying, reproducing, integrating, translating, modifying, enhancing,

More information

Symantec Protection Engine for Cloud Services 7.0 Release Notes

Symantec Protection Engine for Cloud Services 7.0 Release Notes Symantec Protection Engine for Cloud Services 7.0 Release Notes Symantec Protection Engine for Cloud Services Release Notes The software described in this book is furnished under a license agreement and

More information

RealPresence Platform Director

RealPresence Platform Director RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 GETTING STARTED GUIDE Software 2.0 June 2015 3725-66012-001B RealPresence Platform Director Polycom, Inc. 1 RealPresence Platform Director

More information

Up to 4 PCI-E SSDs Four or Two Hot-Pluggable Nodes in 2U

Up to 4 PCI-E SSDs Four or Two Hot-Pluggable Nodes in 2U Twin Servers Up to 4 PCI-E SSDs Four or Two Hot-Pluggable Nodes in 2U New Generation TwinPro Systems SAS 3.0 (12Gbps) Up to 12 HDDs/Node FDR(56Gbps)/QDR InfiniBand 1TB DDR3 up to 1866 MHz in 16 DIMMs Redundant

More information

12Gb/s MegaRAID SAS Software

12Gb/s MegaRAID SAS Software 12Gb/s MegaRAID SAS Software User Guide Revision 2.0 DB15-001199-00 For a comprehensive list of changes to this document, see the History of Technical Changes. Corporate Headquarters Email Website San

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

WhatsUp Gold v16.2 Installation and Configuration Guide WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

UBS KeyLink Quick reference WEB Installation Guide

UBS KeyLink Quick reference WEB Installation Guide ab UBS KeyLink Quick reference WEB Installation Guide Table of contents 1. Introduction 3 1.1. Why is an Installation needed? 3 1.2. Is UBS KeyLink secure? 3 1.3. Information about Secure Sockets Layer

More information

Sample Configuration: Cisco UCS, LDAP and Active Directory

Sample Configuration: Cisco UCS, LDAP and Active Directory First Published: March 24, 2011 Last Modified: March 27, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

FileMaker Server 13. Getting Started Guide

FileMaker Server 13. Getting Started Guide FileMaker Server 13 Getting Started Guide 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

CA Spectrum and CA Service Desk

CA Spectrum and CA Service Desk CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Cisco SSL Encryption Utility

Cisco SSL Encryption Utility About SSL Encryption Utility, page 1 About SSL Encryption Utility Unified ICM web servers are configured for secure access (HTTPS) using SSL. Cisco provides an application called the SSL Encryption Utility

More information

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide Smart Cloud Integration Pack For System Center Operation Manager v1.1.0 User's Guide Table of Contents 1. INTRODUCTION... 6 1.1. Overview... 6 1.2. Feature summary... 7 1.3. Supported Microsoft System

More information