Columbus 2.5. Installation Guide

Size: px
Start display at page:

Download "Columbus 2.5. Installation Guide"

Transcription

1 Columbus 2.5 Installation Guide Last Updated: September 3, 2014

2 Table of Contents 1 Introduction General Prerequisites Columbus 2.5 Installation on SLES Prerequisites Installation from Online Repository Installation from DVD or Folder Customized Installation Locations Upgrading from Previous Columbus 2.5 versions on SLES Upgrading from Columbus 2.3 to 2.4 on SLES Database Migration Columbus Software Upgrade Columbus 2.5 installation on RHEL Prerequisites Installation from Online Repository Installation from DVD Upgrading from previous Columbus 2.5 versions on RHEL Upgrading from Columbus 2.3 to 2.4 on RHEL Creating Database Dump Mounting File Repository on New RHEL 6 System Installing Columbus 2.5 Software Migrating the Database Starting the Server General Notes First-time Sign In Vendor Changes or Conflicting Packages Repository Administration SLES Refreshing Repository before Upgrade Repository Administration RHEL Creating a Database Dump Copyright PerkinElmer, Inc. All rights reserved. 2 of 15

3 10.7 Temporary Files Adding Swap Files to Increase Available Swap Space Tomcat Webservice Configuration Enable SSL/TLS for Columbus Login Page Troubleshooting Database Migration Copyright PerkinElmer, Inc. All rights reserved. 3 of 15

4 1 Introduction Columbus is distributed as a bundle of RPM packages for SUSE Linux Enterprise 11 (SLES 11) and Red Hat Enterprise Linux 6 (RHEL 6). The packages are available from an online software repository or a DVD. The installation of these packages differs between operating systems where the prerequisites and procedures are described below. 1.1 General Prerequisites The system hardware must conform to the Columbus Hardware Specification. Administrator privileges are required for the installation process and it is recommended to have network access on the system, setup with a static IP address and the hostname registered in local DNS. If an additional storage system is to be used for the file repository, it must be mounted and the path must be known. The firewall between client computers and the Columbus server must allow TCP traffic on ports: 22 (ssh for administrator access), 80, 443 (http, https Columbus webapp), 4063, 4064 (Columbus Java clients), and 8081 (http Columbus SOAP webservice interface). The system must have at least 64GB of swap file space. See the section on checking and adding swap files later in this guide to meet this requirement. 2 Columbus 2.5 Installation on SLES Prerequisites The package manager program zypper must be setup so the operating system installation media (DVD or online repository) are available and enabled. To configure this, check the software repository settings under the software management section in YaST. In addition to the standard repositories, the SUSE Linux Enterprise Software Development Kit (SDK) 11 must be available. Usually this is done by adding the SDK ISO image as an 'Add-On' product under the software management section in YaST. Details can be found in the SLES 11 Deployment Guide. 2.2 Installation from Online Repository You need to add the Columbus software online repository to the available software repositories. Once it is available, you can install the 'Columbus' package. To perform the installation from the command line, you issue the following commands. Note: All commands are on one line. Sometimes this is illustrated with a \ at the end of the first line. user@columbus-server:~> sudo zypper addrepo f \ Columbus user@columbus-server:~> sudo zypper install Columbus The last command may require confirmation to store software-sign-keys and some installation steps. For details see the zypper manual page. It is also possible to add the repository and install Columbus using YaST, see SLES 11 Deployment Guide for details. Once installed, start Columbus by following the section entitled Starting the Server. Copyright PerkinElmer, Inc. All rights reserved. 4 of 15

5 2.3 Installation from DVD or Folder Similar to the installation from an online repository, you need to add the installation folder on the DVD as a software repository. Once the DVD is mounted, you enter the following commands on the command line to perform the installation. Note: The path to the DVD drive may vary. To update the path to the DVD drive use the following command: user@columbus-server:~> sudo zypper addrepo f \ /media/cdrom/installation/server/sles11.1 Columbus user@columbus-server:~> sudo zypper install Columbus The last command may require confirmation to store software-sign-keys and installation steps. For details see the zypper manual page. It is also possible to add the repository and install Columbus using YaST, see SLES 11 Deployment Guide for details. In case you have downloaded a zip archive containing the software packages, the process is similar except that you use the path to the unzipped archive. Once installed, start Columbus by following the section entitled Starting the Server. 3 Customized Installation Locations In case a different data repository should be used, the default is /OMERO/OMERO4_4, you can set an environment variable that points to the new location before you run the installation. We recommend using the default value for the last components of the path. user@columbus-server:~> sudo su - user@columbus-server:~> DATA_DIR=/path/to/data/repository/OMERO/OMERO4_4 \ zypper install Columbus Another option is to use the default but create a link that points to the actual repository location before you run the installation. user@columbus-server:~> sudo ln -s /path/to/data/repository/omero /OMERO user@columbus-server:~> sudo zypper install Columbus The default installation folder is /usr/local/perkinelmerctg. In order to change the software installation folder, we recommend creating a link that points to the customized location before you install the software. user@columbus-server:~> sudo ln -s /path/to/software/installation/folder \ /usr/local/perkinelmerctg 4 Upgrading from Previous Columbus 2.5 versions on SLES 11 Note: Before you perform an upgrade, we recommend to create a backup of your file-repository. At least you must make sure to have a recent database dump. See the General Notes section for details. Before you perform an upgrade make sure that your Columbus SMA expiration date has not passed. Copyright PerkinElmer, Inc. All rights reserved. 5 of 15

