penelope case management software

Size: px
Start display at page:

Download "penelope case management software"

Transcription

1 penelope case management software Penelope Upgrade Guide for Upgrading to v and v For Self-Hosted Clients using Windows athena software Last modified: October 5,2017

2 Table of contents Getting started... 3 About upgrading to v or v Download all required software... 3 Steps to Upgrade Penelope... 3 Upgrading Penelope... 4 Step 1: Gather configuration data from Penelope... 4 Step 2: Install Java Step 3: Upgrade to PostgreSQL Back up current PostgreSQL installation... 4 Stop PostgreSQL and Resin... 4 Install PostgreSQL Create the Penelope database in PostgreSQL... 8 Step 4: Upgrade to Resin Back up current Resin installation Install Resin Step 5: Set up SSL Step 6: Configure Resin Step 7: Install the Penelope software Step 8: Start Penelope Appendix: resin.properties file Legal notice Athena Software 2

3 Getting started About upgrading to v or v Upgrading from or lower to Penelope v LTS or v EDGE or higher requires additional steps to upgrade the underlying infrastructure components. If you are upgrading your Penelope database from v or v to a newer version, please see the following guide instead: penelopehelp.com/2015/05/15/how-to-apply-a-penelope-upgrade-on-a-windows-server-version-4-0- and-higher/ Download all required software Browse to penelopehelp.com/2016/05/05/penelope-installation-components and download all the required software for the installation: c Current Penelope software c PostgreSQL 9.6 c Java 8 JDK c Resin c Resin conf file Steps to Upgrade Penelope Gather configuration data from Penelope Install Java 8 Back up current PostgreSQL installation and upgrade to PostgreSQL 9.6 Install Resin Set up SSL Configure Resin Install the Penelope software Start Penelope Athena Software 3

4 Upgrading Penelope Step 1: Gather configuration data from Penelope The new configuration of Penelope requires the Attachment Home directory and Penelope External URL be declared inside the resin.properties file. Upon upgrade, Penelope will use the value stored in your database if a value exists. Once a value is declared in the.properties file it will override the current value in the database. As such, we highly recommend that you make note of the paths prior to upgrade. Your current Attachment Home directory (available in Penelope > System Admin > Attachments) Your current Penelope External URL (available in Penelope > System Admin > External Communications) Step 2: Install Java 8 1. Double-click the Java 8 JDK file you downloaded previously. 2. Accept the default settings (unless you want to change the location where Java 8 is installed). Step 3: Upgrade to PostgreSQL 9.6 Back up current PostgreSQL installation 1. In Command Prompt, change directory to your PostgreSQL 9.2 bin folder. cd \<PATH TO POSTGRESQL>\PostgreSQL\9.2\bin 2. Create a backup of the database from the old version of PostgreSQL (9.2) modifying your athenadb name and the path to store the backup as needed. pg_dump -U postgres -O -x -Fp athenadb > \<PATH TO BACKUP>\athenaDBBackup.dmp 3. Enter the PostgreSQL username and/or password when prompted. Stop PostgreSQL and Resin 1. On your server, browse to Control Panel > Administrative Tools > Services. 2. Right-click the Penelope Resin Service that you re upgrading and click Stop. 3. Right-click Penelope Postgres Service that you re upgrading and click Stop. Install PostgreSQL 9.6 You will need to either stop the older version of PostgreSQL first or set the new version to run on a different port (ie 5434). If you set it to run on a different port any ODBC drivers configurations (used by desktop computers for pivot tables for example) will need to be updated. Athena Software 4

5 1. Double-click the PostgreSQL file you downloaded previously. 2. On the Setup PostgresSQL Welcome page, click Next. 3. In the Installation Directory field, type your preferred installation directory or keep the default location. If you are installing Postgres 9.6 alongside an older version of PostgreSQL, we recommend that you maintain the default location. 4. Click Next. 5. In the Data Directory field, type your preferred Data Directory or keep the default location. If you are installing Postgres 9.6 alongside an older version of PostgreSQL, we recommend that you maintain the default location. Athena Software 5

6 6. In the Password and Retype password fields, type a password for the postgres admin account in PostgreSQL. 7. Click Next. 8. In the Port field, type the preferred port number that PostgreSQL will listen on or accept the default. If you re installing PostgreSQL 9.6 alongside another version, ensure you use a different port. Athena Software 6

