CN=Monitor Installation and Configuration v2.0

Size: px
Start display at page:

Download "http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0"

Transcription

1 1 Installation and Configuration v2.0

2 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring Scripts...6 RPM Upgrade...6 Enable Monitoring Scripts...7 Uninstall...7 RPM Uninstallation...7 Manual *nix Uninstallation...8 Configuration...9 Understanding configuration levels Not inherited options General Environment Level Environment Level Server Level Configuration Examples Simple configuration to get started Simple configuration with database support for one environment Two environments All Configurable Options General Mail / Error Reporting Environment and Server, Name Options Environment and Server, Connection Options Environment and Server, Monitor and History Options Environment and Server, Graph and Chart Options Environment and Server, Query Options Environment and Server, Replication Options Environment and Server, Cache and Log Options Features Monitoring Known Problems Releases Contact Information Download Updates Donate using PayPal Contact Developer(s) Appendix Deprecated or removed configuration options... 22

3 3 Installation Prerequisites In order to use the following applications and libraries needs to be installed. Installation notes below will include how to install these prerequisites. Operating system - Linux / Unix - Mac OS X 10.6 Web Server - Apache HTTPd server 2.0 Include PHP and mod_ssl extension - PHP 5.X Include LDAP, GD and CLI modules - OpenSSL SQL Database (Optional) - PostgreSQL - MySQL Avoid Certificate validation Set the following setting in /etc/openldap/ldap.conf to avoid Common Name validation of certificates. Especially important when you have a clustered environment. # vi /etc/openldap/ldap.conf TLS_REQCERT never RPM Installation Install Dependencies # yum install openldap-clients # yum install httpd mod_ssl openssl # yum install php php-cli php-ldap php-gd Install # rpm -ivh cnmonitor noarch.rpm Installed files: /etc/cnmonitor /usr/share/cnmonitor/www /usr/share/cnmonitor/bin /usr/share/cnmonitor/sql /usr/share/cnmonitor/doc /usr/share/man/man1 Configuration Files Web Application Scripts to collect historical events SQL Files to setup database This document Manual (man) files for Don t forget to restart httpd # service httpd restart

4 4 Collect historical monitor events (optional but recommended). Supported databases are MySQL and PostgreSQL. MySQL # yum install mysql-server php-mysql # service mysqld start Install schema # mysql -u root -p < /usr/share/cnmonitor/sql/mysql.sql In this example we are using root as user for MySQL. Don t forget to restart httpd # service httpd restart PostgreSQL # yum install postgresql-server php-pqsql # service postgresql initdb # service postgresql start Install schema # psql -U postgres -f /usr/share/cnmonitor/sql/postgresql.sql In this example we are using postgres as user for PostreSQL. Don t forget to restart httpd # service httpd restart Continue to chapter Setup Monitoring. Manual *nix Installation For other Unix/Linux distributions that meet stated requirements. Install Untar and unzip tgz file in /usr/share # cd /usr/share # tar -zxvf cnmonitor tgz You should now end up with: /usr/share/cnmonitor/config /usr/share/cnmonitor/www /usr/share/cnmonitor/bin /usr/share/cnmonitor/sql /usr/share/cnmonitor/doc /usr/share/cnmonitor/conf Configuration Files Web Application Scripts to collect historical events SQL Files to setup database This document Apache Configuration files

5 5 /usr/share/cnmonitor/man1 Manual (man) file If you need the man file. Install it in: /usr/share/man/man1 Move config directory to /etc, create symbolic link and set file permissions: # mv /usr/share/cnmonitor/config /etc/cnmonitor # ln -s /etc/cnmonitor /usr/share/cnmonitor/config # chown -R root:apache /etc/cnmonitor # chmod -R 650 /etc/cnmonitor # chmod -R +x /usr/share/cnmonitor/bin Copy apache configurations file to your conf.d directory for apache or manually add the configuration in httpd.conf. # cp /usr/share/cnmonitor/conf/httpd/cnmonitor.conf /etc/httpd/conf.d/ Don t forget to restart httpd # service httpd restart Collection of historical events Consult your vendor documentation how to setup your database connection and further configuration. Database configuration files are available in the cnmonitor/sql directory. This documentation is available in the cnmonitor/doc directory. Continue to chapter Setup Monitoring. Setup monitoring You can set the configuration option nocollect with value 1 to exclude environments and servers to be included. Setup collect monitoring information (run it around every minutes): # crontab e */30 * * * * cd /usr/share/cnmonitor/bin;php collectdb.php Setup collect server messages and retrieve alerts (run it around every 10 minutes): # crontab -e */10 * * * * cd /usr/share/cnmonitor/bin;php collectservermessage.php Setup create collection summary (should be run once a day): # crontab -e 0 4 * * * cd /usr/share/cnmonitor/bin;php collectsummary.php In some distributions its preferred to use /etc/cron.daily/<custom shell script>