6 Make sure that your registered Columbus software repository points to the location of the new Columbus 2.5 software. You can get the list of currently registered software repositories using zypper: sudo zypper lr u Check that the URL of the Columbus software repository either points to the online repository mentioned in the installation section or to the software repository on the DVD as described above. In case the registered repository differs from the one where the new Columbus 2.5 software is located, remove the existing repository: user@columbus-server:~> sudo zypper rr Columbus Afterwards, register the new repository as described in the installation section. Manually stop the current Columbus server and run the update with the following commands: user@columbus-server:~> sudo /etc/init.d/columbus stop user@columbus-server:~> sudo zypper update r Columbus Where the last argument of the second command is the repository name you specified when the Columbus software repository was registered. Once the upgrade completed, start Columbus by following the section entitled Starting the Server. 5 Upgrading from Columbus 2.3 to 2.4 on SLES 11 Note: Before you perform an upgrade of Columbus, we recommend: Creating a backup of your file-repository which should also contain an up-to-date database dump. Ensuring your Columbus SMA has not expired. The Columbus upgrade is a two-step process: 1. Database migration 2. Columbus software upgrade These steps are detailed below. 5.1 Database Migration The database migration is performed with a shell script that needs to be run from the command line of the Columbus server. This script is available on the DVD and in the online repository. Depending on the database size and server system, the migration can take a significant time, up to several hours. Hence, when using a remote SSH connection to run the script on the Columbus server, it is recommended to run it within a screen-session as described below, otherwise the script will be terminated if the connection is accidentally lost. Note: Alternatively, you can use the nohup command. See the manual pages of nohup for details. Enter the following commands to download the script from the online repository and make it executable: user@columbus-server:~> wget \ lumbus_db_migration.sh Copyright PerkinElmer, Inc. All rights reserved. 6 of 15

7 chmod a+x columbus_db_migration.sh To use the script from the DVD, copy it to your working folder: cp \ /media/cdrom/server/installation/sles11.1/columbus_db_migration.sh. Once the script is in place, start a screen-session and run the script with administrator privileges: user@columbus-server:~> screen user@columbus-server:~> sudo./columbus_db_migration.sh Note: If you lose connection to the server, create a new one with the following command. user@columbus-server:~> screen r When executing, the migration script does the following: Displays an estimate for the total run length. Creates a new database dump in the /OMERO/OMERO4_1/db_backup folder. Restores this dump into a new database instance. Performs the database migration on the new database. Note: The progress reporting feedback may not update for a period of time, this does not mean the process has stopped working. If you require information on the database migration, a detailed log may be found in the file 2.3-to-2.4-dbmigration.log located in the current working folder. Any changes made in Columbus 2.3 after the migration script has been run will not be part of the migrated Columbus 2.4 database. 5.2 Columbus Software Upgrade Once the database migration has been completed, the next step is to upgrade from Columbus 2.3 to Columbus 2.4. Remove the old Columbus repository by typing the following command: user@columbus-server:~> sudo zypper rr Columbus Add the new Columbus 2.4 repository as follows: user@columbus-server:~> sudo zypper addrepo \ Columbus Manually stop the Columbus server and remove the Acapella RPMs with the following commands: user@columbus-server:~> sudo /etc/init.d/columbus stop user@columbus-server:~> sudo rpm e -nodeps Acapella2.7 Acapella2.7-server The update can then be performed with the following command: user@columbus-server:~> sudo zypper update r Columbus Copyright PerkinElmer, Inc. All rights reserved. 7 of 15

