EQUELLA. Clustering Configuration Guide. Version 6.0

Size: px
Start display at page:

Download "EQUELLA. Clustering Configuration Guide. Version 6.0"

Transcription

1 EQUELLA Clustering Configuration Guide Version 6.0

2 Document History Document No. Reviewed Finalised Published 1 17/10/ /10/ /10/2012 October 2012 edition. Information in this document may change without notice. EQUELLA and its accompanying documentation are furnished under a non-disclosure, evaluation agreement or licence agreement. Copying, storing, transmitting, or otherwise reproducing the software or this document in any form without written permission from Pearson is strictly forbidden. All products, other than EQUELLA, named in this document are the property of their respective owners. Property of: Pearson Level 1, 11 Elizabeth Street Hobart, Australia, 7000 Copyright 2012 Pearson Contact documentation@equella.com for matters relating to documentation.

3 Table of Contents EQUELLA clustering overview... 4 Clustering environment... 4 Pre-clustering checklist... 6 Configure EQUELLA on the first host... 8 Edit the EQUELLA configuration files... 8 Edit the Tomcat configuration files... 8 Configure EQUELLA on subsequent hosts...10 Test the clustered environment...10 Display each server s unique ID...10 Enable Multicast...10 Test cluster node server configuration...10 Test server fail over...10 Cluster testing tool...11 Check Lucene indexes using Luke...16 Appendix A...17 Configure Apache as a load balancer...17 Contact Client Support...19

4 EQUELLA clustering overview The purpose of this guide is to provide system administrators with an understanding of the EQUELLA clustering process. EQUELLA clustering involves two or more EQUELLA instances sharing a common database and filestore behind a load balancer. The load balancer directs clients to one of the members (EQUELLA instances) of the cluster. A simple clustering scheme is shown in Figure 1 Example simple clustering scheme Each of these components will typically be on dedicated hardware. Clustering environment Prior to setting up clustering the following conditions must be met: EQUELLA must be installed on all cluster nodes, but not started. If you are using Apache as your load balancer and Apache is installed on the same hardware as one of your EQUELLA nodes, then you must not install bind EQUELLA s Tomcat webserver to port 80, because Apache will need that port. The network switch responsible for the LAN segments(s) on which the clusters are communicating must have multicast communication enabled. If it is not, the cluster nodes will not be able to communicate with each other. When clustered, EQUELLA requires a shared filestore to house the cluster file repository. This filestore must be ready and available to all hardware nodes in the cluster prior to operating EQUELLA. If each node has a unique device path to the common filestore, those device paths should be noted for ease of configuration. Once EQUELLA is installed on all hosts of the cluster, the network file share must be determined. Also ensure that the user who is designated to start EQUELLA services on each node is the same (in Windows, this must be a network user) and that the user has write permissions to the filestore (on each node).

5 EQUELLA must have access through any firewalls. It is recommended that you fill out the Pre-clustering checklist on page 6.

6 Pre-clustering checklist Prior to setting up an EQUELLA clustered install, it is recommended that you fill out the following checklist so that you know what goes where and on what port. The Variable Names in the table will be used as the variable values in the configuration file examples in this guide. Variable Name $filestore $fullserverurl Where the Variable Name will be added File: mandatoryconfig.properties Variable: filestore.root File: mandatoryconfig.properties Variable: admin.url Explanation and notes This is the network location of the shared file store, it is in the format of: //$FileStoreHost/$FileStoreShareName/ For example, if fileserver was sharing a file store with a sharename of equellafiles, then this would be: //fileserver/equellafiles/. (NOTE: The name is configured when you share the folder.) To test access to the filestore using Windows, type the path in the Run command using backslashes e.g.: \\fileserver\equellafiles This is the full URL of the cluster server. This name identifies the cluster and must be unique. $clustergroupname File: mandatory-configproperties Variable: cluster.group.name This is the Cluster Group Name. It is the unique name identifying the cluster (not to be confused with DNS name), e.g: CLUSTER_GROUP

7 Variable Name Where the Variable Name will be added Explanation and notes $currentclusternodename File: server.xml Variable: jvmroute The jvmroute variable should only be set when using Apache HTTPD with AJP as the load balancer. $currenthostipaddress File: optional-config.properties Variable: channelservice.bindaddress This is IP address of the host being currently configured. (It is the value in the Bind Addr field of the EQUELLA Cluster Messaging Tester dialog.) $multicastaddress File: optional-config.properties Variable: channelservice.multicastaddress This is the multicast address on which your clusters communicate. By default, this is (It is the value in the Multicast Addr field in the EQUELLA Cluster Messaging Tester dialog.) $multicastport File: optional-config.properties Variable: channelservice.multicastport This is the multicast port on which events are communicated between clusters. If not specified, is used. Ensure this port is free in your O/S. (It is the value in the Multicast Port field in the EQUELLA Cluster Messaging Tester dialog.)