7 9. Click Next. 10. From the Locale drop-down, select [Default locale]. Note: By choosing [Default locale], Postgres will take the Locale setting from what is set in the Operation System on the Server. 11. Click Next. 12. The installation is now ready to go to completion. Click Next to proceed. Athena Software 7

8 Note: The installation will take several minutes, so please be patient and let the installation run to completion. 13. When prompted to launch Stack Builder, clear the Stack Builder option and click Finish to complete the installation. 4. On your server, browse to Control Panel > Administrative Tools > Services. 5. Right-click the Penelope PostgreSQL Service that you ve installed and click Start. Create the Penelope database in PostgreSQL 1. In Command Prompt, connect to psql as the PostgreSQL user modifying your path to PostgreSQL 9.6 and port (5432) as needed. <PATH TO POSTGRES>\9.6\bin\psql -p U postgres Athena Software 8

9 2. Create the Postgres Roles that exist in your old version in the new one. You will need to know the permissions for each user. We ve included the commands for some of the typical permissions used with Penelope below though you may have others: CREATE ROLE pen_db_mask_grp NOLOGIN; CREATE ROLE pen_db_acces_grp NOLOGIN; CREATE ROLE athena_dbu LOGIN ENCRYPTED PASSWORD 'YOURPASSWORD'; CREATE ROLE engage_dbu LOGIN ENCRYPTED PASSWORD 'YOURPASSWORD'; 3. Create the database. CREATE DATABASE athenadb OWNER athena_dbu; \q 4. Quit psql. 5. Load the backup of your previous database onto the new installation modifying your path to PostgreSQL, the port (5432) if your PostgreSQL 9.6 is running on a different port, and the path to your PostgreSQL 9.2 backup. <PATH TO POSTGRES>\9.6\bin\pg_restore -p U athena_dbu -d athenadb \<PATH TO BACKUP>\athenaDBBackup.dmp \q 6. When restoring the backup is complete, Set the permissions for users on the database: a) Connect to psql modifying your path to PostgreSQL and the port (5432) if your PostgreSQL 9.6 is running on a different port. <PATH TO POSTGRES>\9.6\bin\psql -p U postgres -d athenadb b) Enter the following to set user permissions: (Note: you may have more or less users than listed. Modify accordingly.) REVOKE ALL ON schema public FROM public; GRANT ALL ON schema public TO athena_dbu; GRANT USAGE ON schema public TO engage_dbu; GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA public TO engage_dbu; GRANT USAGE, SELECT, UPDATE ON ALL SEQUENCES IN SCHEMA public TO engage_dbu; 7. If your agency uses an ODBC connection, recreate ODBC users setup on your system and give them the same permissions as previously used prior to upgrading. 8. Quit psql. 9. Copy the pg_hba.conf file from the original PostgreSQL data directory into the new PostgreSQL data directory. Athena Software 9

10 Step 4: Upgrade to Resin Back up current Resin installation 1. Make a copy of your current Penelope Resin folder using a similar command modifying the path to and name of your Resin directory as needed. cd <PATH TO RESIN>\..; cp -r resin resin-copy ; Note: If your Penelope Resin directory contains the keystore file (declared as jsse_keystore_file in resin.properties), move it to a directory called keys outside of the Penelope Resin directory. If a keystore does not yet exist, one will need to be created as it is now required in order to run Penelope. Install Resin Unzip the resin zip file that you downloaded previously to its own directory (for example, ~\resin\resin penelope). 2. In the resin penelope directory, rename the conf folder to conf-dist. 3. Unzip the previously downloaded Resin conf directory into the resin penelope directory. 4. In the resin penelope directory, double-click the Setup.exe file. Note: If an error message appears when you double-click the Setup.exe file indicating you need to install.net 3.5 to the Resin setup.exe command, you can install.net 3.5 via the PowerShell on Windows: The following display appears: Athena Software 10