8 After the update has completed successfully, start Columbus by following the section entitled Starting the Server. 6 Columbus 2.5 installation on RHEL Prerequisites The package manager program yum must be setup so the operating system installation media (DVD or URL) are available and enabled. See the Package Management Manual for details. 6.2 Installation from Online Repository You need to add the Columbus software online repository to the available software repositories. Once the software repository has been set up, you can install the 'Columbus' package. The following command installs the required repository registration file. Note: You need to run yum install yum-utils in case yum-config-manager is not installed. user@columbus-server:~> sudo yum-config-manager -add-repo \ user@columbus-server:~> sudo yum --nogpgcheck install Columbus Once installed, start Columbus by following the section entitled Starting the Server. 6.3 Installation from DVD Similar to the installation from an online repository, you needs to add the installation folder on the DVD as a software repository. There is an RPM package on the DVD that registers the DVD as a software repository. Once the DVD is mounted, enter the following commands on the command line to perform the installation. Note: The path to the DVD drive may vary. To update the path to the DVD drive use the following command: user@columbus-server:~> sudo yum-config-manager -add-repo \ file:///media/cdrom/installation/server/rhel6 user@columbus-server:~> sudo yum --nogpgcheck install Columbus If you have downloaded a zip archive containing the software packages, the process is similar except that you use the path to the unzipped archive. Once installed, start Columbus by following the section entitled Starting the Server. 7 Upgrading from previous Columbus 2.5 versions on RHEL 6 Note: Before you perform an upgrade of Columbus, we recommend: Creating a backup of your file-repository which should also contain an up-to-date database dump. Ensuring your Columbus SMA has not expired. Make sure your registered Columbus software repository points to the location of the new Columbus 2.5 software. Copyright PerkinElmer, Inc. All rights reserved. 8 of 15

9 You can get the list of currently registered software repositories using yum: sudo yum repolist -v Check that the URL of the Columbus software repository either points to the online repository mentioned in the installation section or to the software repository on the DVD as described above. In case the registered repository differs from the one where the new Columbus 2.5 software is located, either remove the existing repository and register the new repository as described in the installation section above, or modify the /etc/yum.repos.d/columbus2.5.repo manually. Once the repository is setup, manually stop the current Columbus server and run the update with the following commands: sudo /etc/init.d/columbus stop yum groupupdate Columbus After the update has completed successfully, start Columbus by following the section entitled Starting the Server. 8 Upgrading from Columbus 2.3 to 2.4 on RHEL 6 Note: Before you perform an upgrade of Columbus, we recommend: Creating a backup of your file-repository which should also contain an up-to-date database dump. Ensuring your Columbus SMA has not expired Columbus 2.4 is only supported on RHEL 6. This means that for an upgrade from Columbus 2.3 (RHEL 5), a change to RHEL 6 will be required. Alternatively, Columbus may be moved to a new server with RHEL 6. Note: RHEL 6 must be a fresh installation as Red Hat do not support upgrades from earlier major versions. In either case, the Columbus upgrade is a four-step process: 1. Create database dump on existing RHEL 5 system 2. Mount file repository on new RHEL 6 system 3. Columbus 2.4 software installation 4. Database migration These steps are detailed below. 8.1 Creating Database Dump Stop Columbus and create a database dump on the existing Columbus 2.3 installation on RHEL 5, the dump file needs to be stored in the db_backup folder in the Columbus file repository: columbus@columbus-server:~> sudo /etc/init.d/columbus stop columbus@columbus-server:~> sudo su columbus - columbus@columbus-server:~> pg_dump Fc v f \ /OMERO/OMERO4_1/db_backup/omero4_1_dump_before_upgrade.pg_dump omero4_1 columbus@columbus-server:~> exit Copyright PerkinElmer, Inc. All rights reserved. 9 of 15

10 8.2 Mounting File Repository on New RHEL 6 System Once the database dump is created, either perform a fresh installation of RHEL 6 on the same system or move the file repository to a new server where RHEL 6 has been installed. After the file repository is available again under the new operating system, rename the OMERO4_1 folder to OMERO4_4 so that the new software installation recognizes it: user@columbus-server:~> sudo mv /OMERO/OMERO4_1 /OMERO/OMERO4_4 8.3 Installing Columbus 2.5 Software After the file repository name has been changed, you need to perform a standard Columbus 2.5 software installation as described in the Columbus 2.5 installation on RHEL 6 section above. Once the installation is complete, check that the files and folders inside the file repository are owned by the Columbus user, and if this is not the case, perform an ownership change: columbus@columbus-server:~> sudo chown R columbus: /OMERO/OMERO4_4 Do not start Columbus after installation. You must first perform the database migration as described in the next section. If Columbus 2.3 was not running with a default license file, then you need to copy that file from the RHEL 5 system to the RHEL 6 system to /etc/acapella_license.txt. 8.4 Migrating the Database The aim of this step is to replace the empty default database from the installation with the Columbus 2.3 database dump you have created in the first step. The database migration is performed with a shell script that needs to be run from the command line of the Columbus server. This script is available on the DVD and in the online repository. Depending on the database size and server system, the migration can take a significant time, up to several hours. Hence, when using a remote SSH connection to run the script on the Columbus server, it is recommended to run it within a screen-session as described below, otherwise the script will be terminated if the connection is accidentally lost. Note: Alternatively, you can use the nohup command. See the manual pages of nohup for details. Enter the following commands to download the script from the online repository and make it executable: user@columbus-server:~> wget \ bus_db_migration.sh user@columbus-server:~> chmod a+x columbus_db_migration.sh To use the script from the DVD, copy it to your working folder: user@columbus-server:~> cp \ /media/cdrom/server/installation/rhel6/columbus_db_migration.sh. Once the script is in place, start a screen-session, drop the empty database and run the script with administrator privileges, as an argument you supply the path to the database dump file that you have created above: Copyright PerkinElmer, Inc. All rights reserved. 10 of 15