6 6 Setup sending status mail every week: # crontab -e 0 4 * * 0 cd /usr/share/cnmonitor/bin;php collectmailreport.php In some distributions its preferred to use /etc/cron.weekly/<custom shell script> Note that you need to configure to use this functionality. You also need to configure and start sendmail before this functionality can be used. See configuration chapter for more info. I highly recommend running the commands from the command line to verify the functionality before scheduling the jobs. Consult your crontab documentation and set preferred monitoring interval. In the example above we are collecting every five minutes. Upgrade You should back up your configuration files before upgrading. It s also recommended to upgrade from the previous released version (1.3). Important Information Configurations file now available in XML format. Make sure that you run the steps below and backup your old configuration files before running the RPM upgrade! Backup configuration files Upgrading form version 1.x to 2.0 will replace all configuration files. Backup the /etc/cnmonitor directory before upgrading! # cp -rd /etc/cnmonitor /tmp/cnmonitorconfig Disable Monitoring Scripts Disable all configured monitoring scripts during this upgrade: # crontab -e Add comment # character: # */30 * * * * cd /usr/share/cnmonitor/bin;php collectdb.php # */10 * * * * cd /usr/share/cnmonitor/bin;php collectservermessage.php # 0 4 * * 0 cd /usr/share/cnmonitor/bin;php collectsummary.php RPM Upgrade # rpm -Uvh cnmonitor noarch.rpm Your old configuration file is now saved as config.php.rpmsave. Convert old configuration file to XML format Run the following script to convert your configuration or update your new configuration template (config.xml) file manually.

7 7 # cd /usr/share/cnmonitor/bin # php convertconfig.php You should end up with the following output on successful conversion: Configuration converted to XML format New Configuration file:../config/config.xml Old Configuration file:../config/config.php.rpmsave Configuration template:../config/config.xml.template Please verify and test your configuration! Consult installation documentation for more information Now edit config.xml and verify your environment. The config.php should only contain a reference to use XML. Optionally verify the file permissions for your configuration files: # chown -R root:apache /etc/cnmonitor # chmod R 650 /etc/cnmonitor Remove old configuration files When you have verified that the new configuration file is working: # rm /etc/cnmonitor/config.php.rpmsave # rm -rf /tmp/cnmonitorconfig Database Update If upgrading from a version older then version (1.3), download previous released installation notes and read the upgrade sections, as there might exist database updates. Enable Monitoring Scripts Enable all configured monitoring scripts: # crontab -e Remove added comment # character: */30 * * * * cd /usr/share/cnmonitor/bin;php collectdb.php */10 * * * * cd /usr/share/cnmonitor/bin;php collectservermessage.php 0 4 * * 0 cd /usr/share/cnmonitor/bin;php collectsummary.php Upgrade should now be completed! Uninstall RPM Uninstallation Uninstall RPM Package: # rpm -e cnmonitor Remove configuration files located at: /etc/cnmonitor.

8 8 Manual *nix Uninstallation # cd /usr/share # rm -rf cnmonitor # cd /etc # rm -rf cnmonitor

9 9 Configuration Configuration file located at /etc/cnmonitor/config.xml. Configuration files for special pages can also be found in the config directory. Understanding configuration levels There are four levels where you can set configurable options 1. Not inherited options Configurable options that can t be inherited for environment and server configurations <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> <language>en</language> <database> <username>root</username> <password></password> <host>localhost</host> <database>cnmonitor</database> <type>mysql</type> </database> </general> </cnmonitor> Language Default language to use for. <language> en en sv Database Optional but recommended database configuration for to collect historical events. The following options should be enclosed within a <database> section. <username> (username to be used to access your SQL database) <password> (password to be used to access your SQL database) <host> (datbase hostname) <database> Database name. Use cnmonitor as default value. <type> Database type. Use mysql for MySQL <port> 3306 (MySQL) 5432 (PostgreSQL) or pqsql for PostgreSQL Optional. The database port.

10 10 Other databases may be supported if you have PHP dbx support: 2. General Environment Level All configurable options will be applied on all servers within all environments. <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> <environment> <wwwaddress> </environment> </general> </cnmonitor> Everything you add to this section will be inherited for your environments and servers. I.e. setting <dn> and <password> within the general environment section will be used for all servers within all environments (if you don t configure these options on environment or server level). There are still some options that are recommended to configure on this level. Web Address Optional WWW address to reach your deployment. Used for links in weekly mail reports. <wwwaddress> (URL to your web address) Mail From Optional mail from address when sending mails from <mailfrom> (Mail from address when/if sending mail) Mail To Optional mail to addresses when sending mails from <mailto> (Comma separated list of mail addresses to send mail to) 3. Environment Level Environment sections. You can configure as many environment sections as you need on this level. Name is required for each environment.

11 11 All configurable options will be applied on all s within the environment. <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> </general> <environment> <name>openldap</name> <loadbalancer>ldap.itd.umich.edu</loadbalancer> <description>using Cluster ldap.itd.umich.edu</description> <url> <name>donniebrasco.dir.itd.umich.edu</name> <description>description server 1</description> <name>heat.dir.itd.umich.edu</name> <description>description server 2</description> </environment> </cnmonitor> Environment Name Required option on this level. Your environment must have a name. <name> (Name of environment) 4. Server Level Configuration options for each server. Name is required for each server. <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> </general> <environment> <name>openldap</name> <loadbalancer>ldap.itd.umich.edu</loadbalancer> <description>using Cluster ldap.itd.umich.edu</description> <url> <name>donniebrasco.dir.itd.umich.edu</name> <description>description server 1</description> <name>heat.dir.itd.umich.edu</name> <description>description server 2</description> </environment> </cnmonitor> Servername Server name (hostname) for each.