11 5. Based on the display show above, configure the following fields (all other fields can be left at their default settings): a. In the Java Home field, type the path for the Java 8 version you re going to use. Do not leave Default as the value. b. In the Service Name field, type a name that identifies the purpose of this Resin and matches the name of the Resin directory. For example, Resin4-Prod or Resin4-Test. c. In the Service User field, select one of the following options: i. To run Resin under Local Service, leave the default setting of Local Service. ii. To run Resin under a specific account, from the drop-down, select the account you want to use. 6. Click Install/Change. 7. When the installation is complete, the display Resin Setup screen remains active. Close the window. Step 5: Set up SSL Penelope v and higher requires the use of SSL encryption (i.e. Penelope must be accessed using the version of your URL instead of the version). An SSL certificate is typically obtained through your web hosting provider although there are many variations in their provision. Once you have your SSL certificate, complete the steps in the Set up SSL in Resin guide at penelopehelp.com/2016/08/25/set-up-ssl-in-resin/. Athena Software 11

12 Step 6: Configure Resin Please refer to the Appendix: Resin.properties file topic for more information about each of the properties in the resin.properties file. 1. Browse to the \resin penelope\conf directory. 2. Rename the resin.properties.dist file to resin.properties. 3. Open the resin.properties file. 4. Change the highlighted/bolded parameters below and, if necessary, remove the prepending # (comment) symbol: Note: When changing the Ports listed below in the resin.properties file, ensure that you use the same ports as in your pre-4.8 resin.properties file. ### config version # Penelope's external address (including port) and the entailing slash. Example: pen_external_url : ***CHANGE ME*** # Ports. #https : 443 ***CHANGE ME*** #hmux_port : 6800 ***CHANGE ME*** #watchdog_port : 6600 ***CHANGE ME*** # Set the timezone. Example: America/New_York timezone : ***CHANGE ME*** # Attachment home directory. # This should be changed to match the Penelope attachment location (previously set in Penelope > System Admin > Attachements). # First time Penelope setup. Default: /attachments/ #pen_attachment_dir : ***CHANGE ME*** # JSSE certificate configuration # Keys are typically stored in the resin configuration directory. jsse_keystore_type : jks jsse_keystore_file : ***CHANGE ME*** jsse_keystore_password : ***CHANGE ME*** # OpenSSL certificate configuration (Resin Pro only). # Keys are typically stored in the resin configuration directory. # openssl_file : /path/to/gryffindor.crt # openssl_key : /path/to/gryffindor.key # openssl_password : # Database Properties. driver_url : jdbc:postgresql://localhost:5432/athenadb db_user : penelope_dbu db_password : ***CHANGE ME*** # How often Resin should check for updated files. # Configures how often the environment context should be checked for changes. dependency_check_interval : 600s # Pass more JVM arguments if necessary. jvm_args : -Xmx386m prepared_statement_cache_size : 8 max_connections : 20 max_idle_time : 30s connection_wait_time : 3s Athena Software 12

13 # Enabling WebAppMXBean. statistics_enable : true # Configures the minimum free memory allowed before Resin will force a restart. memory_free_min : 1m # Enables/disables exceptions when the browser closes a connection. ignore_client_disconnect : true # Document directory path. document_directory_path : webapps/athenacasemanagement # Specify the user name and group name for the web server user on a non-windows environment. #setuid_user : #setuid_group : 5. Save your changes. Step 7: Install the Penelope software 1. Unzip the Penelope Software file that you downloaded previously. 2. When prompted, type in the password you received from the Athena Technical Support Team. 3. If your version of Windows creates an encrypted AthenaCaseManagement folder, complete the following actions to unencrypt the folder: a. Right-click the folder and click Settings. b. Click the Advanced option. c. Clear the Encrypt contents to secure data option. d. Click Apply. e. When prompted to apply changes to the folder, subfolder and files, leave this option selected and click OK. 4. Once the folder has been completely extracted (and unencrypted if required), copy the folder to the \resin \webapps folder. Step 8: Start Penelope 1. On your server, browse to Control Panel > Administrative Tools > Services. 2. Right-click the Penelope Resin Service that you re upgrading and click Start. 3. To verify that Resin started successfully, in a browser, enter your Penelope external URL. If installed correctly, you should see the Penelope login screen shown below: Athena Software 13

14 Athena Software 14

