ULTEO OPEN VIRTUAL DESKTOP V4.0

Size: px
Start display at page:

Download "ULTEO OPEN VIRTUAL DESKTOP V4.0"

Transcription

1 ULTEO OPEN VIRTUAL DESKTOP V4.0 MIGRATION GUIDE 28 February 2014

2 Contents Section 1 Introduction... 4 Section 2 Overview... 5 Section 3 Preparation Enter Maintenance Mode Backup The OVD Session Manager Data... 7 Section 4 Installing OVD V Upgrade The Session Manager Install OVD Session Manager Database Migration OVD Web Portal Install OVD Modify The Web Portal Configuration OVD Windows Application Server OVD Linux Application Server Update OVD 4 Subsystem Install OVD 4 Application Server Package Restarting the Linux Application Server OVD File Server Update OVD 4 Subsystem Install OVD 4 File Server Package Restarting the File Server OVD Gateway Update OVD 4 Gateway Migration Guide ULTEO SAS

3 4.7 Production Mode Migration Guide ULTEO SAS

4 Section 1 Introduction This document describes the process to migrate an existing OVD v3.x farm to the latest major version of OVD, v4.0! If your OVD installation contains swat patches, you need first to list them and contact us to define how to proceed. Migration Guide ULTEO SAS

5 Section 2 Overview The migration is a manual process that consists of the multiple steps. Each step is explained in greater detail below. Preparation: The system must be offline and should be backed up before migrating. Installation: Each system component is updated in turn. Completion: Run a test to make sure the migration worked. Migration Guide ULTEO SAS

6 Section 3 Preparation 3.1 Enter Maintenance Mode In order to migrate to OVD V4, you will need to take the current system offline. First of all, stop the services on each of the servers you have in your OVD farm and then switch the system to maintenance mode. OVD LINUX APPLICATION SERVER root@server:~# /etc/init.d/ulteo-ovd-subsystem stop OVD WINDOWS APPLICATION SERVER Stop the Windows Service called Ulteo Open Virtual Desktop agent OVD FILE SERVER root@server:~# /etc/init.d/ulteo-ovd-subsystem stop OVD GATEWAY root@server:~# /etc/init.d/ulteo-ovd-slaveserver stop OVD SESSION MANAGER Go to the OVD Administration console 1. Click on Status tab then Session and close all user sessions 2. Go to the Index tab and click switch the system to maintenance mode OVD WEB PORTAL The Web Portal will be in maintenance mode once the OVD system has been set to maintenance mode through the Admin Console. Migration Guide ULTEO SAS

7 3.2 Backup The OVD Session Manager Data Before upgrading the OVD 3.x system, it is highly recommended that you make backups of the OVD Session Manager data in case there are any migration issues. The steps below explain how to backup the database and configuration file on the Session Manager. Backup the Session Manager database using the following command using your own username and password: mysqldump --user=[admin_user] --password=[password] ovd gzip > backup_database_ovd.sql.gz Backup the Session Manager configuration file using the following command: tar cvzf backup_config.tar.gz /var/spool/ulteo/sessionmanager/config Make sure these files are stored in a secure location. Migration Guide ULTEO SAS

8 Section 4 Installing OVD V4 4.1 Upgrade The Session Manager Once you have completed the preparation and backup steps, you can proceed to install OVD V4 starting with the Session Manager Install OVD 4 The next step is to install Ulteo OVD 4 on the Session Manager using the OVD 4 repositories. For the Linux distro you have installed, use the following commands to add the new source and install OVD Debian/Ubuntu Edit the sources file. root@server:~# vi /etc/apt/sources.list.d/ulteo-ovd.list Add the OVD source and save the file deb [dists] main * replace dists with either lucid or precise depending on your distribution Install OVD 4.0 root@server:~# apt-get update && apt-get install ulteo-ovd-sessionmanager ulteo-ovd-l10n Verify that you have now have a v4.0.0 version installed root@server:~# dpkg -l grep ulteo Migration Guide ULTEO SAS

9 You should see lines that have the value as in the example below. ulteo-ovd-administration-console XXX Ulteo ulteo-ovd-l10n XXX Ulteo ulteo-ovd-session-manager XXX Ulteo Centos/Redhat 6.0 Edit the repository file vi /etc/yum.repos.d/ovd.repo Add the new repository [ovd-4.0.0] name=ulteo OVD baseurl= enabled=1 gpgcheck=1 gpgkey= Install OVD 4.0 yum install ulteo-ovd-session-manager ulteo-ovd-l10n Verify that you have now have a v4.0.0 version installed root@server:~# rpm -qa grep ulteo You should see lines that have the value as in the example below. ulteo-ovd-administration-console xxx.noarch ulteo-ovd-l10n xxx.noarch ulteo-ovd-session-manager xxx.noarch Migration Guide ULTEO SAS