12 12 This is the only required option needed to configure servers. Additional options such as <dn>, <password> and <scheme> are recommended to secure your connection and to be able to read monitor suffixes. <name> (Name of server) Configuration Examples Simple configuration to get started Example with one environment and two servers configured. Environment name is: OpenLDAP Cluster Address is: ldap.itd.umich.edu Two servers with anonymous read access has been configured: donniebrasco.dir.itd.umich.edu heat.dir.itd.umich.edu <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> <language>en</language> <environment> </environment> </general> <environment> <name>openldap</name> <loadbalancer>ldap.itd.umich.edu</loadbalancer> <name>donniebrasco.dir.itd.umich.edu</name> <name>heat.dir.itd.umich.edu</name> </environment> </cnmonitor> Simple configuration with database support for one environment This example configures a PostgreSQL database, configures mail reporting and creates one environment with two servers. By using a similar configuration you will use as much as possible of. <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> <language>en</language> <database> <username>postgres</username> <password>secret</password> <host>localhost</host> <database>cnmonitor</database> <type>pqsql</type> </database> <environment> <wwwaddress> <mailfrom>serveradmin@localhost.com</mailfrom> <mailto>my .mydomain.com</mailto> </environment> </general> <environment>

13 13 <name>openldap</name> <loadbalancer>ldap.itd.umich.edu</loadbalancer> <name>donniebrasco.dir.itd.umich.edu</name> <name>heat.dir.itd.umich.edu</name> </environment> </cnmonitor> Two environments In the next example we are authenticating using a monitoring user over LDAPS. The configuration options have been added to the environment section as the username and password is equal on both servers. <?xml version="1.0" encoding="utf-8"?> <cnmonitor> <general> <language>en</language> <database> <username>postgres</username> <password>secret</password> <host>localhost</host> <database>cnmonitor</database> <type>pqsql</type> </database> <environment> <wwwaddress> <mailfrom>serveradmin@localhost.com</mailfrom> <mailto>my .mydomain.com</mailto> </environment> </general> <environment> <name>ldap.itd.umich.edu</name> <name>donniebrasco.dir.itd.umich.edu</name> <name>heat.dir.itd.umich.edu</name> </environment> <environment> <name>test Servers</name> <dn>uid=monitor.cnmonitor,ou=people,dc=localdomain</dn> <password>secret</password> <scheme>ldaps</scheme> <name> </name> <name> </name> </environment> </cnmonitor> All Configurable Options General Configuration options for <general> section.

14 14 Language Default language to use for. <language> en en sv More language files are appreciated. Files are located in the www/language directory. Stylesheet Default style to use for. <stylesheet>./style/default.css (If you want to use a different stylesheet) Encryption If you want to encrypt passwords for configuration file. Requires PHP version 5.3. You can check if encryption is available in your environment by running the encrypt password file available in the bin directory: $ php encryptpassword.php <encryption> AES CBC (Running the script bin/encryptpassword.php will display all possible values for your server) Database Optional but recommended database configuration for to collect historical events. The following options should be enclosed within a <database> section. <username> (username to be used to access your SQL database) <password> (password to be used to access your SQL database) <host> (datbase hostname) <database> Database name. Use cnmonitor as default value. <type> Database driver. Use mysql for MySQL <port> 3306 (MySQL) 5432 (PostgreSQL) or pqsql for PostgreSQL Optional. The database port. Mail / Error Reporting Configuration options for <general> / <environment> section.

15 15 Web Address Optional WWW address to reach your deployment. Used for links in weekly mail reports. <wwwaddress> (URL to your web address) Mail From Optional mail from address when sending mails from <mailfrom> (Mail from address when/if sending mail) Mail To Optional mail to addresses when sending mails from <mailto> (Comma separated list of mail addresses to send mail to) Run Script Run script option will trigger a script with the following values: /path/to/script.sh error_key servername optional message This option can be set on all levels (i.e. set on server level if you want to trigger a different script for a specific server). This option does not require mail functionality to be enabled. <runscript> /path/to/script.sh Environment and Server, Name Options Configuration options for <environment> and sections. Environment or Server name Environment or server name. Environment names should not be the same name as a server name <name> (Environment or servername) Server Alias Server alias. Will never be used for contacting your LDAP host. Instead it is used for host matching if server returns another hostname i.e. DNS CNAME instead of A- Record. <alias> (alternative hostname) Description Short description of your server. Should not include special characters such as $,, <, >.