11 screen sudo su - postgres user@columbus-server:~> dropdb omero4_4 user@columbus-server:~> exit user@columbus-server:~> sudo./columbus_db_migration.sh \ /OMERO/OMERO4_4/db_backup/omero4_1_dump_before_upgrade.pg_dump Note: If you lose connection to the server, create a new one with the following command: user@columbus-server:~> screen r When running, the migration script does the following: Displays an estimate for the total run length. Restores this dump into a new database instance. Performs the database migration on the new database. Notes: The progress reporting feedback may not update for a period of time, this does not mean the process has stopped working. If you require information on the database migration, a detailed log may be found in the file 2.3-to-2.4-dbmigration.log located in the current working folder. After the database migration has completed successfully, start Columbus by following the section entitled Starting the Server. 9 Starting the Server The Columbus server can be started manually by calling: user@columbus-server:~> sudo /etc/init.d/columbus start The service script is invoked automatically during system start. The server applications run under the Columbus and Acapella system accounts. The status of the server can be checked with: user@columbus-server:~> sudo /etc/init.d/columbus status The server can be stopped with: user@columbus-server:~> sudo /etc/init.d/columbus stop The additional web-service application which is used by third-party applications to access the Columbus database needs Tomcat running. To start Tomcat: user@columbus-server:~> sudo /etc/init.d/tomcat6 start Copyright PerkinElmer, Inc. All rights reserved. 11 of 15

12 10 General Notes 10.1 First-time Sign In With a browser on a client machine, navigate to and sign in with the default administrator credentials (username: root and password: columbus). Use the Users & Groups link from the Administration menu to open the user and group administration panel. Here you can create a new group and new user to start working with Columbus with these new accounts Vendor Changes or Conflicting Packages The installation process may complain about vendor changes of packages, this should be accepted. In case of conflicting packages, try to choose a solution that keeps the most recent version of the package. For instance, the aksusbd package may be installed in an older version and the installation process will report a conflict with the new version included in Columbus Repository Administration SLES11.1 To list all software repositories, you can use the list-repository command user@columbus-server:~> sudo zypper lr To remove a software repository, e.g. an invalid Columbus repository, you can use the name (in this example Columbus ) of the repository and the remove-repository command: user@columbus-server:~> sudo zypper rr Columbus 10.4 Refreshing Repository before Upgrade On SLES 11, in case the Columbus repository is not set to be refreshed automatically, the update command may not find any update packages for Columbus. In this case you need to refresh the repository manually, here the repository is name Columbus : user@columbus-server:~> sudo zypper refresh Columbus 10.5 Repository Administration RHEL 6 To list all software repositories, you can use the repolist command user@columbus-server:~> sudo yum repolist To remove the Columbus software repository, remove the Columbus repository file in /etc/yum.repos.d. Depending on how the repository was registered, the file name can vary Creating a Database Dump For a backup of the relational database tables, you can create a database dump and store it in a secure backup location. Columbus installs a cronjob that creates a database dump in the file repository under the db_backup folder. In order to perform a dump manually before an update you can run the following commands. Copyright PerkinElmer, Inc. All rights reserved. 12 of 15