10 SUSE Linux Enterprise Server 11 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-sessionmanager ulteo-ovd-l10n Verify that you have now have a v4.0.0 version installed root@server:~# rpm -qa grep ulteo You should see lines that have the value as in the example below. ulteo-ovd-administration-console xxx.noarch ulteo-ovd-l10n xxx.noarch ulteo-ovd-session-manager xxx.noarch opensuse 11.3 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-sessionmanager ulteo-ovd-l10n Verify that you have now have a v4.0.0 version installed root@server:~# rpm -qa grep ulteo Migration Guide ULTEO SAS

11 You should see lines that have the value as in the example below. ulteo-ovd-administration-console xxx.noarch ulteo-ovd-l10n xxx.noarch ulteo-ovd-session-manager xxx.noarch Session Manager Database Migration The next step is to migrate the OVD 3.x MySQL database on the Session Manager to the format required by OVD 4. This will be done by creating and then running a script. First, create a script for the SQL migration root@server:~# vi migration_database.sql Copy the following lines into the script and save it. ALTER TABLE `ulteo_servers` DROP PRIMARY KEY, ADD `id` varchar(255), ADD UNIQUE U_FQDN (`fqdn`); UPDATE `ulteo_servers` SET `id` = `fqdn`; ALTER TABLE `ulteo_servers` ADD PRIMARY KEY (`id`); ALTER TABLE `ulteo_servers_properties` DROP PRIMARY KEY, CHANGE `fqdn` `server` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', ADD PRIMARY KEY (`server`, `property`); Execute the script using your own username and password root@server:~# mysql --user=[username] --password=[password] -- database=ovd < migration_database.sql Validate the modifications by saving the database settings. On the OVD Administration Console, go to Configuration, Database settings and click on Save. Check the Servers to make sure everything looks good. Migration Guide ULTEO SAS

12 4.2 OVD Web Portal After completing the Session Manager upgrade, move onto to the Web Portal. Note: this server was previously called the Web Client in OVD Install OVD 4 Install Ulteo OVD 4 on the Web Portal using the OVD 4 repositories. For the Linux distro you have installed, use the following commands to add the new source and install OVD Debian/Ubuntu Edit the sources file. root@server:~# vi /etc/apt/sources.list.d/ulteo-ovd.list Add the OVD source and save the file deb [dists] main * replace dists with either lucid or precise depending on your distribution Install OVD 4.0 keeping your configuration file root@server:~# apt-get update && apt-get install ulteo-ovd-web-client ulteo-ovd-web-client-ajaxplorer ulteo-ovd-applets ulteo-ovd-l10n Centos/Redhat 6.0 Edit the repository file root@server:~# vi /etc/yum.repos.d/ovd.repo Add the new repository and save the file Migration Guide ULTEO SAS

13 [ovd-4.0.0] name=ulteo OVD baseurl= enabled=1 gpgcheck=1 gpgkey= Install OVD 4.0 yum install ulteo-ovd-web-client ulteo-ovd-web-clientajaxplorer ulteo-ovd-applets ulteo-ovd-l10n SUSE Linux Enterprise Server 11 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-web-client ulteo-ovd-web-client-ajaxplorer ulteo-ovd-applets ulteo-ovd-l10n opensuse 11.3 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-web-client ulteo-ovd-web-client-ajaxplorer ulteo-ovd-applets ulteo-ovd-l10n Migration Guide ULTEO SAS

14 4.2.2 Modify The Web Portal Configuration The configuration file for the Web Portal must now be modified to support the new features available in OVD 4. Open the file /etc/ulteo/webclient/config.inc.php in an editor and add the lines listed below. Set the values that match your environment. After completing the changes save the file. // Option force SSO: do not allow the user to enter a login and password. The login is set to use REMOTE_USER if possible // define('option_force_sso', true); // define('option_force_sso', false); // default // define('debug_mode', true); // define('debug_mode', false); // default // define('rdp_input_method', 'unicode'); // alternative method // define('rdp_input_method', 'unicode_local_ime'); // alternative method with client integration // RDP input method: show option // define('option_show_input_method', true); // define('option_show_input_method', false); // default // RDP input method: force option // Must be used in conjunction of RDP_INPUT_METHOD // define('option_force_input_method', true); // define('option_force_input_method', false); // default // Perform desktop integration in portal sessions // publish destkop and start menu icons, mime type association,... // define('portal_local_integration', true); // define('portal_local_integration', false); // default // Confirm Logout Options // define('option_confirm_logout', 'always'); // define('option_confirm_logout', 'apps_only'); // define('option_confirm_logout', 'never'); // default continued Migration Guide ULTEO SAS