16 16 <description> (description) URL URL for more information about the environment or server. Should not include special characters such as $,, <, >. <url> ( Load Balancer Set cluster address as value. By default the environment name is used as cluster name. <loadbalancer> (clusteraddress.mydomain.com) Environment and Server, Connection Options Authentication Distinguished Name Default authentication user Distinguished Name. <dn> (I.e. uid=monitoring.user,ou=people, dc=mydomain,dc=com) Password Default authentication user Password <password> (password for <dn>) Encrypted Password Encrypted authentication user password using the script encryptpassword.php. Encrypting passwords for requires PHP version 5.3 <encpassword> (encrypted password for <dn>) Port Set this value if your server isn t running standard LDAP port 389 <port> 389 Secure / Secondary Port Set this value if your server isn t running standard LDAPS port 636 <port> 636 TLS Set this value to on if you add dn and password and want to run your connection secure over standard LDAP port using TLS <tls> off LDAP Scheme

17 17 Set this value to ldaps if you add dn and password and want to run your connection over LDAPS <scheme> ldap ldap ldaps DN By Filter Get DN by filter for authentication. Use this property if you want to authenticate against your LDAP server by entering an ID instead of complete distinguished name. Example authenticating using employeenumber: (employeenumber=?) Default if not entering DN is finding DN by uid or cn. <dnbyfilter> ( (uid=?)(cn=?)) Environment and Server, Monitor and History Options Disable collect of monitoring history Disable collecting monitoring information about servers. Set value 1. This will also cause not to load and verify LDAP database connectivity on index page. <nocollect> Environment and Server, Graph and Chart Options Default Line Graph Style Default value if you want to use Adobe flash based graph or dynamic picture graph. monitorstyle image flash image Line Graph Height and Width Setting these values changes the default size of monitoring graphs. linegraphwidth 1000 linegraphheight 300 Combine Server Result Set If you by default want to combine server result set to one single line graph. monitorcombine Number of Servers in a row displayed on first page Only to be changed if you have a big monitor or high screen resolution. view_environments_limit

18 18 Environment and Server, Query Options Query Default base suffix Set this value if you prefer to set a default base suffix. <querysuffix> Query Return Attributes Set this value if you prefer to have a default query return attribute list <queryreturn> Query Filter Set this value if you prefer to have a default query filter <queryfilter> Environment and Server, Replication Options Replication Ignore Consumer Lookup (CSN) Improves performance but skips consumer replication status. Replication page works even if replicas are unresponsive. Set value 1 on suppliers/masters to enable this option. <replication_ignoreconsumer> 0 1 Environment and Server, Cache and Log Options Disable connection cache Enable connection cache. Adding this option will make faster but won t ensure that your LDAP servers become unavailable. <cache_connection> Log LDAP Enable logging of LDAP calls. Recommended only for debugging your LDAP connections and. Set log file path as value i.e. /tmp/cnmonitor/ldaplog.log <logldap> ( Logfile location ) Log

19 19 Logs selected parts of. Should by default be turned off but if you experience any problems we might ask you to enable it for debugging purposes. Log file available for each session: /tmp/cnmonitor/<your session id>_log.tmp <loglevel> 0 0 = No Logs activated 1-9 = Log enabled in debug mode Features See document Guide for a complete list of features. Monitoring Overview of what can monitor depending on Directory Server. Information RedHat/389 Open DAP Sun Novell IBM Connection Peak x x Threads x (current) x (max) x x Current x x x x Connections Total Connections x x x x Entries Sent x x x x Bytes Sent x x x x Start Time x X x x Current Time x x x x Anonymous Binds x (Included in Simple Binds) x (Included in UnAuthenticated Binds) (Actual all completed binds) UnAuthenticated x (Included in x x Binds Simple Binds) Simple Binds x x x x Strong Binds x (Included in x x Simple Binds) Bind Security x x x Errors Whole Search tree op. x x x x (Included as Search Op.) Search op. x x x x x Compare op. x x x x X Add op. x x x x X Modify op. x x x x X ModifyRDN op. x x x x X Remove op. x x x x X In op. x x x x x Errors x x x (As slapderrorlog messages) Security Errors x x x Known Problems If you notice any problems please send a mail to monitorldap@gmail.com if you have any questions or want to report a bug.

20 20 Releases 2.0 New Major Release XML based configuration file, added IBM Tivoli Monitoring, Open LDAP replication monitoring, flash graph support and layout changes. 1.3 New Functionality Release This release contains mobile support, improved replication verification, attribute protection for query, layout changes and code refactoring. 1.2 New Functionality Release This release contains improved replication view, the possibility to compare entries between servers, server alias support, unauthenticated binds support, live view for pie charts... and some bugfixes Bugfix Release Bugfixes for 1.1. Improved authentication dialog, smaller GUI changes and support for IE New Functionality Release This release contains a new environmental view, a new historical summary, a new authentication dialog, new dynamic query configuration, temporarily adding servers, and supported schema attribute querying Bugfix and FHS file layout This release contains minor bugfixes and improved documentation. The RPM- based installation is now following FHS (the Filesystem Hierarchy Standard). Read the PDF file before upgrading. 1.0 Initial Release This release has the ability to view environment and server availability, perform live monitoring, collect and view performance load and trends, verify replication status, cache sizes, schema, and load balancing, and retrieve a weekly mail report. It has an advanced query editor and advanced LDAP querying. Contact Information Download Updates Updates are available at project page: Donate using PayPal If you appreciate. Feel free to donate any amount to support future development of this software and show your appreciation.

21 21 Contact Developer(s) You can contact the developer of this software by sending an to: Andreas Andersson Or stay in touch using the forum on the project site:

22 22 Appendix Deprecated or removed configuration options replication:<suffix DN> no 24 Set acceptable replication time in hours. A warning will be displayed if replication hasn t been done after configured value. Removed. Instead this option can be set as: ACCEPTABLE_DELAY option in the configuration file for replication: config/replication.php

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v3.2

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v3.2 1 Installation and Configuration v3.2 2 1. Introduction... 3 2. Installation... 3 2.1. Prerequisites... 3 2.2. Linux RPM Installation... 4 2.3. Manual *nix Installation... 5 2.4. Manual Windows Installation...

More information

Server Installation/Upgrade Guide

Server Installation/Upgrade Guide Server Installation/Upgrade Guide System Version 3.8 2001-2009 Echo 360, Inc. Echo360 is a trademark of Echo360, Inc. Echo360 is a registered trademark of Echo360 Inc. in Australia. All other trademarks

More information

Tonido Cloud Admin Guide

Tonido Cloud Admin Guide CODELATHE LLC Tonido Cloud Admin Guide Installing and Managing Tonido Cloud CodeLathe LLC 10/27/2012 (c) CodeLathe LLC 2012. All Rights Reserved Contents 1. Introduction... 3 2. Pre-Requisites... 3 3.

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

Configuring MailArchiva with Insight Server

Configuring MailArchiva with Insight Server Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any

More information

Bubble Code Review for Magento

Bubble Code Review for Magento User Guide Author: Version: Website: Support: Johann Reinke 1.1 https://www.bubbleshop.net bubbleshop.net@gmail.com Table of Contents 1 Introducing Bubble Code Review... 3 1.1 Features... 3 1.2 Compatibility...

More information

Tivoli Access Manager Agent for Windows Installation Guide

Tivoli Access Manager Agent for Windows Installation Guide IBM Tivoli Identity Manager Tivoli Access Manager Agent for Windows Installation Guide Version 4.5.0 SC32-1165-03 IBM Tivoli Identity Manager Tivoli Access Manager Agent for Windows Installation Guide

More information

PineApp Surf-SeCure Quick

PineApp Surf-SeCure Quick PineApp Surf-SeCure Quick Installation Guide September 2010 WEB BASED INSTALLATION SURF-SECURE AS PROXY 1. Once logged in, set the appliance s clock: a. Click on the Edit link under Time-Zone section.

More information

Configuring idrac6 for Directory Services

Configuring idrac6 for Directory Services Configuring idrac6 for Directory Services Instructions for Setting Up idrac6 with Active Directory, Novell, Fedora, OpenDS and OpenLDAP Directory Services. A Dell Technical White Paper Dell Product Group

More information

ABS Manual Installation Guide

ABS Manual Installation Guide This document includes all the information required to install, upgrade and configure the Amberdms Billing System manually on nonoffically supported platforms. If you are a user of RHEL, CentOS, Debian

More information

IIS SECURE ACCESS FILTER 1.3

IIS SECURE ACCESS FILTER 1.3 OTP SERVER INTEGRATION MODULE IIS SECURE ACCESS FILTER 1.3 Copyright, NordicEdge, 2006 www.nordicedge.se Copyright, 2006, Nordic Edge AB Page 1 of 14 1 Introduction 1.1 Overview Nordic Edge One Time Password

More information

SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM

SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM Prepared By: Leigh Moulder, SRI International leigh.moulder@sri.com TABLE OF CONTENTS Table of Contents. 1 Document Change Log 2 Solr

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

LAMP Quickstart for Red Hat Enterprise Linux 4

LAMP Quickstart for Red Hat Enterprise Linux 4 LAMP Quickstart for Red Hat Enterprise Linux 4 Dave Jaffe Dell Enterprise Marketing December 2005 Introduction A very common way to build web applications with a database backend is called a LAMP Stack,

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

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 by SK Cacti is an open source, front-end for the data logging tool called RRDtool. It is a web based network monitoring

More information

i2b2 Installation Guide

i2b2 Installation Guide Informatics for Integrating Biology and the Bedside i2b2 Installation Guide i2b2 Server and Clients Document Version: 1.7.00-003 Document Management Revision Number Date Author Comment 1.7.00-001 03/06/2014

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

GroundWork Monitor Open Source 5.1.0 Installation Guide

GroundWork Monitor Open Source 5.1.0 Installation Guide GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version

More information

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:

More information

HOWTO: Installation of Microsoft Office SharePoint Server 2007

HOWTO: Installation of Microsoft Office SharePoint Server 2007 HOWTO: Installation of Microsoft Office SharePoint Server 2007 PREREQUISITES... 2 STEP -1: DO I NEED AN ACTIVE DIRECTORY... 2 STEP 0: INSTALL OS, INCLUDING ALL SERVICE PACKS AND PATCHES... 2 STEP 1: CREATE

More information

User Service and Directory Agent: Configuration Best Practices and Troubleshooting

User Service and Directory Agent: Configuration Best Practices and Troubleshooting User Service and Directory Agent: Configuration Best Practices and Troubleshooting Websense Support Webinar March 2011 web security data security email security Support Webinars 2009 Websense, Inc. All

More information

Business Interaction Server. Configuration Guide. 10300685-000 Rev A

Business Interaction Server. Configuration Guide. 10300685-000 Rev A Business Interaction Server Configuration Guide 10300685-000 Rev A 2008 Kofax Image Products, Inc., 16245 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license

More information

Architecture and Mode of Operation

Architecture and Mode of Operation Open Source Scheduler Architecture and Mode of Operation http://jobscheduler.sourceforge.net Contents Components Platforms & Databases Architecture Configuration Deployment Distributed Processing Security

More information

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors) Rancid Server Build and Operation Overview (v0.3) (This is being from memory so expect some errors) Installation The installation will cover the setup and configuration of a RANCID server using CentOS