15 Appendix: resin.properties file Property pen_external_url https hmux_port watchdog_port timezone pen_attachment_dir jsse_keystore_type jsse_keystore_file jsse_keystore_password openssl_file openssl_key openssl_password driver_url db_user db_password dependency_check_interval jvm_args Description Your Penelope external URL. Penelope s secure port. You must ensure that all of the ports used on your server are unique. This port most often needs to be changed as it may conflict if you have another Web Apps server running on your server. If any of the ports are already in use, Resin will not start. This port only needs to be changed if you are running more than one instance of Resin (i.e. if you have a Penelope sandbox) on your server. This port only need to be changed if you are running more than one instance of Resin (i.e. if you have a Penelope sandbox) on your server. Your Penelope database time zone. The path to your Penelope attachment directory. The JSSE keystore type. The path to your SSL keystore file. For example, C:\Program Files\Athena\keys\athena.keystore The password to decrypt the jsse_keystore_file The OpenSSL certificate configuration. Note that this is applicable to Resin Pro only which is not supported for use with Penelope. If you changed the default port (5432) during the PostgreSQL installation, ensure you change the port here (for example, jdbc:postgresql://localhost:5434/athenadb). The PostgreSQL account you created for access to your database. For example, penelope_dbu. The password for the PostgreSQL account you created for access to your database. How often Resin should check for updated files. Additional arguments passed through to the Java Virtual Machine. prepared_statement_cache_size Configures how many prepared statements Resin should cache for each connection. Athena Software 15

16 max_connections max_idle_time connection_wait_time statistics_enabled memory_free_min ignore_client_disconnect document_directory_path setuid_user setuid_group The maximum number of connections to the database for the connection pool. Configures the maximum time a connection to the database can remain idle before Resin automatically closes it. Configures the time a connection call should wait when then pool is full before trying to create an overflow connection. Enabling WebAppMXBean. Configures the minimum free memory allowed before Resin will force a restart. Enables or disables exceptions when the browser closes a connection. The document directory path to the AthenaCaseManagement folder. Only applicable to non-windows environments. Only applicable to non-windows environments. Athena Software 16

17 Legal notice 2017 Athena Software. All rights reserved. The information in this document is provided "AS IS" and without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. This information could contain technical inaccuracies or typographical errors. Changes may be made periodically to the information herein without notice. This document may contain links or references to products, materials or web sites that are provided by independent third parties either directly or through frames. The availability of such third-party material does not constitute any form of recommendation, endorsement or publication of such third-party material by us. Any concerns that you have about the third-party material should be directed to the relevant third party. iphone, ipad, and Safari are trademarks of Apple Inc. Chrome, Google and Gmail are trademarks of Google Inc. Active Directory, Excel, Internet Explorer, Microsoft, and Office 365 are trademarks of Microsoft Corporation. Firefox and Mozilla are trademarks of The Mozilla Foundation. Other company and product names mentioned herein may be trademarks of their respective companies. Athena Software 17

penelope case management software ENGAGE CONFIGURATION GUIDE Compatible with Penelope v and higher

penelope case management software ENGAGE CONFIGURATION GUIDE Compatible with Penelope v and higher penelope case management software ENGAGE CONFIGURATION GUIDE Compatible with Penelope v4.6.1.0 and higher Last modified: May 12, 2016 TABLE OF CONTENTS Engage: The basics... 3 About Engage... 3 Configuring

More information

penelope case management software

penelope case management software penelope case management software Penelope v4.10.1.1 Release Notes EDGE athena software Table of contents About this release... 3 What is an Edge Release?... 3 What is a Long Term Release?... 3 Penelope

More information

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.2 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

HP IDOL Site Admin. Software Version: Installation Guide

HP IDOL Site Admin. Software Version: Installation Guide HP IDOL Site Admin Software Version: 10.9 Installation Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties for HP products and services

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

IDOL Site Admin. Software Version Installation Guide

IDOL Site Admin. Software Version Installation Guide IDOL Site Admin Software Version 12.0 Installation Guide Document Release Date: June 2018 Software Release Date: June 2018 Legal notices Copyright notice Copyright 2015-2018 Micro Focus or one of its affiliates.

More information

HPE IDOL Site Admin. Software Version: Installation Guide

HPE IDOL Site Admin. Software Version: Installation Guide HPE IDOL Site Admin Software Version: 11.3.0 Installation Guide Document Release Date: February 2017 Software Release Date: February 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

Acronis and Acronis Secure Zone are registered trademarks of Acronis International GmbH.

Acronis and Acronis Secure Zone are registered trademarks of Acronis International GmbH. 1 Copyright Acronis International GmbH, 2002-2015 Copyright Statement Copyright Acronis International GmbH, 2002-2015. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks of

More information

Media Server Installation & Administration Guide

Media Server Installation & Administration Guide Media Server Installation & Administration Guide Smarter Surveillance for a Safer World On-Net Surveillance Systems, Inc. One Blue Hill Plaza, 7 th Floor, PO Box 1555 Pearl River, NY 10965 Phone: (845)

More information

penelope case management software

penelope case management software penelope case management software DSS for Penelope Configuration Guide v4.8.2.0 and higher athena software Last Updated: Table of contents Getting started... 3 About the DSS module in Penelope... 3 Purchasing

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

Create Import Data Connection to SAP BPC MS

Create Import Data Connection to SAP BPC MS Create Import Data Connection to SAP BPC MS You can create a connection that allows you to import data and models from an SAP Business Planning and Consolidation (BPC) system. Prerequisites SAP BPC for

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Introduction 2 Prerequisites 2 Installation 2 Installation Overview 3 Downloading and Installing for Windows 3 Downloading and Installing for macos 4 Installing

More information

Remote Asset Manager. Version 2.2. Administrator's Guide

Remote Asset Manager. Version 2.2. Administrator's Guide Remote Asset Manager Version 2.2 Administrator's Guide April 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Deployment readiness checklist...5 Getting started... 6 Installing

More information

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration TM1 9.5 Quick Installation and Upgrade Guide Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration 2 Copyright and Trademarks Licensed Materials - Property of IBM.

More information

Import Data Connection from an SAP Universe

Import Data Connection from an SAP Universe Import Data Connection from an SAP Universe SAP Analytics Cloud allows you to connect to SAP Universe and import your data. NOTE: It is recommended that the SAP Cloud Platform Cloud Connector (SAP CP CC)

More information

TIBCO Spotfire Automation Services Installation and Configuration

TIBCO Spotfire Automation Services Installation and Configuration TIBCO Spotfire Automation Services Installation and Configuration Software Release 7.0.1 July 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

Installation and Upgrade Guide

Installation and Upgrade Guide Installation and Upgrade Guide Copyright Statement Copyright Acronis International GmbH, 2002-2014. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks of Acronis International

More information

1Integrate for ArcGIS Installation Guide. Server Edition

1Integrate for ArcGIS Installation Guide. Server Edition 1Integrate for ArcGIS Installation Guide Server Edition Product version: v 2.1 Document version: v 1.9 Document date: 03/08/2018 Copyright 2018 1Spatial plc and its affiliates. All rights reserved. Other

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

Import Data Connection to an SAP ERP System

Import Data Connection to an SAP ERP System Import Data Connection to an SAP ERP System SAP Analytics Cloud allows you to import data from supported versions SAP ERP Central Component. NOTE: It is recommended that the SAP Cloud Platform Cloud Connector

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide January 2009 Copyright Notice 2005-2009 LifeSize Communications Inc, and its licensors. All rights reserved. LifeSize Communications has made every effort to ensure

More information

Desktop Installation Guide

Desktop Installation Guide Desktop Installation Guide Desktop Installation Guide Legal notice Copyright 2017 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

MYOB Advanced Business

MYOB Advanced Business MYOB Advanced Business On-Premise Installation Last Updated: 24 November 2014 Contents Introduction 1 Pre-Requisites 1 Web Browsers... 1 Server Hardware and Software... 1 Database Hardware and Software...

More information

SuperLumin Nemesis. Getting Started Guide. February 2011

SuperLumin Nemesis. Getting Started Guide. February 2011 SuperLumin Nemesis Getting Started Guide February 2011 SuperLumin Nemesis Legal Notices Information contained in this document is believed to be accurate and reliable. However, SuperLumin assumes no responsibility

More information

Senstar Symphony. 7.2 Installation Guide

Senstar Symphony. 7.2 Installation Guide Senstar Symphony 7.2 Installation Guide Contents Contents Introduction... 3 Symphony Server...3 Symphony Client... 3 Xnet... 3... 4 Symphony Server requirements...4 Symphony Client requirements...4 Symphony

More information

TIBCO Spotfire Automation Services 7.5. User s Manual

TIBCO Spotfire Automation Services 7.5. User s Manual TIBCO Spotfire Automation Services 7.5 User s Manual Revision date: 15 January 2016 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

The Cisco HCM-F Administrative Interface

The Cisco HCM-F Administrative Interface CHAPTER 5 This chapter contains information on the following topics: Overview of Cisco HCM-F Administrative Interface, page 5-1 Browser Support, page 5-2 Login and Logout, page 5-4 Online Help, page 5-5

More information

Desktop Installation Guide

Desktop Installation Guide Desktop Installation Guide Desktop Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

PowerSchool Student Information System

PowerSchool Student Information System PowerTeacher Gradebook Installation and Setup Guide PowerSchool Student Information System Released December 8, 2008 Document Owner: Documentation Services This edition applies to Release 1.5 of the PowerTeacher

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Installing Intellicus DotNet Client on Windows. Version: 16.0

Installing Intellicus DotNet Client on Windows. Version: 16.0 Installing Intellicus DotNet Client on Windows Version: 16.0 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

Using SQL Reporting Services with isupport

Using SQL Reporting Services with isupport isupport s SQL Reporting functionality is installed via the isupport SQL Reporting Setup Wizard; it includes several report models with isupport database fields, tables, and relationships. isupport includes

More information

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1 Aspera Connect 2.6.3 Windows XP, 2003, Vista, 2008, 7 Document Version: 1 2 Contents Contents Introduction... 3 Setting Up... 4 Upgrading from a Previous Version...4 Installation... 4 Set Up Network Environment...

More information

Import Data Connection to an SAP BW System

Import Data Connection to an SAP BW System Import Data Connection to an SAP BW System SAP Analytics Cloud allows you to import data from an SAP BW System. You must connect to an SAP BW system, version 7.3x or higher release. NOTE: It is recommended

More information

Web Applications Installation. version 12.17

Web Applications Installation. version 12.17 version 12.17 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Installation Guide. Version

Installation Guide. Version Installation Guide Version 2017.2 Copyrights 1996-2017 Perforce Software, Inc. and its subsidiaries. All rights reserved. Defect Scribe, Helix ALM, Helix ALM Suite, Helix Issue Management, Helix Requirements

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

How Do I Manage Active Directory

How Do I Manage Active Directory How Do I Manage Active Directory Your Red Box Recorder supports Windows Active Directory integration and Single Sign-On. This Quick Question topic is provided for system administrators and covers the setup

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

SOA Software Intermediary for Microsoft : Install Guide

SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft Install Guide SOAIM_60 August 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 404 Page Not Found Error Encountered, page 2 Cannot Start or Join Meeting, page 2 SSO

More information

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to VMWare AirWatch User Guide for Web Browser You can access your AirWatch Files from a web browser. How to login AirWatch Cloud Storage? 1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari)