15 // Option direct SM communication (with proxy.php) // define('option_use_proxy', true); // define('option_use_proxy', false); // default // HTML5 Client installed define('rdp_provider_html5_installed', true); // define('rdp_provider_html5_installed', false); // default // Java web client installed define('rdp_provider_java_installed', true); // define('rdp_provider_java_installed', false); // default This completes the update of the Web Portal. Migration Guide ULTEO SAS

16 4.3 OVD Windows Application Server To upgrade a Windows Application Server, run the new installer on your Application Server. You can download the installer at The installation process will prompt the user to restart the server which should be done to activate OVD 4. Migration Guide ULTEO SAS

17 4.4 OVD Linux Application Server Next upgrade the Linux Application Servers. The Linux Application server has an OVD Subsystem installed as well as a standard software package. The migration first deals with the subsystem and then updates the standard software package Update OVD 4 Subsystem The subsystem should have already been stopped as part of the preparation. If not, then issue the following command: root@server:~# /etc/init.d/ulteo-ovd-subsystem stop From inside the OVD Subsystem, remove the package ulteo-ovd-desktop-settings and update the installation to OVD 4. (OVD)root@srv:/#: apt-get remove ulteo-ovd-desktop-settings Modify the software installation sources file to add the new source (OVD)root@srv:/#: vi /etc/apt/sources.list.d/ulteo_ovd.list Add the new source for OVD 4 and save the changes deb lucid main Update the software packages for the subsystem using the following command (OVD)root@srv:/#: apt-get update && apt-get install ulteo-ovd-desktop ulteo-ovd-slaveserver ulteo-ovd-slaveserver-role-aps uxda-server ulteoovd-externalapps-client ulteo-ovd-integrated-launcher ulteo-xfce4- restricted-menu-plugin libovd-xclient-area Migration Guide ULTEO SAS

18 NOTE: If you have installed the File Server on the same server, do not restart the slave server now. The subsystem and slave server will be restarted once you have completed the File Server migration. Restart the slave server if the File Server is not installed on this server. /etc/init.d/ulteo-ovd-slaveserver stop /etc/init.d/ulteo-ovd-slaveserver start Install OVD 4 Application Server Package Now working outside the subsystem again, update the OVD software package. For the Linux distro you have installed, use the following commands to add the new source and install OVD Debian/Ubuntu Edit the sources file. root@server:~# vi /etc/apt/sources.list.d/ulteo-ovd.list Add the OVD source and save the file deb [dists] main * replace dists with either lucid or precise depending on your distribution Install the OVD 4 subsystem software root@server:~# apt-get update && apt-get install ulteo-ovd-subsystem Migration Guide ULTEO SAS

19 Centos/Redhat 6.0 Edit the repository file vi /etc/yum.repos.d/ovd.repo Add the new repository and save the file [ovd-4.0.0] name=ulteo OVD baseurl= enabled=1 gpgcheck=1 gpgkey= Install the OVD 4 subsystem software root@server:~# yum install ulteo-ovd-subsystem SUSE Linux Enterprise Server 11 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-subsystem Migration Guide ULTEO SAS

20 opensuse 11.3 Add the OVD 4 repository file zypper ar ovd Install OVD 4 root@server:~# zypper refresh && zypper install ulteo-ovd-subsystem Restarting the Linux Application Server To restart the Application Server, issue the following command to restart the subsystem from outside the chroot NOTE: If you have installed the File Server on the same server, do not restart the slave server now. The subsystem and slave server will be restarted once you have completed the File Server migration. root@server:~# /etc/init.d/ulteo-ovd-subsystem start Migration Guide ULTEO SAS