More information

CommandCenter Secure Gateway

CommandCenter Secure Gateway CommandCenter Secure Gateway Quick Setup Guide for CC-SG Virtual Appliance and lmadmin License Server Management This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway.

More information

Nagios. Contents. From SME Server. Maintainer

Nagios. Contents. From SME Server. Maintainer Nagios From SME Server Languages: English Not reviewed: This howto or contrib has not been reviewed and might contain code that could harm your installation. For more information on the review process

More information

Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist.

Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist. Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist. Outline 1. What is authentication? a. General Informations 2. Authentication Systems in Linux a. Local

More information

AWS Schema Conversion Tool. User Guide Version 1.0

AWS Schema Conversion Tool. User Guide Version 1.0 AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may

More information

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Newton Linux User Group Graphing SNMP with Cacti and RRDtool Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance

More information

Using RADIUS Agent for Transparent User Identification

Using RADIUS Agent for Transparent User Identification Using RADIUS Agent for Transparent User Identification Using RADIUS Agent Web Security Solutions Version 7.7, 7.8 Websense RADIUS Agent works together with the RADIUS server and RADIUS clients in your

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

www.novell.com/documentation Administration Guide GroupWise Mobility Service 2.1 February 2015

www.novell.com/documentation Administration Guide GroupWise Mobility Service 2.1 February 2015 www.novell.com/documentation Administration Guide GroupWise Mobility Service 2.1 February 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this

