TRANSFORM DST Deployment Guide v1.0

Size: px
Start display at page:

Download "TRANSFORM DST Deployment Guide v1.0"

Transcription

1 TRANSFORM DST Deployment Guide v1.0

2 Content 1 Introduction Intended audience Glossary Hardware Requirements Software Requirements Specification Installation Operating System Java Version RDBMS PostgreSQL... 6 Enabling PostGIS... 8 Upgrading PostGIS Application Server Tomcat Webserver Apache Geoserver Liferay Portal TRANSFORM specific software Data Base data (OpenStreetMap etc.) Transform data sets (per city) Harmonizing of data Lessons learned Outlook... 20

3 List of Figures: Figure 1: Liferay directory structure Figure 2: Example of worker properties file Figure 3: Example of worker entries for Liferay in the sites-enabled/default file on the server Figure 4: Excerpt of city staging scheme Figure 5: Consolidated data model Figure 6: Import workflow to consolidated scheme Figure 7: Amsterdam: Data on (very detailed) building data Figure 8: Copenhagen: Only data for a selected number of buildings was available for the tool development Figure 9: Vienna: Only block based data was available for a small part of the city (Aspern Seestadt) Figure 10: Hamburg: Data was available for blocks in one district (Wilhelmsburg) Figure 11: Genoa: Data was available as coordinates for public lighting installations for the whole city Figure 12: Data was available on building level for one district (Grand Lyon)... 19