21 4.5 OVD File Server Next upgrade the Linux Application Servers if any are in your OVD farm. The Application server has an OVD Subsystem installed as well as a standard software package. The migration first deals with the subsystem and then updates the standard software package Update OVD 4 Subsystem The subsystem should have already been stopped as part of the preparation. If not, then issue the following command: root@server:~# /etc/init.d/ulteo-ovd-subsystem stop Inside the OVD Subsystem create a profiles_migration.sh file in /root (OVD)root@server:/#: vi /root/profiles_migration.sh Add the following lines to the file and save it #!/bin/bash LOG=profiles_migration.log DATETIME="[$(date '+%Y/%m/%d') - $(date '+%H:%M:%S')]" echo "${DATETIME} Move fs directory to fs.real directory " >> $LOG 2>&1 mv /var/lib/ulteo/ovd/slaveserver/fs /var/lib/ulteo/ovd/slaveserver/fs.real >> $LOG 2>&1 echo "${DATETIME} Create new fs directory " >> $LOG 2>&1 mkdir -p /var/lib/ulteo/ovd/slaveserver/fs >> $LOG 2>&1 for p in /var/lib/ulteo/ovd/slaveserver/fs.real/p_* do echo "${DATETIME} Start copying data from directory ${p}" >> $LOG 2>&1 continued.. Migration Guide ULTEO SAS