More information

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System Setting up a Sitellite development environment on Windows Sitellite Content Management System Introduction For live deployment, it is strongly recommended that Sitellite be installed on a Unix-based operating

More information

Alert Notification of Critical Results (ANCR) Public Domain Deployment Instructions

Alert Notification of Critical Results (ANCR) Public Domain Deployment Instructions Alert Notification of Critical Results (ANCR) Public Domain Deployment Instructions Server Prerequisites Internet Information Server (IIS). It may be enabled in Windows Features (see Enabling IIS section).

More information

vtiger CRM 4.2 Installation Guide for Linux OS

vtiger CRM 4.2 Installation Guide for Linux OS - 1 - vtiger CRM 4.2 Installation Guide for Linux OS (Revision: 4.2) - 2 - Contents 1. System Requirements...3 2. Linux Dependency Packages...4 3. Installation Prerequisites...6 4. Installing vtiger CRM...7

More information

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server

More information

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.1 D14465.06 December 2013 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration

More information

OpenMind: Know Your Customer

OpenMind: Know Your Customer OpenMind: Know Your Customer Contents About OpenMind... 3 Feedback... 3 A Request... 3 Installation... 3 Install Ruby and Ruby on Rails... 4 Get the Code... 4 Create the Database Schema... 4 Update database.yml...

More information

Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0)

Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0) Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0) Overview There are a myriad of ticket systems available to customers for operational incident management

More information

ClickCartPro Software Installation README

ClickCartPro Software Installation README ClickCartPro Software Installation README This document outlines installation instructions for ClickCartPro Software. SOFTWARE REQUIREMENTS The following requirements must be met by the webserver on which

More information

Automatic updates for Websense data endpoints

Automatic updates for Websense data endpoints Automatic updates for Websense data endpoints Topic 41102 / Updated: 25-Feb-2014 Applies To: Websense Data Security v7.6, v7.7.x, and v7.8 Endpoint auto-update is a feature that lets a network server push

More information

"Charting the Course... Enterprise Linux Networking Services Course Summary

Charting the Course... Enterprise Linux Networking Services Course Summary Course Summary Description This an expansive course that covers a wide range of network services useful to every organization. Special attention is paid to the concepts needed to implement these services

More information

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

Expresso Quick Install

Expresso Quick Install Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before

More information

Installation Guide. Release 3.1

Installation Guide. Release 3.1 Installation Guide Release 3.1 Publication number: 613P10303; September 2003 Copyright 2002-2003 Xerox Corporation. All Rights Reserverved. Xerox, The Document Company, the digital X and DocuShare are

More information

IGEL Universal Management. Installation Guide

IGEL Universal Management. Installation Guide IGEL Universal Management Installation Guide Important Information Copyright This publication is protected under international copyright laws, with all rights reserved. No part of this manual, including

More information

Installation and Control in Linux

Installation and Control in Linux IceWarp Server Installation and Control in Linux Version 10 Printed on 17 August, 2009 i Contents IceWarp Server Installation and Control in Linux 1 V10 New Features... 2 Differences between Windows and

More information

IBM WebSphere Portal Integrator for SAP

IBM WebSphere Portal Integrator for SAP Introduction This article describes the setup of a simple scenario of the IBM WebSphere Portal Integrator for SAP to give you a quick start. It uses the standard page structure as it is created during

More information

XCloner Official User Manual

XCloner Official User Manual XCloner Official User Manual Copyright 2010 XCloner.com www.xcloner.com All rights reserved. xcloner.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What is XCloner?

More information

Installing and Running MOVES on Linux

Installing and Running MOVES on Linux Installing and Running MOVES on Linux MOVES Workgroup Wednesday June 15, 2011 Gwo Shyu Dan Stuart USEPA Office of Transportation & Air Quality Assessment and Standards Division 2000 Traverwood Drive, Ann

More information