8 Configure EQUELLA on the first host The following sections describe configuration modifications to various files suitable for Windows Server or Unix using two nodes and a software load balancer. Edit the EQUELLA configuration files Edit the following files, substituting the correct values for the variables. (All configuration files can be found in the <path-to-equella>\learningedge-config directory.) mandatory-config.properties In the <path-to-equella>\learningedge-config\mandatory-config.properties file edit the following variables: filestore.root = $filestore admin.url = $fullserverurl cluster.group.name = $clustergroupname optional-config.properties In the <path-to-equella>\learningedge-config\optional-config.properties file edit the following variables: channelservice.clusternodeid = $currentclusternodename channelservice.bindaddress = $currenthostipaddress If there is more than one EQUELLA installed on this host, one of the following variables will need to be changed. To change the Channel Service Multicast Address and/or Multicast Port from the default values: channelservice.multicastaddress = $multicastaddress (NOTE: If the Channel Service Multicast Address is not specified is used.) ChannelService.multicastPort = $multicastport (NOTE: If the Channel Service Multicast Port is not specified is used.) Edit the Tomcat configuration files Make the following modifications to the Apache Tomcat server.xml file (located in the <path-to-equella>\tomcat\conf directory): server.xml 1. Configure a connector port for either the HTTP Connector or AJP Connector section: HTTP Connector <Service name="catalina">

9 <!-- HTTP Connector --> <Connector port="$xxxx" protocol="org.apache.coyote.http11.http11nioprotocol" redirectport="8443" URIEncoding="UTF-8" usebodyencodingforuri="true" connectiontimeout="20000" /> Where $XXXX is the connector port number that the Tomcat service is run. (NOTE: This must be an open port on the server to allow the service to start properly.) AJP Connector If Apache HTTP Server is being used as a load balancer, we recommend using the AJP Connector. To do so, uncomment the following in the AJP Connector section: <Connector port="$xxxx" protocol="ajp/1.3" redirectport="8443" URIEncoding="UTF-8" usebodyencodingforuri="true" request.tomcatauthentication="false" tomcatauthentication="false" /> Use an appropriate connector port so that the Tomcat service can run. (NOTE: The two connectors can be used together, although this is not usually required.) Modify the following entry on each Tomcat server.xml file: <Engine name="catalina" defaulthost="localhost"> To become: <Engine name="catalina" defaulthost="localhost" jvmroute="$currentclusternodename"> (NOTE: There is no need to change the localhost entry.) The jvmroute identifier is appended to the generated session identifier for the purposes of sticky sessions when using the AJP connector. This will interfere with any load balancer s method of sticky session implementation. 2. Uncomment the following: <Cluster classname="org.apache.catalina.ha.tcp.simpletcpcluster"/>

10 Configure EQUELLA on subsequent hosts To configure EQUELLA on subsequent hosts, install EQUELLA and repeat the steps from the Configure EQUELLA on the first host section on page 8 on each node of your cluster. Ensure the variables used to configure the first host are updated where appropriate to refer to the second (or subsequent) hosts, to maintain uniqueness. Test the clustered environment The following tests ensure the clustered environment is working correctly by testing each server is being accessed, cluster tasks are being delegated correctly and that a single server failure is handled without error. Display each server s unique ID To display each server s unique identification in the bottom left-hand corner of the window: 1. In the <path-to-equella>\learningedge-config\optional-config.properties file, uncomment the following: channelservice.debug = true Enable Multicast Some switches disable multicast packets, so ensure your switch has multicast enabled. Test cluster node server configuration To test each server is running and being called correctly: 1. Log in to an EQUELLA instance and identify the unique cluster ID that is displayed in the bottom left-hand corner of the window, and then stop that instance. 2. Force a refresh after the service has stopped (Ctrl + R / Ctrl + F5). 3. The unique cluster ID should now identify a different machine in the cluster. 4. Repeat this process until all the cluster servers have been identified and are running correctly. Test server fail over This test stops a server part way through an resource contribution to simulate a server failure. 1. Ensure all the cluster web servers are running. 2. Create a test user (refer to the EQUELLA User Management Configuration Guide for further information).