22 if [ -e ${p}/conf.windows ]; then echo "${DATETIME} Create conf directories in ${p}" >> $LOG 2>&1 mkdir ${p}/conf.windows.2008r2 ${p}/conf.windows.2008 ${p}/conf.windows.2003 >> $LOG 2>&1 echo "${DATETIME} Rename AppData and LocalAppData in ${p}" >> $LOG 2>&1 mv ${p}/conf.windows/appdata ${p}/conf.windows/csidl_appdata >> $LOG 2>&1 mv ${p}/conf.windows/localappdata ${p}/conf.windows/csidl_local_appdata >> $LOG 2>&1 echo "${DATETIME} Copy data from directory in ${p}" >> $LOG 2>&1 cp -R ${p}/conf.windows/* ${p}/conf.windows.2003 >> $LOG 2>&1 cp -R ${p}/conf.windows/* ${p}/conf.windows.2008 >> $LOG 2>&1 cp -R ${p}/conf.windows/* ${p}/conf.windows.2008r2 >> $LOG 2>&1 rm -rf ${p}/conf.windows/ >> $LOG 2>&1 fi echo "${DATETIME} Move Desktop and Documents to Data directory in ${p} " >> $LOG 2>&1 mkdir ${p}/data >> $LOG 2>&1 mv ${p}/desktop ${p}/documents ${p}/data >> $LOG 2>&1 done echo "${DATETIME} Chown on /var/lib/ulteo/ovd/slaveserver/fs ">> $LOG 2>&1 chown ovd-fs:ovd-fs /var/lib/ulteo/ovd/slaveserver/fs >> $LOG 2>&1 Make the file executable and run the script. The script will create a log file in the same folder. (OVD)root@srv:/#: chmod u+x /root/profiles_migration.sh (OVD)root@srv:/#: /root/profiles_migration.sh Migration Guide ULTEO SAS

23 Now update the OVD software. Working inside the OVD Subsystem, remove the package ulteo-ovd-desktop-settings. apt-get remove ulteo-ovd-desktop-settings Modify the software installation sources file to add the new source vi /etc/apt/sources.list.d/ulteo_ovd.list Add the new source for OVD 4 and save the changes deb lucid main Update the software packages for the subsystem (OVD)root@srv:/#: apt-get update && apt-get install ulteo-ovdslaveserver ulteo-ovd-slaveserver-role-fs Migration Guide ULTEO SAS

24 4.5.2 Install OVD 4 File Server Package Now working outside the subsystem again, update the OVD software package. For the Linux distro you have installed, use the following commands to add the new source and install OVD 4.0 NOTE: If you have installed the File Server on the same server as the Application Server, the software would have been already been installed when updating the Application Server Debian/Ubuntu Edit the sources file. root@server:~# vi /etc/apt/sources.list.d/ulteo-ovd.list Add the OVD source and save the file deb [dists] main * replace dists with either lucid or precise depending on your distribution Install the OVD 4 subsystem software root@server:~# apt-get update && apt-get install ulteo-ovd-subsystem Migration Guide ULTEO SAS

25 Centos/Redhat 6.0 Edit the repository file vi /etc/yum.repos.d/ovd.repo Add the new repository and save the file [ovd-4.0.0] name=ulteo OVD baseurl= enabled=1 gpgcheck=1 gpgkey= Install the OVD 4 subsystem software root@server:~# yum install ulteo-ovd-subsystem SUSE Linux Enterprise Server 11 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-subsystem Migration Guide ULTEO SAS

26 opensuse 11.3 Add the OVD 4 repository file zypper ar ovd Install OVD 4.0 root@server:~# zypper refresh && zypper install ulteo-ovd-subsystem Restarting the File Server To restart the File Server, issue the following command to restart the subsystem from outside the chroot NOTE: If you have installed the File Server on the same server as the Application Server, this command will start both the File Server and the Application Server. root@server:~# /etc/init.d/ulteo-ovd-subsystem start Migration Guide ULTEO SAS

27 4.6 OVD Gateway Finally, upgrade the OVD Gateway. The Gateway does not have an OVD Subsystem, so it is only necessary to upgrade the OVD software package. The migration instructions are written for an OVD Gateway running Ubuntu Lucid Update OVD 4 Gateway The OVD Gateway should have already been stopped as part of the preparation. If not, then issue the following command on the server: root@server:~# /etc/init.d ulteo-ovd-slaveserver stop Edit the sources file. root@server:~# vi /etc/apt/sources.list.d/ulteo-ovd.list Add the OVD source for Debian/Ubuntu and save the file deb lucid main deb precise main Install OVD 4 root@server:~# apt-get update && apt-get install ulteo-ovd-slaveserver ulteo-ovd-slaveserver-role-gateway Restart the Gateway service. root@server:~# /etc/init.d ulteo-ovd-slaveserver start Migration Guide ULTEO SAS

28 4.7 Production Mode The migration is complete. Switch the system to production mode. If you meet issues, please send us an at and add in subject [MIGRATION ISSUES] Migration Guide ULTEO SAS

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT Contents 1 Prerequisites: Ubuntu 12.04 (Precise Pangolin) 3 1.1 System Requirements.............................. 3 1.2 sudo.........................................

More information

ULTEO OPEN VIRTUAL DESKTOP OVD WEB APPLICATION GATEWAY

ULTEO OPEN VIRTUAL DESKTOP OVD WEB APPLICATION GATEWAY ULTEO OPEN VIRTUAL DESKTOP V4.0.2 OVD WEB APPLICATION GATEWAY Contents 1 Introduction 2 2 Overview 3 3 Installation 4 3.1 Red Hat Enterprise Linux 6........................... 4 3.2 SUSE Linux Enterprise

More information

Ulteo Open Virtual Desktop Installation

Ulteo Open Virtual Desktop Installation Ulteo Open Virtual Desktop Installation Copyright 2008 Ulteo SAS - CONTENTS CONTENTS Contents 1 Prerequisites 2 1.1 Installation of MySQL....................................... 2 2 Session Manager (sm.ulteo.com)

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR)

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) Mathieu SCHIRES Version: 0.9.1 Published December 24, 2014 http://www.inuvika.com Contents 1 Prerequisites: Ubuntu 14.04 (Trusty Tahr) 3

More information

Installation documentation for Ulteo Open Virtual Desktop

Installation documentation for Ulteo Open Virtual Desktop Installation documentation for Ulteo Open Virtual Desktop Copyright 2008 Ulteo SAS - 1 PREREQUISITES CONTENTS Contents 1 Prerequisites 1 1.1 Installation of MySQL.......................................

More information

How To Understand The Architecture Of An Ulteo Virtual Desktop Server Farm

How To Understand The Architecture Of An Ulteo Virtual Desktop Server Farm ULTEO OPEN VIRTUAL DESKTOP V4.0.2 ARCHITECTURE OVERVIEW Contents 1 Introduction 2 2 Servers Roles 3 2.1 Session Manager................................. 3 2.2 Application Server................................

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

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

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

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel

2. Boot using the Debian Net Install cd and when prompted to continue type linux26, this will load the 2.6 kernel These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external

More information

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers 1 Contents QuickBooks Enterprise Solutions and Linux... 3 Audience of This Guide... 3 What is the Linux Database Manager

More information

Installing and configuring TrueConf client application for Linux

Installing and configuring TrueConf client application for Linux Installing and configuring TrueConf client application for Linux How to install client application? How to log in? How to configure the application? «TrueConf» Menu «My profile» Section «Logout» Section

More information

Server Installation/Upgrade Guide

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

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

What s New in Propalms VPN 3.5?

What s New in Propalms VPN 3.5? What s New in Propalms VPN 3.5? Contents Improved Management Console Interface... 2 Inline Help on Management Console... 2 Graphical Dashboard on Management Console... 2 Multiple Authentication Server

More information

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

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

More information

How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit)

How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) Introduction Prerequisites This tutorial will show you step-by-step on how to install Multicraft 1.8.2 on a new VPS or dedicated

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

CPE111 COMPUTER EXPLORATION

CPE111 COMPUTER EXPLORATION CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a

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

Portal Instructions for Mac

Portal Instructions for Mac Portal Instructions for Mac Table of Contents Introduction... 1 Preparing Safari... 2 Advanced Access Instructions... 3 Installing Java... 3 Setting the Default Browser... 3 Installing the Browser Plug-in...

More information

CDH 5 Quick Start Guide

CDH 5 Quick Start Guide CDH 5 Quick Start Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

insync Installation Guide

insync Installation Guide insync Installation Guide 5.2 Private Cloud Druva Software June 21, 13 Copyright 2007-2013 Druva Inc. All Rights Reserved. Table of Contents Deploying insync Private Cloud... 4 Installing insync Private

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

NoMachine Enterprise Products, Cloud Server Installation and Configuration Guide

NoMachine Enterprise Products, Cloud Server Installation and Configuration Guide pproved by: NoMachine Enterprise Products, Cloud Server Installation and Configuration Guide Page 1 of 18 pproved by: Table of Contents 1. NoMachine Cloud Server 3 1.1. Resources on the Web 3 1.2. Prerequisites

More information

Tutorial Guide to the IS Unix Service

Tutorial Guide to the IS Unix Service Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular

More information

Installing and Using the Zimbra Reporting Tool

Installing and Using the Zimbra Reporting Tool Installing and Using the Zimbra Reporting Tool October 2014 Legal Notices Copyright 2005-2014 Zimbra, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual

More information

Massey University Follow Me Printer Setup for Linux systems

Massey University Follow Me Printer Setup for Linux systems Massey University Follow Me Printer Setup for Linux systems RedHat and Debian based systems Requirements You must have an active Massey network account, i.e. you should already be able to log onto the

More information

Upgrade Guide BES12. Version 12.1

Upgrade Guide BES12. Version 12.1 Upgrade Guide BES12 Version 12.1 Published: 2015-02-25 SWD-20150413111718083 Contents Supported upgrade environments...4 Upgrading from BES12 version 12.0 to BES12 version 12.1...5 Preupgrade tasks...5

More information

Cassandra Installation over Ubuntu 1. Installing VMware player:

Cassandra Installation over Ubuntu 1. Installing VMware player: Cassandra Installation over Ubuntu 1. Installing VMware player: Download VM Player using following Download Link: https://www.vmware.com/tryvmware/?p=player 2. Installing Ubuntu Go to the below link and

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

Remote Application Server Version 14. Last updated: 25-02-15

Remote Application Server Version 14. Last updated: 25-02-15 Remote Application Server Version 14 Last updated: 25-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

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

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download

More information

Remote Application Server Version 14. Last updated: 06-02-15

Remote Application Server Version 14. Last updated: 06-02-15 Remote Application Server Version 14 Last updated: 06-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

Backup and Restore MySQL Databases

Backup and Restore MySQL Databases Backup and Restore MySQL Databases As you use XAMPP, you might find that you need to backup or restore a MySQL database. There are two easy ways to do this with XAMPP: using the browser-based phpmyadmin

More information

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual Setting up VMware Server v1 for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

GroundWork Monitor Open Source 5.1.0 Installation Guide

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

More information

Configure Single Sign on Between Domino and WPS

Configure Single Sign on Between Domino and WPS Configure Single Sign on Between Domino and WPS What we are doing here? Ok now we have the WPS server configured and running with Domino as the LDAP directory. Now we are going to configure Single Sign

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Upgrading MySQL from 32-bit to 64-bit

Upgrading MySQL from 32-bit to 64-bit Upgrading MySQL from 32-bit to 64-bit UPGRADING MYSQL FROM 32-BIT TO 64-BIT... 1 Overview... 1 Upgrading MySQL from 32-bit to 64-bit... 1 Document Revision History... 21 Overview This document will walk

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

Installation Manual Version 8.5 (w/sql Server 2005)

Installation Manual Version 8.5 (w/sql Server 2005) C ase Manag e m e n t by C l i e n t P rofiles Installation Manual Version 8.5 (w/sql Server 2005) T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W Table of Contents - 2 - Table of Contents SERVER

More information

CommandCenter Secure Gateway

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

More information

WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express

WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express Edition or SQL Server 2008 Express R2 to Microsoft SQL Server

More information

Create a virtual machine at your assigned virtual server. Use the following specs

Create a virtual machine at your assigned virtual server. Use the following specs CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine

More information

Active Directory Integration for Greentree

Active Directory Integration for Greentree App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3

More information

WhatsUp Gold v16.2 Database Migration and Management Guide

WhatsUp Gold v16.2 Database Migration and Management Guide WhatsUp Gold v16.2 Database Migration and Management Guide Contents CHAPTER 1 How to use this guide CHAPTER 2 Migrating the WhatsUp Gold Microsoft SQL Server 2008 R2 Express Edition database to Microsoft

More information

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

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

More information

Creating a DUO MFA Service in AWS

Creating a DUO MFA Service in AWS Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013

More information

Use of Commercial Backup Software with Juris (Juris 2.x w/msde)

Use of Commercial Backup Software with Juris (Juris 2.x w/msde) Use of Commercial Backup Software with Juris (Juris 2.x w/msde) Juris databases hosted on a Microsoft SQL Server 2000 Desktop Engine (MSDE) instance can be backed up manually through the Juris Management

More information

Internet Address: cloud.ndcl.org

Internet Address: cloud.ndcl.org NDCL Cloud Virtual access to NDCL s computer network Internet Address: cloud.ndcl.org Accept and install certificate if prompted to do so. Note: Do not put www in the address. Log into the cloud using

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

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

More information

INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER

INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER EVALUATION GUIDE Mathieu SCHIRES Version: 1.0.1 Published March 24, 2015 http://www.inuvika.com Contents 1 Introduction 2 2 Pre-requisites 3 3 Using Third-Party

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Backup/Restore MySQL Server

Backup/Restore MySQL Server This chapter will describe in details how to use Software to backup your MySQL server and how you can restore your MySQL server from the database backup files. Table of Content 1. Requirements 2. Overview

More information

AWS Schema Conversion Tool. User Guide Version 1.0

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

More information

StoreGrid Backup Server With MySQL As Backend Database:

StoreGrid Backup Server With MySQL As Backend Database: StoreGrid Backup Server With MySQL As Backend Database: Installing and Configuring MySQL on Windows Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata

More information

Redmine Installation on Debian. v1.1

Redmine Installation on Debian. v1.1 Redmine Installation on Debian v1.1 Introduction 1. Objectives Have a fully functional Redmine installation on a dedicated server with good performance. The idea of this document came after an easy installation

More information

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express Edition to Microsoft SQL Server 2005, 2008, or 2008 R2

More information

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org Lucid Key Server v2 Installation Documentation Contents System Requirements...2 Web Server...3 Database Server...3 Java...3 Tomcat...3 Installation files...3 Creating the Database...3 Step 1: Create the

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01 A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE Version 1.12 2014-07-01 PAGE _ 2 TABLE OF CONTENTS 1. Introduction....Page 03 2. System Configuration....Page 04 3. Create Backup Script....Page

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

How To Run A Password Manager On A 32 Bit Computer (For 64 Bit) On A 64 Bit Computer With A Password Logger (For 32 Bit) (For Linux) ( For 64 Bit (Foramd64) (Amd64 (For Pc

How To Run A Password Manager On A 32 Bit Computer (For 64 Bit) On A 64 Bit Computer With A Password Logger (For 32 Bit) (For Linux) ( For 64 Bit (Foramd64) (Amd64 (For Pc SafeNet Authentication Client (Linux) Administrator s Guide Version 8.1 Revision A Copyright 2011, SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document

More information

How to Install and Run Tibia on Linux Using Wine without Windows Contents

How to Install and Run Tibia on Linux Using Wine without Windows Contents How to Install and Run Tibia on Linux Using Wine without Windows Contents 1 Disclaimer 2 Overview/Background Information 3 Pre-requirements 4 Installing Wine 4.1 Get to know the environment 4.2 The easiest

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

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Installation and Configuration Introduction This document will walk you step by step in removing MSDE and the setup and

More information

Database Migration and Management Guide v15.0

Database Migration and Management Guide v15.0 Database Migration and Management Guide v15.0 Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express Edition to Microsoft SQL Server 2005 or 2008 Enterprise, Standard, or Workgroup

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

inforouter V8.0 Server Migration Guide.

inforouter V8.0 Server Migration Guide. inforouter V8.0 Server Migration Guide. 1 Copyright 1998-2015 inforouter Migration Guide I f for any reason, you wish to move the entire inforouter installation to another machine, please follow the instructions

More information

DigiVault Online Backup Manager. Microsoft SQL Server Backup/Restore Guide

DigiVault Online Backup Manager. Microsoft SQL Server Backup/Restore Guide DigiVault Online Backup Manager Microsoft SQL Server Backup/Restore Guide Version 4.6.1.4 October 2005 DigiVault Backup Manager User Guide 2 Table of Contents 1 Backup/Restore Microsoft SQL Server 7.0

More information

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1 How To Upgrade Your Microsoft SQL Server for Version 2012.1 The first step is to gather important information about your existing configuration. Identify The Database Server and SQL Server Version The

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

INUVIKA TECHNICAL GUIDE

INUVIKA TECHNICAL GUIDE --------------------------------------------------------------------------------------------------- INUVIKA TECHNICAL GUIDE ENTERPRISE EVALUATION GUIDE OVD Enterprise External Document Version 1.1 Published

More information

Migrating MSDE to Microsoft SQL 2008 R2 Express

Migrating MSDE to Microsoft SQL 2008 R2 Express How To Updated: 11/11/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. If you are still on MSDE 2000,

More information

Cloudera Manager Introduction

Cloudera Manager Introduction Cloudera Manager Introduction Important Notice (c) 2010-2013 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained

More information

Server & Workstation Installation of Client Profiles for Windows

Server & Workstation Installation of Client Profiles for Windows C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W General Notes to Prepare for Installing

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud David Pae, Ulf Schoo June 2013 (Please consult http://aws.amazon.com/windows/

More information

ONLINE BACKUP MANAGER TROUBLESHOOTING MISSING BACKUP JOBS

ONLINE BACKUP MANAGER TROUBLESHOOTING MISSING BACKUP JOBS ONLINE BACKUP MANAGER TROUBLESHOOTING MISSING BACKUP JOBS 1. Computer shutdown or hibernated. Check if the affected computer was switched off, hibernated or in standby mode when the scheduled backup is

More information

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

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

More information

Welcome and thank you for considering enstratus as your cloud management platform.

Welcome and thank you for considering enstratus as your cloud management platform. 1 1.1 Welcome Welcome and thank you for considering enstratus as your cloud management platform. Please read this guide in its entirety before attempting to install enstratus. It contains very useful information

More information

AWS Schema Conversion Tool. User Guide Version 1.0

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

More information

Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0

Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0 Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0 Table of Contents Overview... 2 FTMS Server Hardware Requirements... 2 Tested Operating Systems... 2 Node Manager... 2 User Interfaces... 3 License

More information

Installing Platform RTM. Platform RTM Version 8.0.2 Release date: October 2011

Installing Platform RTM. Platform RTM Version 8.0.2 Release date: October 2011 Installing Platform RTM Platform RTM Version 8.0.2 Release date: October 2011 Copyright 1994-2011 Platform Computing Corporation. Although the information in this document has been carefully reviewed,

More information

User Guide - escan for Linux File Server

User Guide - escan for Linux File Server 1 User Guide - escan for Linux File Server 2 I. Required escan for Linux RPMS / Debian packages RPM Package Name File name mwadmin mwav escan escan-rtm mwadmin-x.x-x..i386.rpm mwav-x.x-x.

More information

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide Note Before using this

More information

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor Linux Overview Local facilities Linux commands The vi (gvim) editor MobiLan This system consists of a number of laptop computers (Windows) connected to a wireless Local Area Network. You need to be careful

More information

The objective of this lab is to learn how to set up an environment for running distributed Hadoop applications.

The objective of this lab is to learn how to set up an environment for running distributed Hadoop applications. Lab 9: Hadoop Development The objective of this lab is to learn how to set up an environment for running distributed Hadoop applications. Introduction Hadoop can be run in one of three modes: Standalone

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

MySQL Backups: From strategy to Implementation

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

More information

SQL EXPRESS INSTALLATION...

SQL EXPRESS INSTALLATION... Contents SQL EXPRESS INSTALLATION... 1 INSTALLING SQL 2012 EXPRESS... 1 SQL EXPRESS CONFIGURATION... 7 BILLQUICK DATABASE... 9 SQL Express Installation The Microsoft SQL Server 2012 Express software is

More information

nitrobit update server

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

More information

ilaw Installation Procedure

ilaw Installation Procedure ilaw Installation Procedure This guide will provide a reference for a full installation of ilaw Case Management Software. Contents ilaw Overview How ilaw works Installing ilaw Server on a PC Installing

More information

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name Integrate Oracle Applications R12 with Oracle Internet Directory and SSO ----------------------------------------------------------------------------------------- High Level Steps --------------------

More information