More information

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018 AMS Device View Installation Guide Version 2.0 Installation Guide May 2018 Disclaimer The contents of this publication are presented for informational purposes only, and while every effort has been made

More information

SAP Workforce Performance Builder 9.5

SAP Workforce Performance Builder 9.5 Upgrade Guide Workforce Performance Builder Document Version: 1.0 2016-10-15 2016 SAP SE or an SAP affiliate company. All rights reserved. CUSTOMER Table of Contents 1 Introduction... 3 2 Migrating a Workarea...

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

Oracle Insurance Rules Palette

Oracle Insurance Rules Palette Oracle Insurance Rules Palette Security Guide Version 10.2.0.0 Document Part Number: E62439-01 August, 2015 Copyright 2009, 2015, Oracle and/or its affiliates. All rights reserved. Trademark Notice Oracle

More information

Installation Guide. Help Desk Manager. Version

Installation Guide. Help Desk Manager. Version Installation Guide Help Desk Manager Version 12.3.0 Contents Introduction 1 Key Features 1 Parent/Child Service Relationships 1 Automated Ticketing Processing 1 Asset Management 2 Installation Requirements

More information

GoPrint Server Migration

GoPrint Server Migration GoPrint Server Migration The following steps walks you through migrating a current GoPrint system to a new Windows server focusing on migrating the current database as well as keeping the same server name.