Tivoli Monitoring for Databases: Microsoft SQL Server Agent

Tivoli Monitoring for Databases: Microsoft SQL Server Agent Tivoli Monitoring for Databases: Microsoft SQL Server Agent Version 6.2.0 User s Guide SC32-9452-01 Tivoli Monitoring for Databases: Microsoft SQL Server Agent Version 6.2.0 User s Guide SC32-9452-01

More information

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Installation Guide Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Table of Contents 1. Basic Installation of OpenNMS... 1 1.1. Repositories for

More information

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved.

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release date: August 28, 2014 This build was developed and tested on: -

More information

F-Secure Internet Gatekeeper

F-Secure Internet Gatekeeper F-Secure Internet Gatekeeper TOC F-Secure Internet Gatekeeper Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper...5 1.1 Features...6 Chapter 2: Deployment...8 2.1 System requirements...9 2.2

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

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

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 Mathieu SCHIRES Version: 0.96.1 Published January 19, 2015 http://www.inuvika.com Contents 1 Prerequisites: RHEL 6 3 1.1 System Requirements...................................

More information

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved. Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using

More information

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Scott Taylor Tailor Made Software July 24, 2011 Version 1.2 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

Synchronization Agent Configuration Guide

Synchronization Agent Configuration Guide SafeNet Authentication Service Synchronization Agent Configuration Guide 1 Document Information Document Part Number 007-012476-001, Revision A Release Date July 2014 Trademarks All intellectual property

More information

Tableau Spark SQL Setup Instructions

Tableau Spark SQL Setup Instructions Tableau Spark SQL Setup Instructions 1. Prerequisites 2. Configuring Hive 3. Configuring Spark & Hive 4. Starting the Spark Service and the Spark Thrift Server 5. Connecting Tableau to Spark SQL 5A. Install

More information

Cloud Homework instructions for AWS default instance (Red Hat based)

Cloud Homework instructions for AWS default instance (Red Hat based) Cloud Homework instructions for AWS default instance (Red Hat based) Automatic updates: Setting up automatic updates: by Manuel Corona $ sudo nano /etc/yum/yum-updatesd.conf Look for the line that says

More information

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

More information

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup OpenEyes - Windows Server Setup Editors: G W Aylward Version: 0.9: Date issued: 4 October 2010 1 Target Audience General Interest Healthcare managers Ophthalmologists Developers Amendment Record Issue

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

42goISP Documentation

42goISP Documentation 42goISP Documentation 42goISP Documentation I Table of Contents General...1 1 What is 42goISP?...1 2 Terms and structure of the manual...1 3 Installation/Upgrade/Deinstallation...1 3.1 Installation...1

More information

Sample. Configuring the RADIUS Server Integrated with ProCurve Identity Driven Manager. Contents

Sample. Configuring the RADIUS Server Integrated with ProCurve Identity Driven Manager. Contents Contents 4 Configuring the RADIUS Server Integrated with ProCurve Identity Driven Manager Contents Overview...................................................... 4-3 RADIUS Overview...........................................

More information

Enterprise Reporting Server v3.5

Enterprise Reporting Server v3.5 Enterprise Reporting Server v3.5 Administrator s Guide January 2001 Edition 2001 WebTrends Corporation Disclaimer WebTrends Corporation makes no representations or warranties with respect to the contents

More information

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

OpenPro ERP Software Installation Guide REDHAT LINUX

OpenPro ERP Software Installation Guide REDHAT LINUX OpenPro ERP Software Installation Guide REDHAT LINUX 10061 Talbert Ave Suite 228 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com infoop@openpro.com OpenPro Installation

More information

Integrating WebSphere Portal V8.0 with Business Process Manager V8.0

Integrating WebSphere Portal V8.0 with Business Process Manager V8.0 2012 Integrating WebSphere Portal V8.0 with Business Process Manager V8.0 WebSphere Portal & BPM Services [Page 2 of 51] CONTENTS CONTENTS... 2 1. DOCUMENT INFORMATION... 4 1.1 1.2 2. INTRODUCTION... 5

More information

IBM Security QRadar SIEM Version 7.1.0 MR1. Log Sources User Guide

IBM Security QRadar SIEM Version 7.1.0 MR1. Log Sources User Guide IBM Security QRadar SIEM Version 7.1.0 MR1 Log Sources User Guide Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 108. Copyright

More information

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted

More information

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names DataCove DT Active Directory Authentication In Active Directory (AD) authentication mode, the server uses NTLM v2 and LDAP protocols to authenticate users residing in Active Directory. The login procedure

More information

Managing SAS Web Infrastructure Platform Data Server High-Availability Clusters

Managing SAS Web Infrastructure Platform Data Server High-Availability Clusters ABSTRACT Paper SAS1776-2015 Managing SAS Web Infrastructure Platform Data Server High-Availability Clusters Ken Young, SAS Institute Inc. The SAS Web Application Server is a lightweight server that provides

More information

1. InfoVaultz Administration Guide... 3 1.1 InfoVaultz Site Setup... 3 1.1.1 Logging as Administrator... 4 1.1.1.1 Logging In... 4 1.1.1.

1. InfoVaultz Administration Guide... 3 1.1 InfoVaultz Site Setup... 3 1.1.1 Logging as Administrator... 4 1.1.1.1 Logging In... 4 1.1.1. 1. InfoVaultz Administration Guide................................................................................. 3 1.1 InfoVaultz Site Setup.....................................................................................