11 3. Log in to EQUELLA using the new user and open a contribution wizard with multiple pages. 4. Enter some details on the first wizard page, and then navigate to another page in the wizard. (This commits the changes for temporary storage. Without this, the server wouldn t know that anything had been written.) 5. Leave the contribution wizard open and stop the server identified by the cluster ID. Once the server has stopped: 6. Return to the open contribution wizard. 7. Navigate to the wizard page containing the data entered in step 4. A correctly configured cluster will perform this series of tasks without error. Cluster testing tool The cluster network configuration can be tested using the EQUELLA Cluster Testing tool. This standalone tool can be downloaded from the Cluster Health page in the Institution Manager or from the EQUELLA Support Desk Download the testing tool from the Institution Manager To access the Institution Manager: 1. Open a browser and enter the EQUELLA address of the hosting server with /institutions.do?method=admin appended to the URL. (e.g. would become ). to display the Server administration Authentication page. 2. Enter the password used by the EQUELLA server administrator (this is set on the Server Settings page after installation, and can be changed in the System password section of the Settings page of the Institution Manager), and click. 3. On the resulting Server administration page, select Cluster health from the navigation menu. An example is shown in Figure 2. EQUELLA 6.0 Clustering Configuration Guide 11 P age

12 Figure 2 Server administration page Cluster health page The Cluster health page lists the IP addresses that have been recognised as part of this cluster. When not part of a cluster, only the current node is listed. 4. Below this information is a link to the EQUELLA Cluster Testing tool. Click this link to download the equella-cluster-tester.jar file. Download the testing tool from the Service Desk 1. Open a browser and navigate to the EQUELLA Service Desk at 2. Enter your authentication details and log in. 3. Select Downloads from the left hand menu pane. 4. Click the 6.0 link then the Tools directory. An example is shown in Figure 3. Figure 3 Support site Downloads page 5. Click the equella-cluster-tester.jar link to download the tool. Using the EQUELLA Cluster Testing tool This file can be run on any environment with the Java Runtime Environment (JRE) (or Java Development Kit (JDK)) installed. On Windows, it is possible to double-click on the EQUELLA 6.0 Clustering Configuration Guide 12 P age

13 file to open it. On Unix systems it may be necessary to define the file as executable before it will run via the double-click method. 1. Run the file to open the EQUELLA Cluster Messaging Tester window. 2. Enter the appropriate details to match that of the node you are trying to connect with. 3. Enter the Node ID for the appropriate host, and the Group ID of the cluster. The Group ID is particularly important, as this links the nodes. 4. Enter the Bind Addr, Multicast Addr, and Multicast Port as configured in the optional-config.properties file. Using the following details as an example to populate the testing tool as shown in Figure 4. Figure 4 Cluster testing tool configuration for first node 5. Click to enter the cluster so the tool can send and receive cluster messages. The display is updated with the connection string and information about its state, as shown in Figure 5. EQUELLA 6.0 Clustering Configuration Guide 13 P age

14 Figure 5 Cluster testing tool status after joining cluster with first node 6. Open and configure another Cluster Testing Tool with the details from the other node of the cluster. 7. Click to enter the cluster so both nodes are able to send and receive cluster messages. An example is shown in Figure 6. Figure 6 Cluster testing tool status after joining cluster with second node 8. Click to see how many machines in the cluster can receive the message, as shown in Figure 7. EQUELLA 6.0 Clustering Configuration Guide 14 P age

15 Figure 7 Cluster testing tool status on second node after sending message Each cluster node should receive its own message and a message from each of the other cluster members. An example is shown in Figure 8. Any machines that do not appear should have their network configuration checked and then be restarted. Figure 8 Cluster testing tool status on first node after receiving message To modify the connection string 1. Select the Advanced tab to display an editable version of the connection string. EQUELLA 6.0 Clustering Configuration Guide 15 P age

16 2. Enter changes then test on the cluster by clicking. To clear the messaging display 1. Click to remove the displayed text updates. Check Lucene indexes using Luke When clustering is working properly the Apache Lucene index on each node is checked automatically. Lucene will create the index files up to a certain size and then start on a new file. Once the number of files reaches a certain limit then all the files are optimised into one file and then that larger file size becomes the limit for each file. The number of items indexed on each server can be checked with Luke. Luke is a Lucene tool that can be pointed to the Lucene index on each application node. Comparing the results of each server will indicate if they are synchronising properly. Luke can be found at EQUELLA 6.0 Clustering Configuration Guide 16 P age