13 Note: The path to the Columbus file repository may vary. sudo /etc/init.d/columbus stop sudo su columbus pg_dump Fc v f \ /OMERO/OMERO4_4/db_backup/omero4_4_dump_before_upgrade.pg_dump omero4_ Temporary Files The Columbus system may create large temporary files. These are stored in /tmp for which we recommend at least 20GB of free space, and in /var/lib/acapella which allow to keep at least 4GB of data Adding Swap Files to Increase Available Swap Space On many systems, the default swap size can be too low for Columbus to run effectively. It is recommended that the system have at least 64GB swap space. This can be achieved by adding additional swap files manually to the system. This process needs to be done one-time only and will not need to be repeated for upgrades. Start by checking the amount of swap space available on the system using the command: user@columbus-server:~> cat /proc/swaps The output will be something like: Filename Type Size Used Priority /dev/sda1 partition The size parameter is in kbytes and indicates that this system has the default 2GB swap space available. To add additional swap space run the following commands: user@columbus-server:~> sudo mkdir -p /var/lib/swap user@columbus-server:~> sudo dd if=/dev/zero of=/var/lib/swap/swapfile \ bs=1m count=65536 Note: The above command creates a 64GB swap file and can take up to 40 minutes to complete. Once the file is created, it can be activated by using the command: user@columbus-server:~> sudo mkswap /var/lib/swap/swapfile user@columbus-server:~> sudo swapon /var/lib/swap/swapfile Now listing the active swap files with: user@columbus-server:~> cat /proc/swaps looks as follows: Filename Type Size Used Priority Copyright PerkinElmer, Inc. All rights reserved. 13 of 15

14 /dev/sda1 partition /var/lib/swap/swapfile file To make the change permanent, the /etc/fstab file must be modified to instruct the system to load the additional swap file at boot automatically. To make this change, you have to add the following line to the /etc/fstab file: /var/lib/swap/swapfile swap swap defaults Tomcat Webservice Configuration An increased maximum memory assignment for Tomcat is recommended. This can be achieved by modifying the CATALINA_OPTIONS variable in /etc/sysconfig/tomcat6, e.g. add "-Xmx2048M" to this variable in order to set the maximum memory usage to 2GB Enable SSL/TLS for Columbus Login Page Columbus can be configured to serve the Columbus login page over https which uses SSL/TLS to encrypt the user authorization data. In order to enable https perform the following steps: 1. Stop Columbus 2. Edit the file /etc/init.d/columbus and remove the comment in front of the line which contains the variable COLUMBUS_ENABLE_HTTPS 3. Start Columbus again With this configuration change, users visiting will be redirected to Note that the changes to /etc/init.d/columbus will be overwritten with an update of the Columbus software. The first time this page is loaded, you will get a warning that the security certificate used by this page cannot be trusted. This is because Columbus ships with a self-signed certificate which is not in a trusted authority list. You can ignore the warning and the browser will show a symbol in the UI that the page is not trustworthy. In order to avoid this warning you can either install the certificate into the clients certificate store or replace the certificate and security key on the Columbus system which are stored in /usr/local/perkinelmerctg/columbus2.5/webapp/server/config with officially signed versions. 11 Troubleshooting If the Columbus server application does not work properly and you cannot log into the Columbus web application, you should check the log files in /var/log/columbus. There are three folders for each of the components of the system, each with a couple of log files. If the database is not running, check the content of the files master.err and _Blitz-0.log in the /var/log/columbus/db/ folder. If the Acapella server is not running, check the content of the file /var/log/columbus/acc/acapella.log If the web server is not running, check the content of the files /var/log/columbus/web/columbus.log and /var/log/columbus/nginx/error.log. When contacting the support team for assistance it may be helpful to send a zipped version of the log files with your request. The following command will create a logs.zip archive that contains all the log files from the /var/log/columbus folder. Copyright PerkinElmer, Inc. All rights reserved. 14 of 15

15 zip -r logs.zip /var/log/columbus 11.1 Database Migration In case of a database migration failure, the following commands will drop the newly created omero4_4 database. Caution: Only run these commands when you are certain you want to delete the database. user@columbus-server:~> sudo su postgres postgres@columbus-server:~> dropdb omero4_4 postgres@columbus-server:~> exit Copyright PerkinElmer, Inc. All rights reserved. 15 of 15

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

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

More information

Preparing for the Installation

Preparing for the Installation CHAPTER 3 This section describes how to set up the environment for installation. To ensure a successful installation, use the checklist provided in Installation Scenarios and Checklists, page 1-3 for the

More information

1. Product Information

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

More information

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

Online Backup Client User Manual Linux

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

More information

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

RecoveryVault Express Client User Manual

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

More information

JAMF Software Server Installation Guide for Linux. Version 8.6

JAMF Software Server Installation Guide for Linux. Version 8.6 JAMF Software Server Installation Guide for Linux Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.

More information

Upgrading VMware Identity Manager Connector

Upgrading VMware Identity Manager Connector Upgrading VMware Identity Manager Connector VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

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

Online Backup Linux Client User Manual

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

More information

Online Backup Client User Manual

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

More information

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated

More information

CA ARCserve D2D for Linux