4 1 INTRODUCTION This document is the technical description ( Deployment Guide ) for the TRANSFORM DST. It describes the hard- and software requirements to get the system up and running. 1.1 Intended audience The Deployment Guide is intended for technical staff responsible for the installation of hardand software in the cities interested using the tool. 2 GLOSSARY Apache Webserver Software CPU Central Processing Unit (processor) DST Decision Support Tool GB Gigabyte Liferay Portal Software Portlets are pluggable user interface software Portlet components that are managed and displayed in a web portal. PostGIS Spatial extension for PostgreSQL PostgreSQL Relational database system RAM Random Access Memory RDBMS Relational database management system Tomcat Application Server 3 HARDWARE REQUIREMENTS The TRANSFORM DST is running as a web application on a web server and should run on decent web server hardware to produce a smooth user experience. Since the DST has been developed as a Liferay Portlet the system needs to be able to run the application container properly. The following is the minimum requirements as suggested by the TRANSFORM development team (further information can be found e.g. here: The suggested hardware requirements are also fitting the specifications of the used database (PostgreSQL) as well as the web server (Apache). For each of the applications it is most important to have them configured properly which will be describe below in some detail in the software section. These are the minimum hardware requirements: CPU RAM Disk Space Quad core CPU (>2,5 GHz) >8GB >500GB (depending on the used geographic data in the database, see below)

5 4 SOFTWARE REQUIREMENTS 4.1 Specification In order to be able to be running the DST several software components need to be preinstalled on the server. This is a list of (exemplary) components which are mandatory to run the tool. Operating System (OS) 64Bit Linux (optional: Windows Server) Java Version JDK >1.6 Database PostgreSQL > 9.1 Webserver Apache >2.2 Application Server Tomcat >7.0 Portal Software Liferay >6.1 Transform Specific Portlet Servlet DST Frontend Portlet Transform Connector 4.2 Installation Operating System The DST will be most probably be installed on an already existing web server. This server should be running an 64bit operating system (preferably Linux but a Windows server is also suitable). The installation of such an operating system is beyond the scope of this deployment guide Java Version In order to be able to run the application server Tomcat (see below) the system needs to be running a recent Java version, preferably Oracle Java in a version of 1.7 or above. Keep in mind that you might be already running Java. To check this issue the following command on the command line: java -version If you see an output like: java version "1.7.0_25" Java(TM) SE Runtime Environment (build 1.7.0_25-b15) Java HotSpot(TM) 64-Bit Server VM (build b01, mixed mode)

6 you should be able to run Tomcat, otherwise install Java like this: The installation of Java varies widely on different operating systems. Here are some examples of how to install Java on Debian/Ubuntu Linux and Windows machines: Debian/Ubuntu: On the command line run the following command: sudo apt-get install oracle-java7-installer On Windows : For a recent version of Oracle Java point your browser here: and download the Java installer to your hard drive. After the download you should have an executable installer file. To install Java just click this installer twice to execute it and then follow the instructions on the screen. After the installation has finished you should be able to run Java programs on your Windows computer RDBMS PostgreSQL The DST stores its data in a database. There are many different database systems on the market but for the DST the TRANSFORM team has chosen the PostgreSQL database system since it provides also a spatial extension (PostGIS, described below). This deployment guide will only explain the standard way of installing the database system software on your server which should lead to a system capable of running the DST. Keep in mind, though, that there are numerous ways to fine tuning a database system like PostgreSQL for higher workloads etc. which is beyond the scope of this guide. In order to do so please refer to internet searches on how to fine tune PostgreSQL. To install PostgreSQL do the following: Debian/Ubuntu: On the command line run the following command: sudo apt-get install postgresql On Windows browse to the following site:

7 and download the Enterprise installer for your operating system. If you have done so execute the installer and follow the instructions on your screen. The Enterprise installer includes also PostGIS (see next chapter) which you can tick during the installation process to include the installation on your hard drive Spatial extension PostGIS PostGIS is a so called extension to your PostgreSQL database to enable the handling of geographic/geometric objects in the database. To install it do the following: Debian/Ubuntu: Prerequisite on Linux is that you need to have PostgreSQL installed before you can install PostGIS. So, after you have installed PostgreSQL see preceding chapter, issue the following command: sudo apt-get install postgis On Windows : To install PostGIS on Windows either use the Enterprise installer (see above) and tick the PostGIS installation during the installation process (this is the preferred way of installing PostGIS) OR point your browser to the following site: and download the PostGIS version apprpopriate to your PostgreSQL version (i.e. if you are running PostgreSQL 9.1 choose the directory pg91 and download e.g. postgis-pg91-binaries-2.0.6w64.zip if you are on a 64bit Windows Server machine). Unzip the downloaded file and and run the executable. To spatially enable a database in PostgreSQL with PostGIS functionalities the following procedures need to be applied after installing PostGIS (both on Linux and Windows machines): The PostGIS site cites the following 1 : These instructions are for PostgreSQL 9.1 and higher, PostGIS 2.0 and higher that is compiled with raster support. Note: if you have postgis, without raster support, you can not use CREATE EXTENSION. Refer to PostGIS install. 1 Source:

8 Enabling PostGIS PostGIS is an optional extension that must be enabled in each database you want to use it in before you can use it. Installing the software is just the first step. DO NOT INSTALL it in the database called postgres. Connect to your database with psql or PgAdmin. Run the following SQL: -- Enable PostGIS (includes raster) CREATE EXTENSION postgis; -- Enable Topology CREATE EXTENSION postgis_topology; -- fuzzy matching needed for Tiger CREATE EXTENSION fuzzystrmatch; -- Enable US Tiger Geocoder CREATE EXTENSION postgis_tiger_geocoder; Upgrading PostGIS To upgrade PostGIS, you first have to install the latest binaries and then upgrade each database you have PostGIS installed in For example connect to database you want to upgrade and if you just installed binaries for You can upgrade from 2.0 to 2.1, 2.2 et.c using this approach. To go from 1.* to 2.* you need to do a hard upgrade. Refer to PostGIS install for more extensive instructions. Note: that as of PostGIS and PostGIS 2.0.6, you need to set environment variables to get full features. -- Upgrade PostGIS (includes raster) ALTER EXTENSION postgis UPDATE TO "2.1.4"; -- Upgrade Topology ALTER EXTENSION postgis_topology UPDATE TO "2.1.4"; -- Upgrade US Tiger Geocoder ALTER EXTENSION postgis_tiger_geocoder UPDATE TO "2.1.4"; Application Server Tomcat The DST is running as a Portlet in the Liferay portal (see below). In order to be able to be running Liferay an application server software (Java container) needs to be installed on the server. There are different application server software on the market but the TRANSFORM team has chosen Apache Tomcat since there is a bundled version available that combines Liferay and Tomcat in one package for easier installation. In order to get Tomcat and Liferay running you need to download this bundle. To be consistent this will be explained in chapter Liferay Portal. If you are already running Tomcat on your system you need to deploy Liferay within your installation. This will also be covered in chapter

9 4.2.5 Webserver Apache Apache is the component responsible for serving web content to the clients (such as HTML pages etc.). For security reasons it is also used as a proxy to forward request to Tomcat. If you are running a web server you most probably will have Apache already running there. If not do the following: Debian/Ubuntu: Issue the following command on the command line: sudo apt-get install apache2 in order to be able to use Apache as a proxy for Tomcat you need to install mod-jk like this: sudo apt-get install libapache2-mod-jk On Windows you need to do the following: The easiest way to get Apache running on Windows is to download a binary package from these sites: Webserver Apache2 v2.2: mod-jk for Windows windows-x86_64-httpd-2.4.x.zip or if you are running on another operating system visit: After having installed the above packages you will need to create a so called worker in mod_jk and Apache2 which will handle the forwarding of resources. To create such a worker in Apache follow these instructions: Geoserver The Transform DST is -to a great extent- based on spatially explicit data which is served via a server application called Geoserver. This application is able to visualise spatial datasets stored in

10 (but not limited to) PostGIS on the PostgreSQL databases. To be run it needs an application server as Java container. In our case we chose Tomcat since it was already bundled with Liferay (see next chapter). To install Geoserver you will need to go to its download site ( and download the latest stable version of Geoserver (at the time of writing v2.6.1). Important: In the case of the DST it is recommended that you download the Web Archive (war) version of the Geoserver application to be able to deploy it in the already existing Tomcat installation to be found here: If your Tomcat is configured for auto-deployment you will just need to copy this war file into the webapps folder of your Tomcat installation and Geoserver should be deployed. To be able to reach the installation via the internet you will need to create a separate entry in the mod_jk worker file (see previous chapter). After successful installation you should be able to reach Geoserver via the following URL: or (via mod:jk worker): Liferay Portal The Liferay Portal is the environment the Transform DST is running in. It is a Java application that is run as a web application through an application server like Tomcat. The easiest way to install it is to download a Liferay/Tomcat bundle (see next sub chapter) Standalone installation (Tomcat Liferay bundle) If you do not already have an instance of Tomcat running on your system or you would like to run a version dedicated to Liferay alone on your system you can download a bundle from the following location: You can either choose the Commutiy Edition (free) or the Enterprise Subscription which you will have to pay a fee for. The Community Edition provides everything we need for running the Transfrom DST. To download the bundle click the drop down list box and choose Bundled with Tomcat then click Go. After the download has finished you will have to unzip the downloaded zip file on the filesystem of your server.

11 You will get the following directory structure: Figure 1: Liferay directory structure To start the Liferay portal you need to change to the following directory: /var/lib/liferay-portal ce-ga3/tomcat /bin And issue the following command:./startup.sh This should start Tomcat and deploy the Liferay portal. After successful start the portal should be available at: After ensuring that Liferay is reachable at this location you will have to add an entry to the mod_jk worker file (see Figs. 2 and 3).

12 Figure 2: Example of worker properties file Figure 3: Example of worker entries for Liferay in the sites-enabled/default file on the server Installation as Web Archive (war) If you are already running Tomcat on your system please follow the steps provided by the Liferay team to be found here: TRANSFORM specific software DST Frontend Portlet The Transform DST Portlet can be deployed with the provided war file (TransformFrontend-portlet war). This file can be deployed as follows:

13 1. Stop Tomcat. 2. Delete existing deployment. If you have previously deployed "foo.war" in TOMCAT_HOME/webapps, then it has been unpacked into webapps/foo/... You must delete this directory and all its contents. On Unix, this can be done with rm -r $TOMCAT_HOME/webapps/foo 3. Copy WAR file to TOMCAT_HOME/webapps/. 4. Start Tomcat. To change the database settings of the deployed war file (Tomcat unpacks the warfile into a directory), go to ROOT/WEB-INF/classes (ROOT of your unpacked webapp). Create a file called portlet-ext.properties as described in /wiki/main/database+configuration Transform Connector (for mapping functionalities) The Transform DST includes mapping functionalities to visualise and work with spatial data stored in the PostGIS database. To let the DST interface interact with the data in the database the DST uses a servlet (the TransformConnector) which is provided as a war file (TransformConnector_v[ ].war). This file can be deployed automatically in the Tomcat webapp directory (which is the same procedure as the deployment of the Transform Frontend portlet. See previous chapter). The Transform Connector is using PHP for the database connections for its graphical user interface (GUI) elements. To be able to run PHP code within Tomcat please refer to the following site: Data Base data (OpenStreetMap etc.) The mapping functionality of the DST is on the one hand using so called base maps which serve the purpose to let the user orient his/herself on the map. This purpose is served by OpenStreetMap data being loaded from the Geofabrik site into the GUI Transform data sets (per city) Each city provided more or less complex datasets to realize the implementation of certain measures according to their needs. The datasets are stored in a particular staging area in order to do the needed pre-processing e.g. completing and cleansing of the data. Therefore six different city schemes within the PostgreSQL database lportal were created. The database for keeping all

14 the data is the same as it used for running the Liferay instance. Within this database, the following schemes with the objective to keep the staging data are currently available: amsterdam copenhagen genua hamburg lyon public vienna The data within the public scheme contains all the entities which are created and used by the Liferay instance and a consolidated data model, star schema (Error! Reference source not found.) integrating all the available data from all six cities. The import of the data to the city staging areas (schemes) is done by the OSS application QGIS if the data sources are comprised of georeferenced datasets e.g. shapefiles or linked datasources e.g. Web Map Service. In case of textual based data e.g. CSV, XLS data files this is done by the commercial database administration and development SW Navicat. Navicat provides also the functionality for importing various different file formats to a DB by a so called Import Wizard. Within the Figure 4 an excerpt of the current status of available staging data within the DB is shown (Amsterdam and Hamburg):

15 Figure 4: Excerpt of city staging scheme

16

17 Based on the data within the staging schemes various SQL scripts are developed to create appropriate temporary result tables providing the necessary data for implementing the on top applied measure definitions. Afterwards the cleaned and completed data within the six city stages is imported to the consolidated scheme (Fig. 5). This is done by hand crafted DML SQL scripts, because of the very individual structure and content of the data provided. The basic workflow although can be described as follows (Fig. 6Error! Reference source not found.): 1. import the name of the source table and the mapping of source key and surrogate key to the table trnsfrm_keymap table 2. import the geometric objects (features) with additional meta information about level of detail (LOD) to the trnsfrm_feature table 3. import all the LOD related additional information to generic or city specific LOD entities (tables), e.g. district, block, building, network information 4. import all the available given energy related information to the generic or city specific entities, e.g. electricity, gas, warm water, heat consumption Key Mapping Pre-processed city data table/dml SQL Features For each new city Generic and specific level of detail (LOD) meta information Energy consumption related information Finished Figure 6: Import workflow to consolidated scheme

18 These four steps and the step for providing the appropriate staging area have to be done for each new city to be imported to the system. The analysis work to be able to interpret, cleanse and complete the given data has to be done in advance. Without an pre-defined process starting on the city side taking into account the restrictions and possibilities on the organizational levels point of view and enabling governance processes the technical process enabling a frequent and lower effort data transition workflow stays an high effort and very individual less efficient task. For the sake of the given scientific project with the objective to show the possibilities of such a system it is although shown that the requirements implementing the measures and running the simulation can be reached Harmonizing of data As described in the previous chapter the data sets provided by the Transform partner cities varied not only hugely in their content but also in their spatio-temporal resolution. Often the data sets differed within each city (e.g. data sets on building block, street level, district and city level). Often detailed data had been provided without context information (meta-data) which would have been needed to develop a measure (e.g. gas consumption data were delivered without building information). Figures 7 to 12 display the great differences in resolution within the data sets for each city. Figure 7: Amsterdam: Data on (very detailed) building data Figure 8: Copenhagen: Only data for a selected number of buildings was available for the tool development Figure 8: Vienna: Only block based data was available for a small part of the city (Aspern Seestadt) Figure 9: Hamburg: Data was available for blocks in one district (Wilhelmsburg)

19 Figure 10: : Genoa: Data was available as coordinates for public lighting installations for the whole city Figure 11: Data was available on building level for one district (Grand Lyon) Within WP3 a process has been developed to harmonize those data: 1. Request cities to provide homogenous data sets 2. Request cities to provide context information 3. Do an online research to acquire needed context information 4. Pre-process data to assure spatial and temporal homogeneity Furthermore due to the constellation of the project, data have been provided on a city level (WP2) and often in-depth information on a neighbourhood-level (WP4 SULs). The heterogeneity had several reasons: Besides a lack of European or even national standards, privacy issues lead to huge diversity of data quality and format. In one example a data set had been created by the project partner but due to the national law the data could not be used outside of the municipality and therefore only default values have been used in the Decision Support Tool Lessons learned The data collection for the development of the TRANSFORM DST was an iterative and sometimes cumbersome task since TRANSFORM had to deal with 6 different city administrations which meant 6 different cultures and privacy legislations as well as 6 different levels of maturity when it comes to the monitoring and availability of energy related data within the city administrations. In most cases some of the relevant data was not in the hands of the city but was owned and collected by the local energy provider who was reluctant (sometimes not allowed) to deliver such needed datasets. As stated in the last chapter the delivered datasets were of different quality and spatio-temporal resolution: Some datasets were based on yearly sums of energy consumption numbers, some had a finer resolution. Some data sets where data from the near past (2013), some were quite old ones which showed that there is a huge need for standardised datasets in order to foster an in depth look and a development of CO2 reduction measures and to have them shared between cities.

20 4.3.5 Outlook As said in the last chapter from the data perspective the TRANSFORM project showed that there is a huge need for standardised data sets when it comes to comparing performances of the energy consumption (and production) within the different European cities. The TRANSFORM project therefore proposes the following: Since the energy related data in the European cities is inhomogeneous at the moment we will need The adoption of already established standards and protocols within the energy data community. Comparable data will help cities analyse their situation and will strengthen results in this area open and shared data initiatives to be joined by the cities and data will have to be made public in form of Open Government Data and Linked Open Data energy providers should be forced to deliver needed datasets if they are necessary for public interests, i.e. the development of measures to reduce CO2 emissions

Installation Guide for contineo

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............................

More information

OpenGeo Suite for Linux Release 3.0

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

More information

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

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

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

More information

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

Spectrum Spatial Analyst Version 4.0. Installation Guide for Linux. Contents:

Spectrum Spatial Analyst Version 4.0. Installation Guide for Linux. Contents: Spectrum Spatial Analyst Version 4.0 Installation Guide for Linux This guide explains how to install the Spectrum Spatial Analyst on a Unix server (Ubuntu). The topics covered in this guide are: Contents:

More information

Installation, Configuration and Administration Guide

Installation, Configuration and Administration Guide Installation, Configuration and Administration Guide ehd10.0.1 everything HelpDesk Installation, Configuration and Administration Guide GroupLink Corporation 2013 GroupLink Corporation. All rights reserved

More information

CDH installation & Application Test Report

CDH installation & Application Test Report CDH installation & Application Test Report He Shouchun (SCUID: 00001008350, Email: she@scu.edu) Chapter 1. Prepare the virtual machine... 2 1.1 Download virtual machine software... 2 1.2 Plan the guest

More information

3. Installation and Configuration. 3.1 Java Development Kit (JDK)

3. Installation and Configuration. 3.1 Java Development Kit (JDK) 3. Installation and Configuration 3.1 Java Development Kit (JDK) The Java Development Kit (JDK) which includes the Java Run-time Environment (JRE) is necessary in order for Apache Tomcat to operate properly

More information

IUCLID 5 Guidance and Support

IUCLID 5 Guidance and Support IUCLID 5 Guidance and Support Installation Guide for IUCLID 5.3 Client-Server Architecture Linux February 2013 Legal Notice Neither the European Chemicals Agency nor any person acting on behalf of the

More information

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing Installation Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License

More information

ConcourseSuite 7.0. Installation, Setup, Maintenance, and Upgrade

ConcourseSuite 7.0. Installation, Setup, Maintenance, and Upgrade ConcourseSuite 7.0 Installation, Setup, Maintenance, and Upgrade Introduction 4 Welcome to ConcourseSuite Legal Notice Requirements 5 Pick your software requirements Pick your hardware requirements Workload

More information

DocuShare Installation Guide

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

More information

SpagoBI exo Tomcat Installation Manual

SpagoBI exo Tomcat Installation Manual SpagoBI exo Tomcat Installation Manual Authors Luca Fiscato Andrea Zoppello Davide Serbetto Review Grazia Cazzin SpagoBI exo Tomcat Installation Manual ver 1.3 May, 18 th 2006 pag. 1 of 8 Index 1 VERSION...3

More information

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.5

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.5 Citrix EdgeSight for Load Testing Installation Guide Citrix EdgeSight for Load Testing 3.5 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License

More information

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Note Before using this information and the product

More information

Net/FSE Installation Guide v1.0.1, 1/21/2008

Net/FSE Installation Guide v1.0.1, 1/21/2008 1 Net/FSE Installation Guide v1.0.1, 1/21/2008 About This Gu i de This guide walks you through the installation of Net/FSE, the network forensic search engine. All support questions not answered in this

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Installing and Administering VMware vsphere Update Manager

Installing and Administering VMware vsphere Update Manager Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

DocuShare Installation Guide

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

More information

Workshop Advanced GeoNetwork

Workshop Advanced GeoNetwork Workshop Advanced GeoNetwork Jose Garcia Heikki Doeleman OSGIS Nottingham 2012 Table of contents Introduction A horizontally scaled, load-balanced cluster External security system Setup PC Configuration

More information

Xpert.ivy 4.2. Server Guide

Xpert.ivy 4.2. Server Guide Xpert.ivy 4.2 Server Guide Xpert.ivy 4.2: Server Guide Copyright 2008-2011 ivyteam AG Table of Contents 1. Preface... 1 Audience... 1 2. Introduction... 2 Overview... 2 Installation Environment... 2 Server

More information

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and

More information

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 Tool-Assisted Knowledge to HL7 v3 Message Translation (TAMMP) Installation Guide December 23, 2009 Richard Lyn lynrf@mcmaster.ca Jianwei Yang yangj29@mcmaster.ca Document Revision History Rev. Level Date

More information

Install guide for Websphere 7.0

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,

More information

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Version 3.0 Please note: This appliance is for testing and educational purposes only; it is unsupported and not

More information

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00 vcenter Chargeback 1.0 EN-000186-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product

More information

Predictive Analytics Client

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

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Getting Started with ESXi Embedded

Getting Started with ESXi Embedded ESXi 4.1 Embedded vcenter Server 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent

More information

IUCLID 5 Guidance and Support

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.

More information

Enterprise Service Bus

Enterprise Service Bus We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications

More information

EIOBoard Intranet Installer Guide

EIOBoard Intranet Installer Guide Savance 1111 W. Oakley Park Rd. Ste 103, Commerce Township, MI 48390 Phone: 248-478-2555 Fax: 248-478-3270 www.eioboard.com support@eioboard.com www.savance.com 2013 Table of Contents System Requirements

More information

Install BA Server with Your Own BA Repository

Install BA Server with Your Own BA Repository Install BA Server with Your Own BA Repository This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

Installation Process

Installation Process Installation Process Aivika One Lite New Dynamic Solutions BVBA Contents Contents... 2 Introduction... 3 Aivika One Lite introduction... 4 Concept... 4 Components... 4 Deploying Aivika One Lite... 5 Supported

More information

AXIOM 4 AXIOM SERVER GUIDE

AXIOM 4 AXIOM SERVER GUIDE AXIOM 4 AXIOM SERVER GUIDE iconcur Software Corporation 1266 West Paces Ferry Road Atlanta, GA 30327-2306 Axiom is a trademark of iconcur Software Corporation. All other product and company names are trademarks

More information

Quark Publishing Platform 10.1 ReadMe

Quark Publishing Platform 10.1 ReadMe Quark Publishing Platform 10.1 ReadMe CONTENTS Contents Quark Publishing Platform 10.1 ReadMe...6 Quark Publishing Platform components...7 Compatibility matrix...7 Server components...10 Other optional

More information

VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com

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

More information

Installation and Configuration Guide for Windows and Linux

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

More information

VMware Horizon FLEX User Guide

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

More information

Mastering Advanced GeoNetwork

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

More information

Parallels Plesk Automation

Parallels Plesk Automation Parallels Plesk Automation Contents Get Started 3 Infrastructure Configuration... 4 Network Configuration... 6 Installing Parallels Plesk Automation 7 Deploying Infrastructure 9 Installing License Keys

More information

IDENTIKEY Server Windows Installation Guide 3.2

IDENTIKEY Server Windows Installation Guide 3.2 IDENTIKEY Server Windows Installation Guide 3.2 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

Oracle Product Data Quality

Oracle Product Data Quality Oracle Product Data Quality Oracle DataLens Server Installation Guide Version 55 E18261-01 August 2010 Oracle Product Data Quality Oracle DataLens Server Installation Guide, Version 55 E18261-01 Copyright

More information

IUCLID 5 Guidance and support

IUCLID 5 Guidance and support IUCLID 5 Guidance and support Installation Guide for IUCLID 5.4 Client-Server Architecture Microsoft Windows October 2012 Legal Notice Neither the European Chemicals Agency nor any person acting on behalf

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

AklaBox. The Ultimate Document Platform for your Cloud Infrastructure. Installation Guideline

AklaBox. The Ultimate Document Platform for your Cloud Infrastructure. Installation Guideline AklaBox The Ultimate Document Platform for your Cloud Infrastructure Installation Guideline Contents Introduction... 3 Environment pre-requisite for Java... 3 About this documentation... 3 Pre-requisites...

More information

D5.4.4 Integrated SemaGrow Stack API components

D5.4.4 Integrated SemaGrow Stack API components ICT Seventh Framework Programme (ICT FP7) Grant Agreement No: 318497 Data Intensive Techniques to Boost the Real Time Performance of Global Agricultural Data Infrastructures Deliverable Form Project Reference

More information

Getting Started with Amazon EC2 Management in Eclipse

Getting Started with Amazon EC2 Management in Eclipse Getting Started with Amazon EC2 Management in Eclipse Table of Contents Introduction... 4 Installation... 4 Prerequisites... 4 Installing the AWS Toolkit for Eclipse... 4 Retrieving your AWS Credentials...

More information

Oracle Solaris Remote Lab User Guide for Release 1.01

Oracle Solaris Remote Lab User Guide for Release 1.01 Oracle Solaris Remote Lab User Guide for Release 1.01 Table of Contents 1. INTRODUCTION... 1 PURPOSE OF THE OSRL... 1 GAINING ACCESS TO THE OSRL... 2 Request access to the Oracle Solaris Remote Lab...

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

VMware vsphere Data Protection 6.1

VMware vsphere Data Protection 6.1 VMware vsphere Data Protection 6.1 Technical Overview Revised August 10, 2015 Contents Introduction... 3 Architecture... 3 Deployment and Configuration... 5 Backup... 6 Application Backup... 6 Backup Data

More information

1 Building, Deploying and Testing DPES application

1 Building, Deploying and Testing DPES application 1 Building, Deploying and Testing DPES application This chapter provides updated instructions for accessing the sources code, developing, building and deploying the DPES application in the user environment.

More information

SIEMENS. Teamcenter 11.2. Windows Server Installation PLM00013 11.2

SIEMENS. Teamcenter 11.2. Windows Server Installation PLM00013 11.2 SIEMENS Teamcenter 11.2 Windows Server Installation PLM00013 11.2 Contents Part I: Getting started with Teamcenter server installation Requirements and overview.............................................

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility

User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility Excise and Taxation, Haryana Plot I-3, Sector 5, Panchkula, Haryana MMPCT (Mission Mode Project Commercial Taxes) User Manual Help-Utility Wipro Limited HETD For any queries call at the helpdesk numbers:

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

How to Test Out Backup & Replication 6.5 for Hyper-V

How to Test Out Backup & Replication 6.5 for Hyper-V How to Test Out Backup & Replication 6.5 for Hyper-V Mike Resseler May, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication

More information

Virtual Appliance Installation Guide

Virtual Appliance Installation Guide > In This Chapter Document: : Installing the OpenManage Network Manager Virtual Appliance 2 Virtual Appliance Quick Start 2 Start the Virtual Machine 6 Start the Application 7 The Application is Ready

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Uptime Infrastructure Monitor. Installation Guide

Uptime Infrastructure Monitor. Installation Guide Uptime Infrastructure Monitor Installation Guide This guide will walk through each step of installation for Uptime Infrastructure Monitor software on a Windows server. Uptime Infrastructure Monitor is

More information

Installing and Configuring vcenter Multi-Hypervisor Manager

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

More information

Change Manager 5.0 Installation Guide

Change Manager 5.0 Installation Guide Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9

bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9 bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9 2011 Adobe Systems Incorporated and its licensors. All rights reserved. Installing and Deploying

More information

Installation Guide. Release 3.1

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

More information

Written by Wirabumi Software Sunday, 30 December 2012 11:27 - Last Updated Thursday, 03 January 2013 05:52

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

More information

IUCLID 5 Guidance and Support

IUCLID 5 Guidance and Support IUCLID 5 Guidance and Support Installation Guide for IUCLID 5.4 Stand-alone Application Custom Installation on Microsoft Windows October 2012 Legal Notice Neither the European Chemicals Agency nor any

More information

http://docs.trendmicro.com

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

More information

Virtual Appliance Setup Guide

Virtual Appliance Setup Guide The Virtual Appliance includes the same powerful technology and simple Web based user interface found on the Barracuda Web Application Firewall hardware appliance. It is designed for easy deployment on

More information

HCIbench: Virtual SAN Automated Performance Testing Tool User Guide

HCIbench: Virtual SAN Automated Performance Testing Tool User Guide HCIbench: Virtual SAN Automated Performance Testing Tool User Guide Table of Contents Introduction - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

JASPERREPORTS SERVER INSTALLATION GUIDE

JASPERREPORTS SERVER INSTALLATION GUIDE JASPERREPORTS SERVER INSTALLATION GUIDE RELEASE 5.6 http://www.jaspersoft.com Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft

More information

INTRODUCTION APPLICATION DEPLOYMENT WITH ORACLE VIRTUAL ASSEMBLY

INTRODUCTION APPLICATION DEPLOYMENT WITH ORACLE VIRTUAL ASSEMBLY SIMPLIFYING APPLICATION DEPLOYMENT IN CLOUD USING VIRTUAL ASSEMBLIES AND EM 12C Kai Yu, Dell Inc. ABSTRACT Oracle virtual assemblies provide a great way to simply the deployment of enterprise-class multi-tier

More information

TIBCO ActiveMatrix BusinessWorks Process Monitor Server. Installation

TIBCO ActiveMatrix BusinessWorks Process Monitor Server. Installation TIBCO ActiveMatrix BusinessWorks Process Monitor Server Installation Software Release 2.1.2 Published: May 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

Identikey Server Windows Installation Guide 3.1

Identikey Server Windows Installation Guide 3.1 Identikey Server Windows Installation Guide 3.1 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

Stellar Phoenix Exchange Server Backup

Stellar Phoenix Exchange Server Backup Stellar Phoenix Exchange Server Backup Version 1.0 Installation Guide Introduction This is the first release of Stellar Phoenix Exchange Server Backup tool documentation. The contents will be updated periodically

More information

Installation and Configuration Guide for Windows and Linux

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

More information

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP8

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP8 CA Identity Manager Installation Guide (WebLogic) r12.5 SP8 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

System requirements. Java SE Runtime Environment(JRE) 7 (32bit) Java SE Runtime Environment(JRE) 6 (64bit) Java SE Runtime Environment(JRE) 7 (64bit)

System requirements. Java SE Runtime Environment(JRE) 7 (32bit) Java SE Runtime Environment(JRE) 6 (64bit) Java SE Runtime Environment(JRE) 7 (64bit) Hitachi Solutions Geographical Information System Client Below conditions are system requirements for Hitachi Solutions Geographical Information System Client. 1/5 Hitachi Solutions Geographical Information

More information

SMART Vantage. Installation guide

SMART Vantage. Installation guide SMART Vantage Installation guide Product registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online at smarttech.com/registration. Keep the

More information

Cross platform Migration of SAS BI Environment: Tips and Tricks

Cross platform Migration of SAS BI Environment: Tips and Tricks ABSTRACT Cross platform Migration of SAS BI Environment: Tips and Tricks Amol Deshmukh, California ISO Corporation, Folsom, CA As a part of organization wide initiative to replace Solaris based UNIX servers

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS

More information

Tutorial: setting up a web application

Tutorial: setting up a web application Elective in Software and Services (Complementi di software e servizi per la società dell'informazione) Section Information Visualization Number of credits : 3 Tutor: Marco Angelini e- mail: angelini@dis.uniroma1.it

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

Canto Integration Platform (CIP)

Canto Integration Platform (CIP) Canto Integration Platform (CIP) Getting Started Guide Copyright 2013, Canto GmbH. All rights reserved. Canto, the Canto logo, the Cumulus logo, and Cumulus are registered trademarks of Canto, registered

More information

Installing Drupal 8 on Windows 7 with XAMPP. I am trying to install Drupal 8 on my Windows machine as a development system.

Installing Drupal 8 on Windows 7 with XAMPP. I am trying to install Drupal 8 on my Windows machine as a development system. Installing Drupal 8 on Windows 7 with XAMPP I am trying to install Drupal 8 on my Windows machine as a development system. From reading up the documentation on the Drupal Community Documentation, I learnt

More information

OpenL Tablets 5.14 OpenL Tablets BRMS

OpenL Tablets 5.14 OpenL Tablets BRMS OpenL Tablets BRMS Document number: OpenL_Inst_G_5.x_1.0 Revised: 03-02-2015 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United States License. 2004-2015 OpenL Tablets.

More information

IDENTIKEY Server Windows Installation Guide 3.1

IDENTIKEY Server Windows Installation Guide 3.1 IDENTIKEY Server Windows Installation Guide 3.1 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

Installing Primavera P6 Professional R8.2

Installing Primavera P6 Professional R8.2 Primavera P6 Schedulers and Trainers 1 Installing Primavera P6 Professional R8.2 Hardware Requirements: Intel compatible CPU, 1 GHz or better 4GB Memory or greater Microsoft Windows 7 Home, Professional

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

Data processing goes big

Data processing goes big Test report: Integration Big Data Edition Data processing goes big Dr. Götz Güttich Integration is a powerful set of tools to access, transform, move and synchronize data. With more than 450 connectors,

More information

1 P a g e Delivering Self -Service Cloud application service using Oracle Enterprise Manager 12c

1 P a g e Delivering Self -Service Cloud application service using Oracle Enterprise Manager 12c Delivering Self-service Cloud application services using Oracle Enterprise Manager 12c Kai Yu, Senior Principal Engineer, Oracle Solutions Engineering, Dell Inc ABSTRACT Oracle Self-Service provisioning

More information

MEGA Web Application Architecture Overview MEGA 2009 SP4

MEGA Web Application Architecture Overview MEGA 2009 SP4 Revised: September 2, 2010 Created: March 31, 2010 Author: Jérôme Horber CONTENTS Summary This document describes the system requirements and possible deployment architectures for MEGA Web Application.

More information

Installation & Upgrade Guide

Installation & Upgrade Guide Installation & Upgrade Guide Document Release: September 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2011-2012 SnapLogic, Inc. All

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

Horizon Client Workstation Specifications and Deployment

Horizon Client Workstation Specifications and Deployment DVTEL INC. 65 Challenger Road Ridgefield Park, NJ 07660 The contents of this guide may not be reproduced or reprinted in whole or in part without the express written permission of DVTEL, INC. Horizon Client

More information

Introduction to Big Data Training

Introduction to Big Data Training Introduction to Big Data Training The quickest way to be introduce with NOSQL/BIG DATA offerings Learn and experience Big Data Solutions including Hadoop HDFS, Map Reduce, NoSQL DBs: Document Based DB

More information