17 Appendix A Configure Apache as a load balancer Prior to configuring Apache as a load balancer, it is recommended that you fill out the following checklist so that you know what goes where and on what port. The Variable Names in the table will be used as the variable values in this appendix. Variable Name $cluster1nodename $cluster2nodename $clusterxnodename Explanation and notes Name of the first EQUELLA instance that is a member node of the cluster. This name must be unique. As defined by the jvmroute attribute in /tomcat/server.xml. Name of the second EQUELLA instance that is a member node of the cluster. This name must be unique. As defined by the jvmroute attribute in /tomcat/server.xml. Names of all subsequent EQUELLA instances that are member nodes of the cluster. These names must be unique. As defined by the jvmroute attribute in /tomcat/server.xml. For the third (and subsequent ) EQUELLA instances this will be $cluster3nodename, $cluster4nodename, etc. $hostname1 $hostname2 $hostnamex DNS name of the machine host on which the first node of the cluster is physically installed. Usually, the machine name. DNS name of the machine host on which the second node of the cluster is physically installed. Usually, the machine name. DNS name of the machine host on which all subsequent nodes of the cluster is physically installed. Usually, the machine name. For the third (and subsequent) EQUELLA instances this will be $hostname3, $hostname4, etc. $cluster1tomcatportno $cluster2tomcatportno AJP port that the first EQUELLA node s Tomcat server is listening on (set when installing EQUELLA). This must be same as the connector port number set in the server.xml file. AJP port that the second EQUELLA node s Tomcat server is listening on (set when installing EQUELLA). This must EQUELLA 6.0 Clustering Configuration Guide 17 P age

18 be the same as the connector port number set in the server.xml file. $clusterxtomcatportno AJP ports that all subsequent EQUELLA node s Tomcat servers are listening on (set when installing EQUELLA). For the third (and subsequent) EQUELLA instances this will be $cluster3tomcatportno, $cluster4tomcatportno, etc. Download and install Apache HTTP Server 2.2 Download Apache2.2 appropriate for your machine s architecture from 1. Install Apache2.2 with default options. Make a note of the Apache2 install directory. 2. Ensure that the Apache modules, mod_proxy, mod_proxy_ajp and mod_proxy_balancer, are enabled. 3. Start and test that Apache2 works. 4. Shut down Apache2. To configure Apache as a load balancer 1. Create a virtual host file for your site, where you can configure the load balancing proxy, or create one in Apache s httpd.conf file (or Linux equivalent). a. Create an entry for each member you wish to add to the cluster. For example: <Proxy balancer://$equellacluster/> balancermember ajp://$hostname1:$cluster1tomcatportno route=$cluster1nodename balancermember ajp://$hostname2:$cluster2tomcatportno route=$cluster2nodename balancermember ajp://$hostnamex:$clusterxtomcatportno route=$clusterxnodename ProxySet stickysession=jsessionid </Proxy> Where: route must be set to the value used in the jvmroute attribute of the <Engine> tag of the Tomcat server.xml file. $equellacluster is the load balancer referenced by its URL (any name can be chosen). b. Add a ProxyPass directive to your virtual host: <virtualhost *:80> ServerName $externalservername ProxyPass / balancer://$equellacluster/ nocanon </VirtualHost> Where: $externalservername must be either the hostname of an institution, or the hostname in mandatory-config.properties. $equellacluster is the load balancer referenced by its URL (any name can be chosen). EQUELLA 6.0 Clustering Configuration Guide 18 P age

19 nocanon ensures URLs are passed through to Tomcat without processing. An example directive is: <VirtualHost *:80> ServerName equella.institution.com ProxyPass / balancer://equella.institution.production.com/ nocanon </VirtualHost> Contact Client Support We are always happy to help. If your organisation has a support agreement with EQUELLA then help is available at EQUELLA 6.0 Clustering Configuration Guide 19 P age

EQUELLA. Clustering Configuration Guide. Version 6.2

EQUELLA. Clustering Configuration Guide. Version 6.2 EQUELLA Clustering Configuration Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 18/03/2014 18/03/2014 18/03/2014 March 2014 edition. Information in this document may change

More information

EQUELLA. Blackboard Learn Configuration Guide. Version 6.2

EQUELLA. Blackboard Learn Configuration Guide. Version 6.2 EQUELLA Blackboard Learn Configuration Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 11/12/2013 12/12/2013 12/12/2013 December 2013 edition. Information in this document

More information

Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration

Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration 2010 Informatica Abstract This document explains how to install multiple copies of B2B Data Exchange on a single computer.

More information

White Paper DEPLOYING WDK APPLICATIONS ON WEBLOGIC AND APACHE WEBSERVER CLUSTER CONFIGURED FOR HIGH AVAILABILITY AND LOAD BALANCE