CA ARCserve D2D for Linux CA ARCserve D2D for Linux User Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo, Inc. One Burlington Woods Drive Burlington, MA 01803 USA Phone: (781) 373---3540 www.vmturbo.com Table of Contents Introduction

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

Online Backup Client User Manual Mac OS

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

More information

Online Backup Client User Manual Mac OS

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

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2 JAMF Software Server Installation and Configuration Guide for Linux Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

Online Backup Client User Manual

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

More information

McAfee SMC Installation Guide 5.7. Security Management Center

McAfee SMC Installation Guide 5.7. Security Management Center McAfee SMC Installation Guide 5.7 Security Management Center Legal Information The use of the products described in these materials is subject to the then current end-user license agreement, which can

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

24x7 Scheduler Multi-platform Edition 5.2

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

More information

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

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

More information

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

Parallels Plesk Automation

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

More information

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using

More information

Prerequisites and Configuration Guide

Prerequisites and Configuration Guide Prerequisites and Configuration Guide Informatica Support Console (Version 2.0) Table of Contents Chapter 1: Overview.................................................... 2 Chapter 2: Minimum System Requirements.................................

More information

Syncplicity On-Premise Storage Connector

Syncplicity On-Premise Storage Connector Syncplicity On-Premise Storage Connector Implementation Guide Abstract This document explains how to install and configure the Syncplicity On-Premise Storage Connector. In addition, it also describes how

More information

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

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

More information

NetIQ Sentinel 7.0.1 Quick Start Guide

NetIQ Sentinel 7.0.1 Quick Start Guide NetIQ Sentinel 7.0.1 Quick Start Guide April 2012 Getting Started Use the following information to get Sentinel installed and running quickly. Meeting System Requirements on page 1 Installing Sentinel

More information

CA arcserve Unified Data Protection Agent for Linux

CA arcserve Unified Data Protection Agent for Linux CA arcserve Unified Data Protection Agent for Linux User Guide Version 5.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

BF2CC Daemon Linux Installation Guide

BF2CC Daemon Linux Installation Guide BF2CC Daemon Linux Installation Guide Battlefield 2 + BF2CC Installation Guide (Linux) 1 Table of contents 1. Introduction... 3 2. Opening ports in your firewall... 4 3. Creating a new user account...

More information

Moving to Plesk Automation 11.5