More information

STATISTICA VERSION 10 STATISTICA MONITORING AND ALERTING SERVER (MAS) INSTALLATION INSTRUCTIONS

STATISTICA VERSION 10 STATISTICA MONITORING AND ALERTING SERVER (MAS) INSTALLATION INSTRUCTIONS Pre-requisites: STATISTICA VERSION 10 STATISTICA MONITORING AND ALERTING SERVER (MAS) INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Monitoring And Alerting Server (MAS) network version

More information

NICE Desktop Cloud Visualization. User Guide

NICE Desktop Cloud Visualization. User Guide NICE Desktop Cloud Visualization User Guide NICE Desktop Cloud Visualization: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Contents Introduction... 1 Prerequisites... 1 Installation... 2 Installation Overview... 2 Downloading and Installing for Windows... 3 Downloading and Installing

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

Microsoft Windows Servers 2012 & 2016 Families

Microsoft Windows Servers 2012 & 2016 Families Version 8 Installation Guide Microsoft Windows Servers 2012 & 2016 Families 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com Installation Guide

More information

KLAS v7 Workstation Installation Self-Hosted Progress Version 10.2B / Windows 7

KLAS v7 Workstation Installation Self-Hosted Progress Version 10.2B / Windows 7 KLAS Technical Notes Technical Notes 2012-1014 Doc Name: v7.5installation-selfhosted.docx KLAS v7 Workstation Installation Self-Hosted Progress Version 10.2B / Windows 7 Keystone has developed a means