White Paper DEPLOYING WDK APPLICATIONS ON WEBLOGIC AND APACHE WEBSERVER CLUSTER CONFIGURED FOR HIGH AVAILABILITY AND LOAD BALANCE White Paper DEPLOYING WDK APPLICATIONS ON WEBLOGIC AND APACHE WEBSERVER CLUSTER CONFIGURED FOR HIGH AVAILABILITY AND LOAD BALANCE Abstract This White Paper provides information to deploy WDK based applications

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

Technical specification

Technical specification Technical specification Load balancing configuration Koaly EXP Page : 1 / 8 Table of contents Introduction... 3 I.Overview... 3 II.The Apache load balancer... 3 III.Limitations... 3 Prerequisites... 4

More information

By PANKAJ SHARMA. Concepts of Server Load Balancing

By PANKAJ SHARMA. Concepts of Server Load Balancing Concepts of Server Load Balancing By PANKAJ SHARMA 1 Introduction of Load balancing and clustering with Liferay Load balancing is one of the most popular in the world due to its impressive ease-of-use.

More information

Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite. Abstract

Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite. Abstract Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite Abstract This white paper outlines the deployment and configuration of a Single Sign-On solution for EMC Documentum

More information

Table of Contents. Requirements and Options 1. Checklist for Server Installation 5. Checklist for Importing from CyberAudit 2.0 13

Table of Contents. Requirements and Options 1. Checklist for Server Installation 5. Checklist for Importing from CyberAudit 2.0 13 Cy be r Audi t We b Table of Contents C H A P T E R 1 Requirements and Options 1 System and Hardware Requirements...1 Computer... 1 Operating System... 1 Browser... 2 CyberLock Hardware... 2 Installation

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

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

Apache Server Implementation Guide

Apache Server Implementation Guide Apache Server Implementation Guide 340 March Road Suite 600 Kanata, Ontario, Canada K2K 2E4 Tel: +1-613-599-2441 Fax: +1-613-599-2442 International Voice: +1-613-599-2441 North America Toll Free: 1-800-307-7042

More information

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server Table of Contents Table of Contents Deploying the BIG-IP LTM with Tomcat application servers and Apache web

More information

Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2) Cluster

Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2) Cluster Adobe LiveCycle ES2 Technical Guide John C. Cummins, Technical Architect, Adobe Professional Services Public Sector Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2)

More information

ProjectWise Mobile Access Server, Product Preview v1.1

ProjectWise Mobile Access Server, Product Preview v1.1 ProjectWise Mobile Access Server, Product Preview v1.1 BENTLEY SYSTEMS, INCORPORATED www.bentley.com Copyright Copyright (c) 2011, Bentley Systems, Incorporated. All Rights Reserved. Trademark Notice Bentley

More information

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server This document describes how to configure Apache HTTP Server

More information

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication SafeNet Authentication Service Integration Guide Oracle Secure Desktop Using SAS RADIUS OTP Authentication Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013

More information

Implementing a Weblogic Architecture with High Availability

Implementing a Weblogic Architecture with High Availability Implementing a Weblogic Architecture with High Availability Contents 1. Introduction... 3 2. Topology... 3 2.1. Limitations... 3 2.2. Servers diagram... 4 2.3. Weblogic diagram... 4 3. Components... 6

More information

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services Using IIS Application Request Routing to Publish Lync Server 2013 Web Services DISCLAIMER 2014 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Hyper-V, Internet Explorer, Lync,

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

Dell One Identity Cloud Access Manager 8.0.1- How to Configure for High Availability

Dell One Identity Cloud Access Manager 8.0.1- How to Configure for High Availability Dell One Identity Cloud Access Manager 8.0.1- How to Configure for High Availability May 2015 Cloning the database Cloning the STS host Cloning the proxy host This guide describes how to extend a typical

More information

JMETER - MONITOR TEST PLAN

JMETER - MONITOR TEST PLAN http://www.tutorialspoint.com JMETER - MONITOR TEST PLAN Copyright tutorialspoint.com In this chapter, we will discuss how to create a Test Plan using JMeter to monitor webservers. The uses of monitor

More information

Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811. in Microsoft Windows Operating Environments

Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811. in Microsoft Windows Operating Environments Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811 in Microsoft Windows Operating Environments Table of Contents Introduction... 1 Step 1: Create a SAS Software Depot..... 1 Step 2: Prepare

More information

CycleServer Grid Engine Support Install Guide. version 1.25

CycleServer Grid Engine Support Install Guide. version 1.25 CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring

More information

CELLTRAQ Battery Monitoring Software