Moving to Plesk Automation 11.5 Moving to Plesk Automation 11.5 Last updated: 2 June 2015 Contents About This Document 4 Introduction 5 Preparing for the Move 7 1. Install the PA Moving Tool... 8 2. Install Mail Sync Software (Windows

More information

NovaBACKUP xsp Version 12.2 Upgrade Guide

NovaBACKUP xsp Version 12.2 Upgrade Guide NovaBACKUP xsp Version 12.2 Upgrade Guide NovaStor / August 2011 Rev 20110815 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2 JAMF Software Server Installation and Configuration Guide for OS X Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

RUGGEDCOM NMS for Linux v1.6

RUGGEDCOM NMS for Linux v1.6 Welcome to RNMS 1 Installation 2 RUGGEDCOM NMS for Linux v1.6 Notes on RNMS 3 Installation Upgrades 4 09/2013 Copyright 2013 Siemens AG All rights reserved. Dissemination or reproduction of this document,

More information

Getting Started with ESXi Embedded

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

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0 JAMF Software Server Installation and Configuration Guide for OS X Version 9.0 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.0

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.0 JAMF Software Server Installation and Configuration Guide for Linux Version 9.0 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

Reconfiguration of VMware vcenter Update Manager

Reconfiguration of VMware vcenter Update Manager Reconfiguration of VMware vcenter Update Manager Update 1 vcenter Update Manager 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is

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

CLOUD INFRASTRUCTURE VIRTUAL SERVER (SHARED) USER GUIDE

CLOUD INFRASTRUCTURE VIRTUAL SERVER (SHARED) USER GUIDE CLOUD INFRASTRUCTURE VIRTUAL SERVER (SHARED) USER GUIDE WELCOME TO THE VIRTUAL SERVER (SHARED) USER GUIDE AUSTRALIAN ACCOUNT HOLDERS For sales, account set-up enquiries and technical support, contact your

More information

Deploying Intellicus Portal on IBM WebSphere

Deploying Intellicus Portal on IBM WebSphere Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com

More information

Notes for Installing RedHawk 6.3 with Red Hat Enterprise Linux 6.3. Installation Notes. November 6 th, 2014

Notes for Installing RedHawk 6.3 with Red Hat Enterprise Linux 6.3. Installation Notes. November 6 th, 2014 Notes for Installing RedHawk 6.3 with Red Hat Enterprise Linux 6.3 Installation Notes November 6 th, 2014 This page intentionally left blank 1. Introduction This document assists the user in installing

More information

TimeIPS Server. IPS256T Virtual Machine. Installation Guide

TimeIPS Server. IPS256T Virtual Machine. Installation Guide TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision

More information

Using Network Attached Storage with Linux. by Andy Pepperdine

Using Network Attached Storage with Linux. by Andy Pepperdine Using Network Attached Storage with Linux by Andy Pepperdine I acquired a WD My Cloud device to act as a demonstration, and decide whether to use it myself later. This paper is my experience of how to

More information

QuickStart Guide for Managing Computers. Version 9.2

QuickStart Guide for Managing Computers. Version 9.2 QuickStart Guide for Managing Computers Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Disaster Recovery System Administration Guide for Cisco Unified Contact Center Express Release 8.5(1)

Disaster Recovery System Administration Guide for Cisco Unified Contact Center Express Release 8.5(1) Disaster Recovery System Administration Guide for Cisco Unified Contact Center Express Release 8.5(1) This guide provides an overview of the Disaster Recovery System, describes how to use the Disaster

More information

DocAve Upgrade Guide. From Version 4.1 to 4.5

DocAve Upgrade Guide. From Version 4.1 to 4.5 DocAve Upgrade Guide From Version 4.1 to 4.5 About This Guide This guide is intended for those who wish to update their current version of DocAve 4.1 to the latest DocAve 4.5. It is divided into two sections:

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

NGASI Shared-Runtime Manager Administration and User Guide. 1999-2010 WebAppShowcase DBA NGASI

NGASI Shared-Runtime Manager Administration and User Guide. 1999-2010 WebAppShowcase DBA NGASI NGASI Shared-Runtime Manager Administration and User Guide 2 NGASI Shared-Runtime Manager Table of Contents Part I Introduction 4 0 1 Overview... 4 2 Requirements... 4 Part II Administrator 6 1 Login...

More information

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com info@1and1.com August 2015 Copyright 2015 1&1

More information

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

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

More information

ARIS Server Installation and Administration Guide ARIS. Version 9.6 - Service Release 1

ARIS Server Installation and Administration Guide ARIS. Version 9.6 - Service Release 1 ARIS Server Installation and Administration Guide ARIS Version 9.6 - Service Release 1 June 2014 This document applies to ARIS Version 9.6 SR1 and to all subsequent releases. Specifications contained herein

More information

Installing and Configuring vcloud Connector

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

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

PMOD Installation on Linux Systems

PMOD Installation on Linux Systems User's Guide PMOD Installation on Linux Systems Version 3.7 PMOD Technologies Linux Installation The installation for all types of PMOD systems starts with the software extraction from the installation

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

Lotus Foundations Start Getting Started

Lotus Foundations Start Getting Started Lotus Foundations Start Getting Started Guide Contents 1 Introduction... page 2 2 Product overview... page 2 3 System Requirements... page 2 4 Summary of Installation... page 3 5 Lotus Foundations operating

More information

Upgrading to Avaya Aura Experience Portal 7.0.1

Upgrading to Avaya Aura Experience Portal 7.0.1 Upgrading to Avaya Aura Experience Portal 7.0.1 Release 7.0.1 April 2015 2014 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in this document

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Sophos Firewall Software Appliance Document Date: November 2015 November 2015 Page 1 of 14 Contents Preface...3 Minimum Hardware Requirement...3 Recommended Hardware Requirement...3

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

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients

Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients EXECUTIVE SUMMARY This document describes how an administrator can configure a login script to deploy Kaspersky Lab Network

More information

Content Management System

Content Management System Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires

More information

Rally Installation Guide

Rally Installation Guide Rally Installation Guide Rally On-Premises release 2015.1 rallysupport@rallydev.com www.rallydev.com Version 2015.1 Table of Contents Overview... 3 Server requirements... 3 Browser requirements... 3 Access

More information

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20 Introweb Remote Backup Client for Mac OS X User Manual Version 3.20 1. Contents 1. Contents...2 2. Product Information...4 3. Benefits...4 4. Features...5 5. System Requirements...6 6. Setup...7 6.1. Setup

More information

EMC Data Protection Search

EMC Data Protection Search EMC Data Protection Search Version 1.0 Security Configuration Guide 302-001-611 REV 01 Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published April 20, 2015 EMC believes

More information

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3 JAMF Software Server Installation and Configuration Guide for Windows Version 9.3 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

Novell Sentinel Log Manager 1.2 Release Notes. 1 What s New. 1.1 Enhancements to Licenses. Novell. February 2011

Novell Sentinel Log Manager 1.2 Release Notes. 1 What s New. 1.1 Enhancements to Licenses. Novell. February 2011 Novell Sentinel Log Manager 1.2 Release Notes February 2011 Novell Novell Sentinel Log Manager collects data from a wide variety of devices and applications, including intrusion detection systems, firewalls,

More information

Installing, Uninstalling, and Upgrading Service Monitor

Installing, Uninstalling, and Upgrading Service Monitor CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page

More information

Verax Service Desk Installation Guide for UNIX and Windows

Verax Service Desk Installation Guide for UNIX and Windows Verax Service Desk Installation Guide for UNIX and Windows March 2015 Version 1.8.7 and higher Verax Service Desk Installation Guide 2 Contact Information: E-mail: sales@veraxsystems.com Internet: http://www.veraxsystems.com/

More information

VMware vcenter Operations Standard Installation and Administration Guide

VMware vcenter Operations Standard Installation and Administration Guide VMware vcenter Operations Standard Installation and Administration Guide vcenter Operations Standard 1.0 This document supports the version of each product listed and supports all subsequent versions until

More information

Wolfr am Lightweight Grid M TM anager USER GUIDE

Wolfr am Lightweight Grid M TM anager USER GUIDE Wolfram Lightweight Grid TM Manager USER GUIDE For use with Wolfram Mathematica 7.0 and later. For the latest updates and corrections to this manual: visit reference.wolfram.com For information on additional

More information

BaseManager & BACnet Manager VM Server Configuration Guide

BaseManager & BACnet Manager VM Server Configuration Guide BaseManager & BACnet Manager VM Server Configuration Guide For Self-Hosted BaseManager & BACnet Manager Servers Deployed as Virtual Machines August 27, 2015 Customer Service 1-866-294-5847 i Baseline Inc.

More information

WhatsUp Gold v16.1 Installation and Configuration Guide

WhatsUp Gold v16.1 Installation and Configuration Guide WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware

RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware Contact Information Go to the RSA corporate website for regional Customer Support telephone

More information

Customer Control Panel Manual

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

More information

Installing and Configuring vcenter Support Assistant

Installing and Configuring vcenter Support Assistant Installing and Configuring vcenter Support Assistant vcenter Support Assistant 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro Online Backup by Mozy Restore Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 How do I restore my data? There are five ways of restoring your data: 1) Performing