More information

Amazon WorkMail. User Guide Version 1.0

Amazon WorkMail. User Guide Version 1.0 Amazon WorkMail User Guide Amazon WorkMail: User Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

Cloud Platform. Version User's Guide

Cloud Platform. Version User's Guide Cloud Platform Version 1.1.5 User's Guide January 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Getting started... 5 System requirements...5 Accessing the Cloud Platform home

More information

AvePoint RevIM Installation and Configuration Guide. Issued May AvePoint RevIM Installation and Configuration Guide

AvePoint RevIM Installation and Configuration Guide. Issued May AvePoint RevIM Installation and Configuration Guide AvePoint RevIM 3.2.1 Installation and Configuration Guide Issued May 2017 1 Table of Contents What s New in This Guide... 4 About AvePoint RevIM... 5 Installation Requirements... 6 Hardware Requirements...

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Upgrade Guide. SuccessMaker 11

Upgrade Guide. SuccessMaker 11 11 Document last updated July 12, 2018 Copyright 2018 Pearson Education, Inc. or one or more of its direct or indirect affiliates. All rights reserved. Pearson and are registered trademarks, in the U.S.

More information

Storebox User Guide. Swisscom (Switzerland) Ltd.

Storebox User Guide. Swisscom (Switzerland) Ltd. Storebox User Guide Swisscom (Switzerland) Ltd. Contents (/). Basics/Settings 4. What is Storebox? 5. File Structure 6.3 System Prerequisites 7.4 Logging in to the team portal 8.5 Logging out of the team

More information

IBM Kenexa LMS Version Installation Guide. October 2015 IBM

IBM Kenexa LMS Version Installation Guide. October 2015 IBM IBM Kenexa LMS Version 4.2.4 Installation Guide October 2015 IBM IBM Kenexa LMS Version 4.2.4 Installation Guide October 2015 IBM Note Before using this information and the product it supports, read the

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Remote Access for End User Reference Guide for EpicConnect Access

Remote Access for End User Reference Guide for EpicConnect Access PRESBYTERIAN HEALTHCARE SERVICES Remote Access for End User Reference Guide for EpicConnect Access Version 1.0 12/27/2013 This remote access end user reference guide provides an overview of how to install

More information

Getting Started GateManager5 PREMIUM Domain Administration

Getting Started GateManager5 PREMIUM Domain Administration Getting Started GateManager5 PREMIUM Domain Administration This document helps you get started with Secomea s hosted GateManager5 in relation to the GateManager 5 Domain Administration. This guide assumes

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

DataFlux Web Studio 2.5. Installation and Configuration Guide

DataFlux Web Studio 2.5. Installation and Configuration Guide DataFlux Web Studio 2.5 Installation and Configuration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. DataFlux Web Studio 2.5: Installation and Configuration

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Connecting to the Virtual Desktop Infrastructure (VDI)

Connecting to the Virtual Desktop Infrastructure (VDI) System Office IT Connecting to the Virtual Desktop Infrastructure (VDI) There are four ways to connect to the system office Virtual Desktop Infrastructure (VDI): Web client Windows client - personal computer

More information

KYOCERA Net Admin Installation Guide

KYOCERA Net Admin Installation Guide KYOCERA Net Admin Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for

More information

Software Installation Manual