CELLTRAQ Battery Monitoring Software CELLTRAQ Battery Monitoring Software Instructions April 2009 167-000128A INNOVATION TECHNOLOGY QUALITY WORLDWIDE Page 2 CELLTRAQ Overview CELLTRAQ CELLTRAQ is a web application that is used to monitor

More information

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server

More information

1. Introduction 2. Getting Started 3. Scenario 1 - Non-Replicated Cluster 4. Scenario 2 - Replicated Cluster 5. Conclusion

1. Introduction 2. Getting Started 3. Scenario 1 - Non-Replicated Cluster 4. Scenario 2 - Replicated Cluster 5. Conclusion 1. Introduction... 1 1.1. Non-Replicated Cluster... 1 1.2. Replicated Cluster... 2 1.3. Mixing Both Options... 3 2. Getting Started... 5 3. Scenario 1 - Non-Replicated Cluster... 6 3.1. JOSSO Agent Configuration...

More information

SpagoBI Tomcat Clustering Using mod_jk and httpd on Centos - In-Memory Session Replication.

SpagoBI Tomcat Clustering Using mod_jk and httpd on Centos - In-Memory Session Replication. SpagoBI Tomcat Clustering Using mod_jk and httpd on Centos - In-Memory Session Replication. In an earlier post we did a basic session based replication, but the session was not redundant. Now we will be

More information

Sophos Endpoint Security and Control standalone startup guide

Sophos Endpoint Security and Control standalone startup guide Sophos Endpoint Security and Control standalone startup guide Sophos Endpoint Security and Control version 9 Sophos Anti-Virus for Mac OS X, version 7 Document date: October 2009 Contents 1 Before you

More information

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into

More information

Configuration Manual

Configuration Manual Configuration Manual Page 1 of 20 Table of Contents Chronicall Setup...3 Standard Installation...3 Non-standard Installation (Recording Library on Separate machine)...8 Configuring Call Recording through

More information

mod_cluster A new httpd-based load balancer Brian Stansberry JBoss, a division of Red Hat

mod_cluster A new httpd-based load balancer Brian Stansberry JBoss, a division of Red Hat mod_cluster A new httpd-based load balancer Brian Stansberry JBoss, a division of Red Hat Agenda Who is Brian Stansberry? Principal Software Engineer at Red Hat Technical Lead for JBoss Application Server

More information

Reference and Troubleshooting: FTP, IIS, and Firewall Information

Reference and Troubleshooting: FTP, IIS, and Firewall Information APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the

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

Running Multiple Shibboleth IdP Instances on a Single Host

Running Multiple Shibboleth IdP Instances on a Single Host CESNET Technical Report 6/2013 Running Multiple Shibboleth IdP Instances on a Single Host IVAN NOVAKOV Received 10.12.2013 Abstract The article describes a way how multiple Shibboleth IdP instances may

More information

Apache and Tomcat Clustering Configuration Table of Contents

Apache and Tomcat Clustering Configuration Table of Contents Apache and Tomcat Clustering Configuration Table of Contents INTRODUCTION REVISION HISTORY DOWNLOAD AND INSTALL JDK DOWNLOAD AND INSTALL APACHE WEB SERVER (HTTPD) DOWNLOAD AND INSTALL TOMCAT SERVER APACHE

More information

24x7 Scheduler Multi-platform Edition 5.2

24x7 Scheduler Multi-platform Edition 5.2 24x7 Scheduler Multi-platform Edition 5.2 Installing and Using 24x7 Web-Based Management Console with Apache Tomcat web server Copyright SoftTree Technologies, Inc. 2004-2014 All rights reserved Table

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Configuring Nex-Gen Web Load Balancer

Configuring Nex-Gen Web Load Balancer Configuring Nex-Gen Web Load Balancer Table of Contents Load Balancing Scenarios & Concepts Creating Load Balancer Node using Administration Service Creating Load Balancer Node using NodeCreator Connecting

More information

Bentley CONNECT Dynamic Rights Management Service

Bentley CONNECT Dynamic Rights Management Service v1.0 Implementation Guide Last Updated: March 20, 2013 Table of Contents Notices...5 Chapter 1: Introduction to Management Service...7 Chapter 2: Configuring Bentley Dynamic Rights...9 Adding Role Services

More information

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE VERSION 1.6.0 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Server Roles... 4 Installation... 9 Server WAR Deployment...

More information

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall Quick Start Guide McAfee Firewall Enterprise, Multi-Firewall Edition model S7032 This quick start guide provides high-level instructions for setting up McAfee Firewall Enterprise, Multi-Firewall Edition