More information

How to connect to the University of Exeter VPN service

How to connect to the University of Exeter VPN service How to connect to the University of Exeter VPN service *****Important Part of the process of using the VPN service involves the automatic download and installation of Juniper Network Connect software,

More information

VMware vcenter Log Insight Getting Started Guide

VMware vcenter Log Insight Getting Started Guide VMware vcenter Log Insight Getting Started Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

WES 9.2 DRIVE CONFIGURATION WORKSHEET WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may

More information

VMware Identity Manager Connector Installation and Configuration

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

More information

Setup Cisco Call Manager on VMware

Setup Cisco Call Manager on VMware created by: Rainer Bemsel Version 1.0 Dated: July/09/2011 The purpose of this document is to provide the necessary steps to setup a Cisco Call Manager to run on VMware. I ve been researching for a while

More information

DSView 4 Management Software Transition Technical Bulletin

DSView 4 Management Software Transition Technical Bulletin DSView 4 Management Software Transition Technical Bulletin DSView, Avocent and the Avocent logo are trademarks or registered trademarks of Avocent Corporation or its affiliates in the U.S. and other countries.

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

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

vsphere Upgrade Update 1 ESXi 6.0 vcenter Server 6.0 EN-001804-02

vsphere Upgrade Update 1 ESXi 6.0 vcenter Server 6.0 EN-001804-02 Update 1 ESXi 6.0 vcenter Server 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent

More information

Extreme Control Center, NAC, and Purview Virtual Appliance Installation Guide

Extreme Control Center, NAC, and Purview Virtual Appliance Installation Guide Extreme Control Center, NAC, and Purview Virtual Appliance Installation Guide 9034968 Published April 2016 Copyright 2016 All rights reserved. Legal Notice Extreme Networks, Inc. reserves the right to

More information

vrealize Infrastructure Navigator Installation and Configuration Guide

vrealize Infrastructure Navigator Installation and Configuration Guide vrealize Infrastructure Navigator Installation and Configuration Guide vrealize Infrastructure Navigator 5.8.4 This document supports the version of each product listed and supports all subsequent versions

More information

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Version 1.1 September 2014 Revision History Date Version Description Author 09/28/2014 1.0 Updates associated

More information

Configuring MailArchiva with Insight Server

Configuring MailArchiva with Insight Server Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any

More information