More information

The course will be run on a Linux platform, but it is suitable for all UNIX based deployments.

The course will be run on a Linux platform, but it is suitable for all UNIX based deployments. Linux Apache Web Server Administration Course Description: The Linux Apache Web Server Administration course is aimed at technical staff who will be responsible for installing, configuring and maintaining

More information

FERMILAB CENTRAL WEB HOSTING SINGLE SIGN ON (SSO) ON CWS LINUX WITH SAML AND MOD_AUTH_MELLON

FERMILAB CENTRAL WEB HOSTING SINGLE SIGN ON (SSO) ON CWS LINUX WITH SAML AND MOD_AUTH_MELLON FERMILAB CENTRAL WEB HOSTING SINGLE SIGN ON (SSO) ON CWS LINUX WITH SAML AND MOD_AUTH_MELLON Contents Information and Security Contacts:... 3 1. Introduction... 4 2. Installing Module... 4 3. Create Metadata

More information

IBM Cloud Manager with OpenStack

IBM Cloud Manager with OpenStack IBM Cloud Manager with OpenStack Download Trial Guide Cloud Solutions Team: Cloud Solutions Beta cloudbta@us.ibm.com Page 1 Table of Contents Chapter 1: Introduction...3 Development cycle release scope...3

More information

MySQL Backups: From strategy to Implementation

MySQL Backups: From strategy to Implementation MySQL Backups: From strategy to Implementation Mike Frank Senior Product Manager 1 Program Agenda Introduction The 5 Key Steps Advanced Options References 2 Backups are a DBAs Top Priority Be Prepared

More information

Moving to Plesk Automation 11.5

Moving to Plesk Automation 11.5 Moving to Plesk Automation 11.5 Last updated: 2 June 2015 Contents About This Document 4 Introduction 5 Preparing for the Move 7 1. Install the PA Moving Tool... 8 2. Install Mail Sync Software (Windows

More information

Configuring and Using the TMM with LDAP / Active Directory

Configuring and Using the TMM with LDAP / Active Directory Configuring and Using the TMM with LDAP / Active Lenovo ThinkServer April 27, 2012 Version 1.0 Contents Configuring and using the TMM with LDAP / Active... 3 Configuring the TMM to use LDAP... 3 Configuring

More information

Oracle Net Service Name Resolution

Oracle Net Service Name Resolution Oracle Net Service Name Resolution Getting Rid of the TNSNAMES.ORA File! Simon Pane Oracle Database Principal Consultant March 19, 2015 ABOUT ME Working with the Oracle DB since version 6 Oracle Certified

More information

Magento Search Extension TECHNICAL DOCUMENTATION

Magento Search Extension TECHNICAL DOCUMENTATION CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the

More information

GeBro-BACKUP. Die Online-Datensicherung. Manual Pro Backup Client on a NAS

GeBro-BACKUP. Die Online-Datensicherung. Manual Pro Backup Client on a NAS GeBro-BACKUP Die Online-Datensicherung. Manual Pro Backup Client on a NAS Created and tested on a QNAP TS-559 Pro Firmware 4.0.2 Intel x86 Architecture Default hardware configuration OBM v6.15.0.0 Last

More information

EUROPEAN MIDDLEWARE INITIATIVE

EUROPEAN MIDDLEWARE INITIATIVE EUROPEAN MIDDLEWARE INITIATIVE GRIDSITE ADMINISTRATOR GUIDE Document version: 2.0.0-1 EMI Component Version: 1.x, 2.x 1/9 GridSite Administrator Guide This work is co-funded by the European Commission

More information

CipherMail Gateway Upgrade Guide

CipherMail Gateway Upgrade Guide CIPHERMAIL EMAIL ENCRYPTION CipherMail Gateway Upgrade Guide March 26, 2015, Rev: 9125 Copyright 2008-2015, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 3 2 Backup 3 3 Upgrade procedure 3

More information

nitrobit update server

nitrobit update server nitrobit update server Administrator's Guide 2011 analytiq consulting gmbh. All rights reserved. Page 2 nitrobit update server Administrator's Guide Content I. Introduction... 4 Overview... 4 Components

More information

NetIQ Identity Manager Setup Guide

NetIQ Identity Manager Setup Guide NetIQ Identity Manager Setup Guide July 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

EMC Avamar. Backup Clients User Guide. Version 7.2 302-001-792 REV 02

EMC Avamar. Backup Clients User Guide. Version 7.2 302-001-792 REV 02 EMC Avamar Version 7.2 Backup Clients User Guide 302-001-792 REV 02 Copyright 2001-2015 EMC Corporation. All rights reserved. Published in USA. Published August, 2015 EMC believes the information in this

More information

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...

More information

Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide

Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide Dell KACE K1000 System Management Appliance Version 5.4 Service Desk Administrator Guide October 2012 2004-2012 Dell Inc. All rights reserved. Reproduction of these materials in any manner whatsoever without

More information

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software Installation Guide McAfee VirusScan Enterprise for Linux 1.9.0 Software COPYRIGHT Copyright 2013 McAfee, Inc. Do not copy without permission. TRADEMARK ATTRIBUTIONS McAfee, the McAfee logo, McAfee Active

More information