More information

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

Crystal Reports Installation Guide

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

More information

Deploying Business Objects Crystal Reports Server on IBM InfoSphere Balanced Warehouse C-Class Solution for Windows

Deploying Business Objects Crystal Reports Server on IBM InfoSphere Balanced Warehouse C-Class Solution for Windows Deploying Business Objects Crystal Reports Server on IBM InfoSphere Balanced Warehouse C-Class Solution for Windows I Installation & Configuration Guide Author: Thinh Hong Business Partner Technical Enablement

More information

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates Entrust Managed Services Entrust Managed Services PKI Configuring secure LDAP with Domain Controller digital certificates Document issue: 1.0 Date of issue: October 2009 Copyright 2009 Entrust. All rights

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

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Simba XMLA Provider for Oracle OLAP 2.0. Linux Administration Guide. Simba Technologies Inc. April 23, 2013

Simba XMLA Provider for Oracle OLAP 2.0. Linux Administration Guide. Simba Technologies Inc. April 23, 2013 Simba XMLA Provider for Oracle OLAP 2.0 April 23, 2013 Simba Technologies Inc. Copyright 2013 Simba Technologies Inc. All Rights Reserved. Information in this document is subject to change without notice.

More information

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality

More information

Quick Start Guide For Ipswitch Failover v9.0

Quick Start Guide For Ipswitch Failover v9.0 For Ipswitch Failover v9.0 Copyright 1991-2015 All rights reserved. This document, as well as the software described in it, is furnished under license and may be used or copied only in accordance with

More information

Trademarks: Yellowfin and the Yellowfin Logo are registered trademarks of Yellowfin International.

Trademarks: Yellowfin and the Yellowfin Logo are registered trademarks of Yellowfin International. Yellowfin Release 7 Clustering Guide Under international copyright laws, neither the documentation nor the software may be copied, photocopied, reproduced, translated or reduced to any electronic medium

More information

Issue Tracking Anywhere Installation Guide

Issue Tracking Anywhere Installation Guide TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3

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

T320 E-business technologies: foundations and practice

T320 E-business technologies: foundations and practice T320 E-business technologies: foundations and practice Configuring an Application Server in Eclipse Prepared for the course team by Neil Simpkins Introduction 1 Viewing the configured servers 2 Configuring

More information

Application Servers - BEA WebLogic. Installing the Application Server

Application Servers - BEA WebLogic. Installing the Application Server Proven Practice Application Servers - BEA WebLogic. Installing the Application Server Product(s): IBM Cognos 8.4, BEA WebLogic Server Area of Interest: Infrastructure DOC ID: AS01 Version 8.4.0.0 Application

More information

Release Notes Date: September 2013

Release Notes Date: September 2013 Release Notes Date: September 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any retrieval system of any nature without the

More information

DameWare Server. Administrator Guide

DameWare Server. Administrator Guide DameWare Server Administrator Guide About DameWare Contact Information Team Contact Information Sales 1.866.270.1449 General Support Technical Support Customer Service User Forums http://www.dameware.com/customers.aspx

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

Feith Dashboard iq Server Version 8.1 Install Guide

Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Copyright 2013 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication

More information

A-AUTO 50 for Windows Setup Guide

A-AUTO 50 for Windows Setup Guide A-AUTO 50 for Windows Setup Guide 1st Edition 1 A-AUTO is a registered trade mark of UNIRITA Inc. "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)."

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Silk Central 15.5. Installation Help

Silk Central 15.5. Installation Help Silk Central 15.5 Installation Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 2004-2009 Borland Software Corporation

More information

RemoteTM Web Server User Guide. Copyright 2008-2014 Maxprograms

RemoteTM Web Server User Guide. Copyright 2008-2014 Maxprograms RemoteTM Web Server User Guide Copyright 2008-2014 Maxprograms Contents 3 Contents Introduction...5 Requirements...5 Installation...7 Email Server Configuration...7 Users Management...8 Create User...8

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

FTP, IIS, and Firewall Reference and Troubleshooting

FTP, IIS, and Firewall Reference and Troubleshooting FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the

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

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ]

s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ] s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ] Oracle 1z0-102 : Practice Test Question No : 1 Which two statements are true about java

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

VMware Identity Manager Connector Installation and Configuration

VMware Identity Manager Connector Installation and Configuration VMware Identity Manager Connector Installation and Configuration VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document

More information

SSL CONFIGURATION GUIDE

SSL CONFIGURATION GUIDE HYPERION RELEASE 9.3.1 SSL CONFIGURATION GUIDE CONTENTS IN BRIEF About This Document... 2 Assumptions... 2 Information Sources... 2 Identifying SSL Points for Hyperion Products... 4 Common Activities...

