SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM
|
|
|
- Anis Sullivan
- 10 years ago
- Views:
Transcription
1 SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM Prepared By: Leigh Moulder, SRI International
2 TABLE OF CONTENTS Table of Contents. 1 Document Change Log 2 Solr Server Information. 3 Account Information. 3 Installation Locations 3 Resources 3 Solr Architecture 4 Features of Solr 4 Solr Deployments 4 Master Solr Deployment 4 Local Solr Deployment 4 Solr Server Installation 4 Gather Software.. 4 Solr Home Directory.. 5 Tomcat Configuration.. 7 Solr Webapp.. 8 Solr Server Upgrade. 9 Gather Software.. 9 Update Solr Files. 9 Solr Webapp 11 Update Index.. 11 Securing Solr. 11 Configure Basic Authentication. 11 Advanced Solr Security 12 Configure Basic Authentication. 13 SolrSearch Webapp.. 14 SolrSearch Webapp Upgrade 15 Solr Web Portlet Installation 16 Gather Software 16 Installation.. 16 Solr Web Portlet Upgrade. 16 Appendix A. 17 Account Information.. 17 Installation Locations. 17 Solr Installation Guide 1
3 DOCUMENT CHANGE LOG Release Date Document Version Notes 8/1/ Initial Release 10/1/ Added details on the Solr deployment environment Updated installation procedure Updated document formatting 12/7/ Removed reference to Nutch download 2/2/ Updated documentation to Solr /14/ Included information for advanced Solr configurations Updated steps to secure Solr 2/17/ Improved installation steps Solr Installation Guide 2
4 SOLR SERVER INFORMATION The following information should be collected prior to starting the installation process. The information will be referenced and used throughout this installation guide. ACCOUNT INFORMATION Account Referenced As Value Solr Server host ${solr.host} Solr Server user ${solr.user} Solr Server password Tomcat account ${solr.password} ${tomcat.user} INSTALLATION LOCATIONS Directory Referenced As Value Tomcat home ${catalina.home} Tomcat base ${catalina.base} Liferay deploy directory Solr Home directory Solr URL Solr webapp user (optional) Solr webapp password (optional) Solr OpenSearch URL ${deploy.dir} ${solr.home} ${solr.url} ${solr.web.user} ${solr.web.password} ${opensearch.url} RESOURCES Solr Download page NTER Solr Webapp NTER Solr OpenSearch solr tgz web war Solr Installation Guide 3
5 SOLR ARCHITECTURE Solr is an open source, enterprise level index and search server. It uses a combination of HTTP, XML, and JSON as communication standards to and from client users. FEATURES OF SOLR In addition to a number of search related features, one of the major benefits provided by a Solr server is its ability to handle multiple, independent indexes. These indexes are known as cores and can represent data from separate sources. In addition to hosting multiple cores, a single Solr server can also host multiple web servlets that provide connectivity to these cores. This functionality allows a master Solr server to be created that can host indexes and search engines for multiple NTER instances. Figure 1 represents the architecture of a Solr server hosting multiple cores as well as multiple web servlets. Figure 1 Multi core Solr Architecture SOLR DEPLOYMENTS This document describes two major Solr deployment strategies, master and local. MASTER SOLR DEPLOYMENT A master Solr deployment needs to be configured only once for the entire NTER infrastructure and is used to store the full text index, as well as local indexes for other NTER installations. A Master Solr deployment consists of a Solr Server configured with multiple cores, a Solr webapp, and an OpenSearch webapp. The number of cores depends on how many NTER instances the server is supporting. There needs to be a core per NTER as well as one for the full text index. Figure 1 depicts a Master Solr installation hosting a core for full text indexing and cores for two different NTER installations. LOCAL SOLR DEPLOYMENT A local Solr deployment must be configured for each NTER installation and is used to store the local index. A Local Solr deployment consists of a Solr Server configured with a single core, a Solr webapp, and a solr web webapp. SOLR SERVER INSTALLATION Note: These instructions assume that Tomcat is already installed and running correctly. GATHER SOFTWARE 1. Download and extract the Solr binary files to the /tmp directory. cd /tmp Solr Installation Guide 4
6 wget tar xzf apache-solr tgz 2. Download and extract the Liferay Solr web portlet to the /tmp directory. cd /tmp wget unzip solr-web-portlet war -d solr-web 3. Download and extract the Solr OpenSearch web portlet. cd /tmp wget unzip solrsearch.war d solrsearch SOLR HOME DIRECTORY 1. Create the Solr home and data directories. These directories will be used to store the configuration files and data used by the various cores. A distinct core must be created for each index hosted by the Solr installation. It is recommended that even if the installation will only initially support a single index, to create a core for it to simplify future upgrades. cd / mkdir p ${solr.home} mkdir p ${solr.home}/cores/nutch mkdir p ${solr.home}/cores/nter mkdir p ${solr.home}/cores/${core.name} 2. Create a ${solr.home}/solr.xml file that contains the following. Set the solr.contrib.dir to the fully qualified path and include a <core> value for each directory created above. <solr persistent="false" sharedlib="lib"> <property name="solr.contrib.dir" value="${solr.home}/contrib"/> <cores adminpath="admin/cores" > <core name="nter" instancedir="cores/nter"/> <core name="nutch" instancedir="cores/nutch"/> <core name="${core.name}" instancedir="cores/${core.name}"/> </cores> </solr> 3. For each core created, copy the example conf directory from the Solr source. This will provide a template and starting point for further configurations. cd ${solr.home} cp r /tmp/apache-solr-3.5.0/example/solr/conf cores/nter Solr Installation Guide 5
7 cp r /tmp/apache-solr-3.5.0/example/solr/conf cores/nutch 4. For each core created above, copy the template solrconfig.xml file into the config directory. cd ${solr.home} cp /tmp/solrsearch/web-inf/conf/solrconfig.xml cores/nter/conf cp /tmp/solrsearch/web-inf/conf/solrconfig.xml cores/nutch/conf 5. If creating an index for NTER, copy the schema.xml file from the solr web directory to the conf directory. cd ${solr.home}/cores/nter/conf mv schema.xml schema.xml.orig cp /tmp/solr-web/web-inf/conf/schema.xml. 6. Copy the Nutch schema.xml file into the Nutch core s conf directory. cd ${solr.home}/cores/nutch/conf mv schema.xml schema.xml.orig cp /tmp/solrsearch/web-inf/conf/nutch_schema.xml schema.xml 7. Copy the jar files needed for Solr. cd ${solr.home} cp r /tmp/apache-solr-3.5.0/dist/*.jar lib 8. Copy the Solr contrib directory. cd ${solr.home} cp r /tmp/apache-solr-3.5.0/contrib. 9. Create a SOLR_HOME environment variable by adding the following line to the /etc/environment file. SOLR_HOME="${solr.home}" 10. Set the following permissions on the Solr data directories: cd ${solr.home} chown R ${tomcat.user}.${tomcat.user} * chmod R 755 * At this point, the Solr configuration files are setup correctly. There is no need to create a data or index directory as these will automatically be created during the Webapp startup. Solr Installation Guide 6
8 TOMCAT CONFIGURATION This section assumes Tomcat is running behind an Apache Server. If Tomcat is running as a standalone web server, this section should be skipped. APR LIBRARIES Verify that Tomcat is using the APR libraries. This improves overall performance. This can be verified by search for the following line in Tomcat s log file: INFO: Loaded APR based Apache Tomcat Native library APACHE MOD_JK 1. Update mod_jk.conf with the following: JkMount /solr JkMount /solr/* JkMount /solrsearch JkMount /solrsearch/* ajp13_worker ajp13_worker ajp13_worker ajp13_worker 2. Optionally, redirect any requests to /opensearch to the correct Webapp. Note this should only be done if a single SolrSearch webapp is deployed on the Tomcat server. JkMount /solr JkMount /solr/* ajp13_worker ajp13_worker RedirectMatch ^/opensearch /solrsearch/opensearch JkMount /solrsearch ajp13_worker JkMount /solrsearch/* ajp13_worker This simplifies the request URL from to 3. Restart the Apache and Tomcat servers /etc/init.d/apache2 restart /etc/init.d/tomcat6 restart TOMCAT SERVER.XML Depending on the initial deployment of Apache and Tomcat, port 8080 may, by default, be disabled. This is common when Apache is configured to run as a front end to Tomcat. However, in some situations, it is desirable to allow Tomcat to listen on port 8080 as well. In this Solr environment, OpenSearch requests need to be available on port 80, via Apache. However, the ability to update and commit index changes needs to remain hidden from the general user. To accomplish this, port 8080 will be opened for the /solr webapp. 1. Add the following to the Catalina service section of ${catalina.home}/conf/server.xml Solr Installation Guide 7
9 <Connector executor="tomcatthreadpool" port="8080" protocol="http/1.1" ConnectionTimeOut="20000" redirectport="8443"/> 2. Restart Tomcat /etc/init.d/tomcat6 restart SOLR WEBAPP 1. Add the Solr home value to Tomcat s startup routine by updating Tomcat s JAVA_OPTS property. vi ${catalina.home}/bin/setenv.sh Add the following line. Note if a JAVA_OPTS line already exists, append the Solr home property to it. JAVA_OPTS=-Dsolr.solr.home=${solr.home} If the setenv.sh file did not exist, ensure that the permissions are set correctly. chmod 755 ${catalina.home}/bin/setenv.sh 2. If the Tomcat6 directory is not located under the user s home directory, create a soft link from the home directory to the Tomcat directory. That will simplify installation, and later troubleshooting. cd ~ ln s ${catalina.base} tomcat 3. Copy the solr.war file to Tomcat s webapp directory. cd ~/tomcat/webapps cp /tmp/apache-solr-3.5.0/dist/apache-solr war solr.war chown tomcat6.tomcat6 solr.war chmod 644 solr.war 4. Assuming Tomcat is running, the solr.war file should automatically be extracted and create a solr webapp. The Tomcat log file ${catalina.base}/logs/catalina.out should be tailed to verify that Solr was successfully deployed. During deployment, a data directory should be created for each core. 5. To modify the amount of logging information displayed by the Solr webapp, create the following files: ${catalina.base}/webapps/solr/web INF/classes/logging.properties Solr Installation Guide 8
10 org.apache.solr.level=warning ${catalina.base}/webapps/solr/web INF/classes/log4j.xml <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j=" <appender name="console" class="org.apache.log4j.consoleappender"> <layout class="org.apache.log4j.patternlayout"> <param name="conversionpattern" value="%d{absolute} %-5p [%c{1}:%l] %m%n" /> </layout> </appender> <appender name="drfa" class="org.apache.log4j.dailyrollingfileappender"> <param name="file" value="${catalina.base}/logs/solr.out"/> <param name="datepattern" value=". yyyy-mm-dd"/> <param name="append" value="true"/> <layout class="org.apache.log4j.patternlayout"> <param name="conversionpattern" value="%d{iso8601} %-5p %c{2} - %m%n"/> </layout> </appender> <category name="org.apache.solr" additivity="false"> <level value="warn"/> <appender-ref ref="console"/> </category> <category name="org.apache.solr" addititivity="false"> <level value="info"/> <appender-ref ref="drfa"/> </category> </log4j:configuration> SOLR SERVER UPGRADE These instructions are designed to provide steps to upgrade a previous Solr installation to the latest version. As such, they will only list changes that must be made to an existing Solr installation. GATHER SOFTWARE 1. Download and extract the Solr files listed in the Solr Server Installation section. UPDATE SOLR FILES 1. Copy the updated jar files needed for Solr. Solr Installation Guide 9
11 cd ${solr.home} mv lib lib_1.4 cp r /tmp/apache-solr-3.5.0/dist/*.jar lib 2. Copy the updated contrib directory. cd ${solr.home} mv contrib contrib_1.4 cp r /tmp/apache-solr-3.5.0/contrib. 3. Update the schema.xml for Nutch cores. This must be done for each Nutch core originally created. cd ${solr.home}/cores/nutch/conf mv schema.xml schema.xml_1.4 cp /tmp/solrsearch/web-inf/conf/nutch_schema.xml schema.xml 4. Update the schema.xml for NTER cores. This must be done for each NTER core originally created. cd ${solr.home}/cores/nter/conf mv schema.xml schema.xml_1.4 cp /tmp/solr-web/web-inf/conf/schema.xml. 5. Update the solrconfig.xml file. This must be done for each core, regardless of the core being used for Nutch or NTER. cd ${solr.home}/cores/${core.name}/conf mv solrconfig.xml solrconfig.xml_1.4 cp /tmp/solrsearch/web-inf/conf/solrconfig.xml. 6. Update the solr.xml file to include the new property solr.contrib.dir. The new file should be similar to the following: <solr persistent="false" sharedlib="lib"> <property name="solr.contrib.dir" value="${solr.home}/contrib"/> <cores adminpath="admin/cores" > <core name="nter" instancedir="cores/nter"/> <core name="nutch" instancedir="cores/nutch"/> <core name="${core.name}" instancedir="cores/${core.name}"/> </cores> </solr> 7. Once it has been verified that Solr is running correctly, remove the old configuration and setup files. rm rf ${solr.home}/lib_1.4 ${solr.home}/contrib_1.4 Solr Installation Guide 10
12 SOLR WEBAPP Redeploy the Solr webapp using the steps listed under Solr Server Installation, Solr Webapp. UPDATE INDEX Because both the solrconfig.xml files and the Nutch schema have changed, a reindexing must be done for all affected cores. For NTER cores, this can be done through the Control Panel of each NTER instance. For Nutch cores, this must be done on the Master NTER node. SECURING SOLR It is highly recommended to secure the Solr installation to prevent unauthorized and unwanted access to the Solr index. By default, Solr is open and unsecured. This means, that anyone with the Solr server s URL has the potential to directly access and manipulate the Solr index. CONFIGURE BASIC AUTHENTICATION Basic authentication forces a username and password credential set to be presented to access the Solr service. 1. Add user accounts to Tomcat that will be used to connect to Solr. Edit the ${catalina.base}/conf/tomcatusers.xml file to include: <tomcat-users> <role rolename="index_admin"/> <user username="${solr.web.user}" password="${solr.web.password}" roles="index_admin"/> </tomcat-users> 2. Configure Basic Authentication to just the Solr webapp by editing ${catalina.base}/webapps/solr/web INF/web.xml: <web-app> <!-- Limit Tomcat s admin user to the admin page --> <security-constraint> <web-resource-collection> <web-resource-name>solr Admin</web-resource-name> <url-pattern>/admin/*</url-pattern/> </web-resource-collection> <auth-constraint> <role-name>admin</role-name> </auth-constraint> </security-constraint> <!-- Limit Tomcat s admin and index_admin to the update page --> Solr Installation Guide 11
13 <security-constraint> <web-resource-collection> <web-resource-name>solr Update</web-resource-name> <url-pattern>/update/*</url-pattern/> </web-resource-collection> <auth-constraint> <role-name>admin</role-name> <role-name>index_admin</role-name> </auth-constraint> </security-constraint> <security-role> <role-name>admin</role-name> <role-name>index_admin</role-name> </security-role> <!-- define login configuration --> <login-config> <auth-method>basic</auth-method> <realm-name>userdatabase</realm-name> </login-config> </web-app> Ensure that any NTER instances connected to this Solr webapp has the correct username and password configured accordingly in their solr spring.xml file. ADVANCED SOLR SECURITY This section describes securing a more complicated Solr installation where a single Solr server is hosting indexes for multiple organizations and institutions. In this use case, the multiple organizations are storing both their local Solr index, and their full text index on a single Solr server. This architecture is described in Figure 2, where the Master Solr server is hosting a collection of cores for the Master NTER installation, Institution A (InstA), and Institution B (InstB). Since each of these installations are storing both their local Solr index, as well as their full text index on the Solr server, they also require a unique OpenSearch portlet. This configuration is atypical and should be configured with caution. Typically, secondary institutions would rely on the Master NTER for the full text index and search capabilities instead of generating their own. However, this arrangement can be useful for test environments, or where the secondary institutions are unable to create their own Solr architecture. Solr Server Solr OpenSearch InstA OpenSearch InstB OpenSearch Servlets Nutch NTER M InstA InstA Nutch InstB InstB Nutch Cores Figure 2 Advanced Multi core Solr Architecture Solr Installation Guide 12
14 CONFIGURE BASIC AUTHENTICATION As with the more basic implementation described under the Securing Solr section above, basic authentication forces a username and password credential set to access a particular Solr instance. However, unlike the above section, each institution will now be configured for secured access, as opposed to the entire Solr site. 1. Add user accounts to Tomcat that will be used to connect to Solr. Edit the ${catalina.base}/conf/tomcatusers.xml file to include an administrative role for each institution as well as a unique administrative user. <tomcat-users> <role rolename="index_admin"/> <role rolename="institution_a_index_admin"/> <role rolename="institution_b_index_admin"/> <user username="${solr.web.user}" password="${solr.web.password}" roles="index_admin"/> <user username="instituion_a_admin" password="${institution_a_password}" roles="institution_a_index_admin"/> <user username="instituion_b_admin" password="${institution_b_password}" roles="institution_n_index_admin"/> </tomcat-users> 2. Configure Basic Authentication to the Solr webapp for each particular institution by editing ${catalina.base}/webapps/solr/web INF/web.xml. Ensure that each role created above is listed in the <security role /> entry and that a <security constraint /> entry is created for each core with the appropriate core admin role. <web-app> <!-- Limit Tomcat s admin user to the admin page --> <security-constraint> <web-resource-collection> <web-resource-name>solr Admin</web-resource-name> <url-pattern>/admin/*</url-pattern/> </web-resource-collection> <auth-constraint> <role-name>admin</role-name> </auth-constraint> </security-constraint> <!-- Limit access to the update page for each institution --> <security-constraint> <web-resource-collection> <web-resource-name>solr Update</web-resource-name> <url-pattern>/{core.name}/update/*</url-pattern/> </web-resource-collection> <auth-constraint> <role-name>admin</role-name> <role-name>{core.index.admin}</role-name> Solr Installation Guide 13
15 </auth-constraint> </security-constraint> <security-role> <role-name>admin</role-name> <role-name>index_admin</role-name> <role-name>institution_a_index_admin</role-name> <role-name>institution_b_index_admin</role-name> </security-role> <!-- define login configuration --> <login-config> <auth-method>basic</auth-method> <realm-name>userdatabase</realm-name> </login-config> </web-app> 3. Ensure that each institution configures their local solr web portlet and Nutch configuration to use the correct username and password. SOLRSEARCH WEBAPP The Solrsearch Webapp is designed to produce OpenSearch compliant results from the Full text index. This is only needed on the Master Solr server hosting the full text index. This webapp should be configured to point to the nutch core created previously. 1. Copy the solrsearch.war file to Tomcat s Webapp directory cp /tmp/solrsearch.war ${catalina.base}/webapps 2. Wait for Tomcat to automatically deploy the portlet, and then edit the ${catalina.base}/webapps/solrsearch/web INF/classes/META INF/solr spring.xml file. This file is used to configure the Solr OpenSearch portlet to use a particular type of Solr server as well as the specifics of that server. Modify the username, password, and url properties of the com.sri.nter.solr.server.basicauthsolrserver bean. If no username or password is used for the remote server, remove those properties: <bean id="com.sri.nter.solr.server.basicauthsolrserver" class="com.sri.nter.solr.server.basicauthsolrserver"> <constructor-arg type="java.lang.string" value="${solr.web.user}"/> <constructor-arg type="java.lang.string" value="${solr.web.password}"/> <constructor-arg type="java.lang.string" value="${solr.url}"/> </bean> Solr Installation Guide 14
16 Or <bean id="com.sri.nter.solr.server.basicauthsolrserver" class="com.sri.nter.solr.server.basicauthsolrserver"> <constructor-arg type="java.lang.string" value="${solr.url}"/> </bean> Ensure that the com.sri.nter.solr.searcher.server corresponds to the correct Solr bean created above. 3. Logging has already been configured for the solrsearch portlet, however, to modify the default settings, update the ${catalina.base}/webapps/solrsearch/web INF/classes/logging.properties and log4j.xml files accordingly. Note that each OpenSearch webapp can only be mapped to a single Solr core. However, to host multiple OpenSearch webapps on the same Tomcat instance, simply rename the WAR file prior to deployment. For example, to create a second OpenSearch webapp for a second NTER instance, perform the following: 1. Copy the solrsearch.war file to Tomcat s Webapp directory cd ${catalina.base}/webapps cp /tmp/solrsearch.war /tmp/nter2solrsearch.war cp /tmp/nter2solrsearch.war. 2. Follow the remaining steps above. SOLRSEARCH WEBAPP UPGRADE Due to the way Tomcat manages jar files during a webapp re installation, it is highly recommended to un deploy the solrsearch webapp and redeploy it as new instead of attempting an upgrade. 1. Stop the Tomcat server and un deploy the solrsearch webapps. cd ${catalina.base} /etc/init.d/tomcat6 stop rm rf solrsearch solrsearch.war /etc/init.d/tomcat6 start 2. Follow the instructions for a clean installation of the SolrSearch webapp. Solr Installation Guide 15
17 SOLR WEB PORTLET INSTALLATION This portlet is used by NTER (Liferay) to connect to an existing Solr index that has already been configured and is running. GATHER SOFTWARE 1. Download and extract the Liferay Solr web portlet to the /tmp directory. cd /tmp wget INSTALLATION 1. Copy the solr web portlet war to Tomcat s Webapp directory. cd ${deploy.dir} cp /tmp/solr-web war. 2. Wait for Tomcat to automatically deploy the portlet, and then edit the ${catalina.base}/webapps/solr webportlet/web INF/classes/META INF/solr spring.xml file. If the Solr server is using Basic Authentication, uncomment the first two constructor args. <bean id="com.liferay.portal.search.solr.server.basicauthsolrserver" class="com.liferay.portal.search.solr.server.basicauthsolrserver"> <constructor-arg type="java.lang.string" value="${solr.url}/solr/${core.name}" /> </bean> Or <bean id="com.liferay.portal.search.solr.server.basicauthsolrserver" class="com.liferay.portal.search.solr.server.basicauthsolrserver"> <constructor-arg type="java.lang.string" value="${solr.web.user}"/> <constructor-arg type="java.lang.string" value="${solr.web.password}"/> <constructor-arg type="java.lang.string" value="${solr.url}/solr/${core.name}"/> </bean> 3. Restart Tomcat to ensure the changes take effect. /etc/init.d/tomcat6 restart SOLR WEB PORTLET UPGRADE Due to the way Tomcat manages jar files during a webapp re installation, it is highly recommended to un deploy the solr web portlet and redeploy it as new instead of attempting an upgrade. Use Liferay s Control Panel to undeploy the portlet, and then redeploy it following the steps above. Solr Installation Guide 16
18 APPENDIX A The following configuration settings were used for search.nterlearning.org. ACCOUNT INFORMATION Solr Server host search.nterlearning.org Solr Server user / password root / Tomcat account tomcat6 INSTALLATION LOCATIONS Directory Referenced As Value Tomcat home ${catalina.home} /usr/share/tomcat6 Tomcat base ${catalina.base} /var/lib/tomcat6 Solr Home directory ${solr.home} /var/lib/solr (maps to /mnt/solr) Solr URL ${solr.url} Solr OpenSearch URL ${opensearch.url} Solr Installation Guide 17
Solr Bridge Search Installation Guide
Solr Bridge Search Installation Guide Table of contents 1. Solr Installation 1.1 Tomcat6 (Web server) installation. 1.2 Apache Solr 3.3.0 installation. 1.3 Install SolrBirge package (preconfigured solr
Tcat Server User s Guide. Version 6 R2 December 2009
Tcat Server User s Guide Version 6 R2 December 2009 Confidential The ideas contained in this publication are subject to use and disclosure restrictions as set forth in the license agreement. Copyright
Programming on the Web(CSC309F) Tutorial: Servlets && Tomcat TA:Wael Aboelsaadat
Programming on the Web(CSC309F) Tutorial: Servlets && Tomcat TA:Wael Aboelsaadat Acknowledgments : This tutorial is based on a series of articles written by James Goodwill about Tomcat && Servlets. 1 Tomcat
Setting up Ensembl Solr Search on an Ubuntu external server 22nd November 2013
Setting up Ensembl Solr Search on an Ubuntu external server 22nd November 2013 1 Background Ensembl uses Solr Apache as its search engine. We provide the indexes and configuration files on our FTP site,
CORISECIO. Quick Installation Guide Open XML Gateway
Quick Installation Guide Open XML Gateway Content 1 FIRST STEPS... 3 2 INSTALLATION... 3 3 ADMINCONSOLE... 4 3.1 Initial Login... 4 3.1.1 Derby Configuration... 5 3.1.2 Password Change... 6 3.2 Logout...
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.................................................
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
Integrating Apache Web Server with Tomcat Application Server
Integrating Apache Web Server with Tomcat Application Server The following document describes how to build an Apache/Tomcat server from all source code. The end goal of this document is to configure the
TCH Forecaster Installation Instructions
RESOURCE AND PATIENT MANAGEMENT SYSTEM TCH Forecaster Installation Instructions (BI) Addendum to Installation Guide and Release Notes Version 8.5 patch 8 Office of Information Technology Division of Information
Written by Wirabumi Software Sunday, 30 December 2012 11:27 - Last Updated Thursday, 03 January 2013 05:52
This tutorial will guide you to insall Openbravo from source, using Linux (Mint 11/Ubuntu 10.04) operating system. 1 Install PostgreSQL PostgreSQL is a database server that used by Openbravo. You should
HSearch Installation
To configure HSearch you need to install Hadoop, Hbase, Zookeeper, HSearch and Tomcat. 1. Add the machines ip address in the /etc/hosts to access all the servers using name as shown below. 2. Allow all
Lucid Key Server v2 Installation Documentation. www.lucidcentral.org
Lucid Key Server v2 Installation Documentation Contents System Requirements...2 Web Server...3 Database Server...3 Java...3 Tomcat...3 Installation files...3 Creating the Database...3 Step 1: Create the
Installation Guide for AmiRNA and WMD3 Release 3.1
Installation Guide for AmiRNA and WMD3 Release 3.1 by Joffrey Fitz and Stephan Ossowski 1 Introduction This document describes the installation process for WMD3/AmiRNA. WMD3 (Web Micro RNA Designer version
Ciphermail Gateway Separate Front-end and Back-end Configuration Guide
CIPHERMAIL EMAIL ENCRYPTION Ciphermail Gateway Separate Front-end and Back-end Configuration Guide June 19, 2014, Rev: 8975 Copyright 2010-2014, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction
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
Pacific Application Server for OpenEdge: Getting Started. Progress OpenEdge 11.5 Workshop
Pacific Application Server for OpenEdge: Getting Started Progress OpenEdge 11.5 Workshop 2015 Legal Disclaimer The contents of these materials are confidential information of Progress Software Corporation
VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com
VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET
Setting Up SSL on IIS6 for MEGA Advisor
Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority
Bull Service & Solutions
Bull Service & Solutions NovaForge NovaForge WebOS Installation Guide Emmanuel Rias Version Date Write by Content 0.1.0 28/11/2007 Emmanuel RIAS Document initialization 0.1.1 06/12/2007 Cédric TRAN-XUAN
http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0
1 Installation and Configuration v2.0 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring
Apache Tomcat Tips and Tricks from the Pros
Apache Tomcat Tips and Tricks from the Pros The webinar will begin shortly... Select audio mode (telephone or VOIP) Telephone dial-in: France: +33 (0) 426 460 175 Germany: +49 (0) 895 4998 6652 Netherlands:
SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com
SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download
Installing Dspace 1.8 on Ubuntu 12.04
Installing Dspace 1.8 on Ubuntu 12.04 This is an abridged version of the dspace 1.8 installation guide, specifically targeted at getting a basic server running from scratch using Ubuntu. More information
Dataworks System Services Guide
Dataworks System Services Guide UNAVCO initially established the GNSS data management service Dataworks as a full stack independent server running on Dell Hardware operating CentOS as its operating system.
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...
KonaKart Portlet Installation for Liferay. 6 th February 2015. DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK
KonaKart Portlet Installation for Liferay 6 th February 2015 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Portlets Portlets can be created for both the store-front
tc Server Webinar Series Deployments
tc Server Webinar Series Large Scale Tomcat Deployments Filip Hanik SpringSource 2009 Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited.
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER AUGUST 2012 STRM uses system configuration files to provide useful characterizations of network data flows. Updates to the system configuration files, available
ZeroTurnaround License Server User Manual 1.4.0
ZeroTurnaround License Server User Manual 1.4.0 Overview The ZeroTurnaround License Server is a solution for the clients to host their JRebel licenses. Once the user has received the license he purchased,
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
How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit)
How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) Introduction Prerequisites This tutorial will show you step-by-step on how to install Multicraft 1.8.2 on a new VPS or dedicated
In this chapter, we lay the foundation for all our further discussions. We start
01 Struts.qxd 7/30/02 10:23 PM Page 1 CHAPTER 1 Introducing the Jakarta Struts Project and Its Supporting Components In this chapter, we lay the foundation for all our further discussions. We start by
EMC Clinical Archiving
EMC Clinical Archiving Version 1.7 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2014-2015 EMC Corporation. All Rights
Installation Guide for contineo
Installation Guide for contineo Sebastian Stein Michael Scholz 2007-02-07, contineo version 2.5 Contents 1 Overview 2 2 Installation 2 2.1 Server and Database....................... 2 2.2 Deployment............................
Content Management System
Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires
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
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
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
Installing Exchange and Extending the Active Directory Schema for Cisco Unity 8.x
CHAPTER 6 Installing Exchange and Extending the Active Directory Schema for Cisco Unity 8.x In this chapter, you do the following tasks in the order listed: 1. Install Exchange on the Cisco Unity server,
IUCLID 5 Guidance and Support
IUCLID 5 Guidance and Support Web Service Installation Guide July 2012 v 2.4 July 2012 1/11 Table of Contents 1. Introduction 3 1.1. Important notes 3 1.2. Prerequisites 3 1.3. Installation files 4 2.
Secure Messaging Server Console... 2
Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating
Project Management (PM) Cell
Informatics for Integrating Biology and the Bedside i2b2 Installation/Upgrade Guide (Linux) Project Management (PM) Cell Document Version: 1.5.1 i2b2 Software Version: 1.5 Table of Contents About this
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...
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
Luminis Platform Banner Document Management Suite Portal Guide. Release 5.0.3 November 2011
Luminis Platform Banner Document Management Suite Portal Guide Release 5.0.3 November 2011 Banner, Colleague, PowerCAMPUS, Luminis and Datatel are trademarks of Ellucian or its affiliates and are registered
EMC Documentum Content Services for SAP Repository Manager
EMC Documentum Content Services for SAP Repository Manager Version 6.0 Installation Guide P/N 300 005 500 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com
Crawl Proxy Installation and Configuration Guide
Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license
Install guide for Websphere 7.0
DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,
vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide
vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces
Running multiple Tomcat versions on the same host
Running multiple Tomcat versions on the same host Installation guide StreamServe 4.x Rev A Running multiple Tomcat versions on the same host Installation guide StreamServe 4.x Rev A 2005 StreamServe, Inc.
SSO Plugin. Integration for Jasper Server. J System Solutions. http://www.javasystemsolutions.com Version 3.6
SSO Plugin Integration for Jasper Server J System Solutions Version 3.6 JSS SSO Plugin Integration with Jasper Server Introduction... 3 Jasper Server user administration... 4 Configuring SSO Plugin...
Upgrading From PDI 4.1.x to 4.1.3
Upgrading From PDI 4.1.x to 4.1.3 This document is copyright 2011 Pentaho Corporation. No part may be reprinted without written permission from Pentaho Corporation. All trademarks are the property of their
ArpViewer Manual Version 1.0.6 Datum 30.9.2007
SWITCHaai ArpViewer Manual Version 1.0.6 Datum 30.9.2007 AAI C.Witzig Content 1. Introduction...3 2. Functional Description...3 3. Description of the Components...3 3.1. Arpfilter...3 3.2. Controller...4
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
Wolfr am Lightweight Grid M TM anager USER GUIDE
Wolfram Lightweight Grid TM Manager USER GUIDE For use with Wolfram Mathematica 7.0 and later. For the latest updates and corrections to this manual: visit reference.wolfram.com For information on additional
Administrator s Guide: perfsonar MDM 3.0
Administrator s Guide: perfsonar MDM 3.0 Last Updated: 16-05-08 Activity: JRA1 Dissemination Level PU Document Code: GN2-08-057 Authors: Maciej Glowiak (PSNC), Gina Kramer (DANTE), Loukik Kudarimoti (DANTE),
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
DocuShare Installation Guide
DocuShare Installation Guide Publication date: February 2011 This document supports DocuShare Release 6.6.1 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California
AmbrosiaMQ-MuleSource ESB Integration
AmbrosiaMQ-MuleSource ESB Integration U1 Technologies AmbrosiaMQ MuleSource ESB Integration 1 Executive Summary... 3 AmbrosiaMQ Installation... 3 Downloading and Running the Installer... 3 Setting the
Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014
Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...
Spectrum Technology Platform
Spectrum Technology Platform Version 8.0.0 SP2 RIA Getting Started Guide Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or
How To Install An Org Vm Server On A Virtual Box On An Ubuntu 7.1.3 (Orchestra) On A Windows Box On A Microsoft Zephyrus (Orroster) 2.5 (Orner)
Oracle Virtualization Installing Oracle VM Server 3.0.3, Oracle VM Manager 3.0.3 and Deploying Oracle RAC 11gR2 (11.2.0.3) Oracle VM templates Linux x86 64 bit for test configuration In two posts I will
Tool-Assisted Knowledge to HL7 v3 Message Translation (TAMMP) Installation Guide December 23, 2009
Tool-Assisted Knowledge to HL7 v3 Message Translation (TAMMP) Installation Guide December 23, 2009 Richard Lyn [email protected] Jianwei Yang [email protected] Document Revision History Rev. Level Date
1 How to install CQ5 with an Application Server
1 How to install CQ5 with an Application Server Contents 1.1. WebSphere v6.1... 1 1.2. WebLogic v10.3... 3 1.3. Tomcat v6... 6 1.4. JBoss v4... 8 1.5. Generic Procedures... 10 The following sections detail
Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2
Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Table of Contents Table of Contents... 1 I. Introduction... 3 A. ASP.NET Website... 3 B. SQL Server Database... 3 C. Administrative
About This Document 3. Integration Overview 4. Prerequisites and Requirements 6
Contents About This Document 3 Integration Overview 4 Prerequisites and Requirements 6 Meeting the Requirements of the cpanel Plugin... 6 Meeting the Requirements of Presence Builder Standalone... 6 Installation
How To - Implement Single Sign On Authentication with Active Directory
How To - Implement Single Sign On Authentication with Active Directory Applicable to English version of Windows This article describes how to implement single sign on authentication with Active Directory
Installation Guide: Delta Module Manager Launcher
Installation Guide: Delta Module Manager Launcher Overview... 2 Delta Module Manager Launcher... 2 Pre-Installation Considerations... 3 Hardware Requirements... 3 Software Requirements... 3 Virtualisation...
To install and configure SSL support on Tomcat 6, you need to follow these simple steps. For more information, read the rest of this HOW-TO.
pagina 1 van 6 Apache Tomcat 6.0 Apache Tomcat 6.0 SSL Configuration HOW-TO Table of Contents Quick Start Introduction to SSL SSL and Tomcat Certificates General Tips on Running SSL Configuration 1. Prepare
IUCLID 5 Guidance and support. Installation Guide Distributed Version. Linux - Apache Tomcat - PostgreSQL
IUCLID 5 Guidance and support Installation Guide Distributed Version Linux - Apache Tomcat - PostgreSQL June 2009 Legal Notice Neither the European Chemicals Agency nor any person acting on behalf of the
Mastering Advanced GeoNetwork
Mastering Advanced GeoNetwork Heikki Doeleman & Jose García http://geocat.net Contents Introduction Setup GeoNetwork with Tomcat/Apache Configure Postgres database GeoNetwork advanced configuration Objectives
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.
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
IISADMPWD. Replacement Tool v1.2. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD. Web Active Directory, LLC
IISADMPWD Replacement Tool v1.2 Installation and Configuration Guide Instructions to Install and Configure IISADMPWD Replacement Tool v1.2 Web Active Directory, LLC Contents Overview... 2 Installation
Quick Install Guide. Lumension Endpoint Management and Security Suite 7.1
Quick Install Guide Lumension Endpoint Management and Security Suite 7.1 Lumension Endpoint Management and Security Suite - 2 - Notices Version Information Lumension Endpoint Management and Security Suite
UFTP AUTHENTICATION SERVICE
UFTP Authentication Service UFTP AUTHENTICATION SERVICE UNICORE Team Document Version: 1.1.0 Component Version: 1.1.1 Date: 17 11 2014 UFTP Authentication Service Contents 1 Installation 1 1.1 Prerequisites....................................
Using the Adobe Access Server for Protected Streaming
Adobe Access April 2014 Version 4.0 Using the Adobe Access Server for Protected Streaming Copyright 2012-2014 Adobe Systems Incorporated. All rights reserved. This guide is protected under copyright law,
Product Documentation. Pivotal tc Server. Version 3.x. Getting Started with Pivotal tc Server. Rev: 03. 2014 Pivotal Software, Inc.
Product Documentation Pivotal tc Server Version 3.x Rev: 03 2014 Pivotal Software, Inc. Copyright Notice Copyright Copyright 2014 Pivotal Software, Inc. All rights reserved. Pivotal Software, Inc. believes
Installing and Running Tomcat 5.5
The examples for the Ajax chapter of jquery in Action require the services of server-side resources in order to operate. In order to address the needs of a variety of readers, the back-end code has been
CipherMail Gateway Installation Guide
CIPHERMAIL EMAIL ENCRYPTION CipherMail Gateway Installation Guide March 26, 2015, Rev: 9094 Copyright c 2008-2015, ciphermail.com. Acknowledgments: Thanks goes out to Andreas Hödle for feedback and input
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
DocuShare Installation Guide
DocuShare Installation Guide Publication date: May 2009 This document supports DocuShare Release 6.5/DocuShare CPX Release 6.5 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue
Upgrading From PDI 4.0 to 4.1.0
Upgrading From PDI 4.0 to 4.1.0 This document is copyright 2011 Pentaho Corporation. No part may be reprinted without written permission from Pentaho Corporation. All trademarks are the property of their
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
Setting Up CAS with Ofbiz 5
1 of 11 20/01/2009 9:56 AM Setting Up CAS with Ofbiz 5 This wiki explains how to setup and test CAS-Ofbiz5 integration and testing on a Centos 5.2 box called "elachi". In this configuration Ofbiz and the
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
Scoreboard 2.5/2.7 Installation Guide. For Apache Tomcat 7.0 On Windows 2003/2008 Server, 64-bit
Scoreboard 2.5/2.7 Installation Guide For Apache Tomcat 7.0 On Windows 2003/2008 Server, 64-bit Updated September 3, 2013 1 Scoreboard and Connect By Spider Strategies Minimum Server Requirements The following
Working with WebSphere 4.0
44 Working with WebSphere 4.0 This chapter is for developers who are familiar with WebSphere Application Enterprise Server, version 4.0 (WAS 4.0) and would like to deploy their applications using WAS 4.0.
PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1
PingFederate Salesforce Connector Version 4.1 Quick Connection Guide 2011 Ping Identity Corporation. All rights reserved. PingFederate Salesforce Quick Connection Guide Version 4.1 June, 2011 Ping Identity
Net Services: File System Monitor
Net Services: File System Monitor Settings for ExtremeZ-IP file server volumes...1 Setup of the Net Services server...2 Configuring and testing the Net Services server...3 Installing File System Monitor...4
Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:
Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,
McAfee One Time Password
McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System
Cassandra Installation over Ubuntu 1. Installing VMware player:
Cassandra Installation over Ubuntu 1. Installing VMware player: Download VM Player using following Download Link: https://www.vmware.com/tryvmware/?p=player 2. Installing Ubuntu Go to the below link and
Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications
Configuration Guide Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications This document describes how to configure Web authentication with BEA WebLogic for the SAS Web applications.
Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca!
Quick Start Guide Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! How to Setup a File Server with Cerberus FTP Server FTP and SSH SFTP are application protocols
Predictive Analytics Client
Predictive Analytics Client ONE Automation Platform Installation Guide Version: 11.2 Publication Date: 2015-10 Automic Software GmbH ii Copyright Copyright Automic and the Automic logo are trademarks owned
Hadoop Data Warehouse Manual
Ruben Vervaeke & Jonas Lesy 1 Hadoop Data Warehouse Manual To start off, we d like to advise you to read the thesis written about this project before applying any changes to the setup! The thesis can be