Software Installation Manual Software Installation Manual Page 1 of 5 Hardware Requirements The ProxnetPro application is installed on a single, dedicated* Host PC, that will then provide Web Server access to any number of connected

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

3.6. How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization. Last Updated:

3.6. How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization. Last Updated: Red Hat Enterprise Virtualization 3.6 Reports and Data Warehouse Guide How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization Last Updated: 2017-09-27 Red Hat Enterprise

More information

PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill

PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill Copyright 2016 PTC Inc. and/or Its Subsidiary Companies. All

More information

Contents Upgrading BFInventory iii

Contents Upgrading BFInventory iii Upgrading ii Upgrading Contents Upgrading.............. 1 Upgrading to IBM Tivoli Endpoint Manager for Software Use Analysis version 2.0....... 1 Planning and preparing for the upgrade.... 2 Installing

More information

End User System Requirements. Marsh ClearSight, Marsh ClearSight Apps, Enterprise, Stars Discovery, and Stars Intake Release Version: 17.1.

End User System Requirements. Marsh ClearSight, Marsh ClearSight Apps, Enterprise, Stars Discovery, and Stars Intake Release Version: 17.1. End User System Requirements Marsh ClearSight, Marsh ClearSight Apps, Enterprise, Stars Discovery, and Stars Intake Release Version: 17.1.0 Contents Introduction... 4 End User Workstation Components...

More information

Installation guide. Copyright (C) 2011 Cybozu, Inc.

Installation guide. Copyright (C) 2011 Cybozu, Inc. Installation guide Copyright (C) 2011 Cybozu, Inc. Contens Setup guide Accessing from computers... 2 Installation tasks... 2 System administrator tasks... 2 Users tasks... 3 Accessing from your mobile

More information

Novell Operations Center

Novell Operations Center AUTHORIZED DOCUMENTATION Dashboard Guide Novell Operations Center 5.0 September 30, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

Installation Guide. Qlik Sense Copyright QlikTech International AB. All rights reserved.

Installation Guide. Qlik Sense Copyright QlikTech International AB. All rights reserved. Installation Guide Qlik Sense 2.0.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide Digipass Plug-In for SBR SBR Plug-In SBR Steel-Belted RADIUS Installation G uide Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product

More information

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017 Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0 December 2017 Oracle Retail Order Management System Installation Instructions, Release 5.0 Revision History Date

More information

Metalogix ControlPoint 7.6. Advanced Iinstallation Guide

Metalogix ControlPoint 7.6. Advanced Iinstallation Guide Metalogix ControlPoint 7.6 Advanced Iinstallation Guide 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA V4.1 CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA 2016-11-08 Table of Contents 1 System requirements...3 2 IIS installation...4 3

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 "404 Page Not Found" Error Encountered, page 2 Cannot Start or Join Meeting, page 2

More information

Jamf Pro Installation and Configuration Guide for Linux. Version

Jamf Pro Installation and Configuration Guide for Linux. Version Jamf Pro Installation and Configuration Guide for Linux Version 10.0 copyright 2002-2017 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington

More information

Jamf Pro Installation and Configuration Guide for Mac. Version

Jamf Pro Installation and Configuration Guide for Mac. Version Jamf Pro Installation and Configuration Guide for Mac Version 10.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave

More information

TIBCO Spotfire Server Release Notes. Software Release April 2014

TIBCO Spotfire Server Release Notes. Software Release April 2014 TIBCO Spotfire Server Release Notes Software Release 6.5.0 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS

More information

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.10, 2018.06, AND 5.1.0 DU-07754-001 _v7.0 through 7.2 March 2019 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server...

More information

Running TIBCO Spotfire 3.2 on Citrix XenApp. Installation Manual

Running TIBCO Spotfire 3.2 on Citrix XenApp. Installation Manual Running TIBCO Spotfire 3.2 on Citrix XenApp Installation Manual Revision date: 28 June 2010 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Accops HyWorks v2.5. HyWorks Controller Installation Guide. Last Update: 4/18/2016

Accops HyWorks v2.5. HyWorks Controller Installation Guide. Last Update: 4/18/2016 Accops HyWorks v2.5 Last Update: 4/18/2016 2016 Propalms Technologies Pvt. Ltd. All rights reserved. The information contained in this document represents the current view of Propalms Technologies Pvt.

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information