More information

Apache Tomcat. Load-balancing and Clustering. Mark Thomas, 20 November 2014. 2014 Pivotal Software, Inc. All rights reserved.

Apache Tomcat. Load-balancing and Clustering. Mark Thomas, 20 November 2014. 2014 Pivotal Software, Inc. All rights reserved. 2 Apache Tomcat Load-balancing and Clustering Mark Thomas, 20 November 2014 Introduction Apache Tomcat committer since December 2003 markt@apache.org Tomcat 8 release manager Member of the Servlet, WebSocket

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

Infor Warehouse Mobility for Infor ERP LN Installation Guide

Infor Warehouse Mobility for Infor ERP LN Installation Guide Infor Warehouse Mobility for Infor ERP LN Installation Guide Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

CA Business Intelligence

CA Business Intelligence CA Business Intelligence N-Tier Implementation and Configuration Guide Release 3.2 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 2 (11.1.2.1.0) E17075-02 September 2011 This document provides information on: Section 1, "Oracle Team

More information

Remote Console Installation & Setup Guide. November 2009

Remote Console Installation & Setup Guide. November 2009 Remote Console Installation & Setup Guide November 2009 Legal Information All rights reserved. No part of this document shall be reproduced or transmitted by any means or otherwise, without written permission

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

Using Symantec NetBackup with Symantec Security Information Manager 4.5

Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager Legal Notice Copyright 2007 Symantec Corporation. All rights

More information

Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server

Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server Configuration Guide Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server This document is revised for SAS 9.3. In previous versions

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

PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM

PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM White Paper PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM Abstract This white paper explains how to setup Proxy

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

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

TECHNICAL REFERENCE. Version 1.0 August 2013

TECHNICAL REFERENCE. Version 1.0 August 2013 TECHNICAL REFERENCE Version 1.0 August 2013 Technical Reference IPWeb 1.0 Copyright EVS Broadcast Equipment S.A. Copyright 2013. All rights reserved. Disclaimer The information in this manual is furnished

More information

PHD Virtual Backup for Hyper-V

PHD Virtual Backup for Hyper-V PHD Virtual Backup for Hyper-V version 7.0 Installation & Getting Started Guide Document Release Date: December 18, 2013 www.phdvirtual.com PHDVB v7 for Hyper-V Legal Notices PHD Virtual Backup for Hyper-V

More information

Avalanche Site Edition

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

More information

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX GO-Global Cloud 4.1 QUICK START SETTING UP A LINUX CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

More information

Securing Adobe connect Server and CQ Server

Securing Adobe connect Server and CQ Server Securing Adobe connect Server and CQ Server To Enable SSL on Connect Server and CQ server (Index) Configure custom.ini File Uncomment the SSL TAGs in Server.xml file. Configure the Four components of connect

More information

1. If there is a temporary SSL certificate in your /ServerRoot/ssl/certs/ directory, move or delete it. 2. Run the following command:

1. If there is a temporary SSL certificate in your /ServerRoot/ssl/certs/ directory, move or delete it. 2. Run the following command: C2Net Stronghold Cisco Adaptive Security Appliance (ASA) 5500 Cobalt RaQ4/XTR F5 BIG IP (version 9) F5 BIG IP (pre-version 9) F5 FirePass VPS HSphere Web Server IBM HTTP Server Java-based web server (generic)

More information

CA SiteMinder Secure Proxy Server

CA SiteMinder Secure Proxy Server CA SiteMinder Secure Proxy Server Administration Guide r12 SP3 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

TIBCO Spotfire Statistics Services Installation and Administration Guide. Software Release 5.0 November 2012

TIBCO Spotfire Statistics Services Installation and Administration Guide. Software Release 5.0 November 2012 TIBCO Spotfire Statistics Services Installation and Administration Guide Software Release 5.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH

More information

Example Apache Server Installation for Centricity Electronic Medical Record browser & mobile access

Example Apache Server Installation for Centricity Electronic Medical Record browser & mobile access GE Healthcare Introduction Example Apache Server Installation for Centricity Electronic Medical Record rowser & moile access These instructions descrie how to install and configure an Apache server to

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

RemoteTM LAN Server User Guide

RemoteTM LAN Server User Guide RemoteTM LAN Server User Guide Copyright 2008-2013 Maxprograms Contents 3 Contents Introduction...5 Supported Platforms...5 Requirements...5 LAN Server...7 System Tray Menu...7 Server Status...7 Server

More information