CONFIGURING SQL SERVER FOR METRIX

Size: px
Start display at page:

Download "CONFIGURING SQL SERVER FOR METRIX"

Transcription

1 CONFIGURING SQL SERVER FOR METRIX Rules Based Productivity Copyright 2012 Outback Software Pty. Metrix is a trademark Outback Software Pty Limited and may be registered in certain jurisdictions.

2 2 Metrix SQL Server Guide Copyright and Contact Information Metrix SQL Server Guide (version ) Documentation: Developers: Lisa Chambers, Michael R. Saia Copyright 2013 Electronics For Imaging, Inc. All rights reserved. Company, brand, or product names are for identification purposes only and may be registered trademarks of their respective holders. Metrix software: Copyright Outback Software Pty Limited. All rights reserved. Portions Copyright Romain Guy. All rights reserved. Includes JavaMail v 1.4.1, source can be found at: Portions Copyright LWJGL Project. Portions Copyright Sun Microsystems, Inc. All rights reserved. Portions Copyright The Legion Of The Bouncy Castle Portions Copyright Chet Haase, Tim Halloran. All rights reserved. Portions Copyright , The HSQL Development Group. All rights reserved. Portions Copyright by the Hypersonic SQL Group. All rights reserved. Contact us on the EFI website at: w3.efi.com/about-efi/contact-us or us at: metrixsupport@metrixsoftware.com or Call us at: Technical Support:

3 Metrix SQL Server Guide 3 Contents Copyright and Contact Information Preface Installing and Configuring MS-SQL Server Configuring Windows 7 Firewall Settings Configuring Windows XP Pro Firewall Settings Creating an Empty Metrix Database on the SQL Server WITHOUT Data Migration Connecting Metrix to SQL Server WITHOUT Data Migration Connecting Metrix to SQL Server and Migrating Data from a Windows computer Connecting Metrix to SQL Server and Migrating Data from a Mac computer Database Backups

4 4 Metrix SQL Server Guide Preface This Guide is provided in order to share the knowledge gained through Testing and Quality Assurance in migrating Metrix data and connecting to Microsoft SQL Server. However, EFI does not support the SQL Server itself. Microsoft SQL Server is a very complex product, and requires the services of a knowledgeable Database Administrator to manage and maintain it. To illustrate this point, here is a small portion of the Certification Test for Microsoft SQL Server 2008: Metrix only supports a connection to an English installation of SQL Server 2005 or SQL Server 2008, either the Full or Express Editions of either version. EFI recommends using an English installation of SQL Server. Other language installations of SQL Server may work, but may just as well have problems.

5 Metrix SQL Server Guide 5 Installing and Configuring MS-SQL Server 2008 See the Microsoft website at for SQL Server System Requirements. 1 The general Installation options you select are dependent upon how your company intends to use SQL Server. The critical installation option that enables SQL Server 2008 to connect with Metrix is the Database Engine Configuration. You must choose Mixed Mode Authentication to enable SQL Server to communicate with Metrix. Enter a password for the SQL Server System Administrator (sa) Account and confirm it. Write down the password, as you will need to enter it later when you edit the metrix.properties file. Click on to continue.

6 6 Metrix SQL Server Guide 2 Next is the Error Reporting dialog. Choose the desired setting then click on the button to continue.

7 Metrix SQL Server Guide 7 3 The Installer should now run until the installation is complete and you see the Complete dialog below. If the Installer stops before this screen, just click on the button to continue until the installation is finished. Now click on to exit the SQL Server 2008 Installer.

8 8 Metrix SQL Server Guide 4 Click on your Start button and go to All Programs. Click on the Microsoft SQL Server 2008 R2 folder, then the Configuration Tools folder, then the SQL Server Configuration Manager.

9 Metrix SQL Server Guide 9 5 In the Configuration Manager select SQL Server Network Configuration, and then Protocols. 6 Right click on TCP/IP, and then left click on Enable. You will be warned that the changes you are making will be saved, but will not take effect until the service is restarted. Click on to close the warning box.

10 10 Metrix SQL Server Guide 7 Right click on TCP/IP, and then left click on Properties.

11 Metrix SQL Server Guide 11 8 Click on the IP Addresses tab and scroll to the bottom of the window. Under IPAII, type 1433 in the field to the right of the TCP Port option. 9 Now click on Apply, and you will be warned that the changes you are making will be saved, but will not take effect until the service is restarted. Click on to close the warning box, then click on to close the TC/IP Properties windows. 10 Now exit the SQL Server Configuration Manager.

12 12 Metrix SQL Server Guide Configuring Windows 7 Firewall Settings Instructions for setting Windows XP Pro firewall setting follow these instructions. Other firewall software will require similar settings. If you need help with the firewall settings in other versions of Windows, please contact Microsoft. Metrix communicates with SQL Server via port If this port is being blocked by a firewall on the SQL Server, then Metrix will fail and report that it can t find the SQL Server. Follow these steps to change the settings in the built-in firewall of Windows 7. 1 Go to Start > Control Panel > Windows Firewall and open the Windows Firewall dialog. 2 In the left-hand column click on Advanced settings.

13 Metrix SQL Server Guide 13 3 In the left-hand column click on Inbound Rules. 4 In the right-hand column click on New Rule. This will begin the New Inbound Rule Wizard.

14 14 Metrix SQL Server Guide 5 In the Rule Type window select the Port option, and then click on.

15 Metrix SQL Server Guide 15 6 In the Protocol and Ports window select TCP and Special Local Ports. 7 Type 1433 in the Special Local Ports field, and then click on.

16 16 Metrix SQL Server Guide 8 In the Action window select Allow the Connection, and then click on.

17 Metrix SQL Server Guide 17 9 In the Profile window leave the options selected, then click on.

18 18 Metrix SQL Server Guide 10 In the Name window type a name for the new port, then click on. 11 Close the Windows Firewall dialog.

19 Metrix SQL Server Guide 19 Configuring Windows XP Pro Firewall Settings Metrix communicates with SQL Server via port If this port is being blocked by a firewall on the SQL Server, then Metrix will fail and report that it can t find the SQL Server. Follow these steps to change the settings in the built-in firewall of Windows XP. Other firewall software will require similar settings. 1 Go to Settings > Control Panel and open the Windows Firewall. If the firewall is set to Off, then the following steps will not be necessary as the firewall is completely disabled. If the Firewall is set to On, make sure the checkbox for Don t allow exceptions is disabled (in other words, you need to allow exceptions).

20 20 Metrix SQL Server Guide 2 Display the Exceptions tab. Click the Add Port button and enter a Name for the exception, and enter 1433 as the Port Number. Click to accept the new exception, and click again to leave the firewall settings.

21 Metrix SQL Server Guide 21 Creating an Empty Metrix Database on the SQL Server WITHOUT Data Migration Follow these steps ONLY if you are installing Metrix for the first time and do not have any data to migrate. The procedure below will create an empty Metrix database in SQL Server 2005 or SQL Server Launch the Run command from the Windows Start menu. 2 Type sqlcmd -E and press ENTER. Make sure to enter a space before the -E and to capitalize the E. The CMD program will drop down a line and insert 1>. 3 Type create database metrix and press ENTER. The CMD program will drop down another line and insert 2>. 4 Type go and press ENTER. When the CMD program drops down a line again and brings up another 1> type quit and press ENTER. 5 Close the CMD window. You have now created an empty Metrix database on the SQL Server. Next you will configure Metrix to connect with the SQL Server.

22 22 Metrix SQL Server Guide Connecting Metrix to SQL Server WITHOUT Data Migration 1 Supplied with this document is a file called Connect_to_Empty_SQLServer_Database.txt. Open it with a text editor such as Notepad or Wordpad and copy the 4 lines in the file. They are: jdbc.driver=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user=sa jdbc.password=your PASSWORD 2 In order to connect Metrix to the SQL Server database, you need to copy the 4 lines into the metrix.properties file, found in the Metrix folder at the root level. Using a text editor such as Notepad or Wordpad, open the metrix.properties file. Here is an example of an unaltered metrix.properties file:

23 Metrix SQL Server Guide 23 3 Paste the 4 lines at the bottom of the file. Replace YOUR IP in line 2 with the IP address of your SQL Server computer, and replace YOUR PASSWORD with the password you used when installing the SQL Server. jdbc.driver=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user=sa jdbc.password=your PASSWORD 4 Now add a # symbol to the first 4 lines that begin with jdbc this will comment out the lines referring to the old Metrix database and effectively disable them. # jdbc.driver=org.hsqldb.jdbcdriver # jdbc.url=jdbc:hsqldb:hsql://your IP:9939 # jdbc.user=sa # jdbc.password= 5 Your metrix.properties file should now look like this, except that it will contain your IP address and your password:

24 24 Metrix SQL Server Guide 6 Save the metrix.properties file and close it. 7 Launch the License Server and a Metrix client. There is no need to ever launch the Metrix Data Server again Metrix will now always connect to the SQL Server. You can now remove the Start Metrix Database Server and Stop Metrix Database Server icons from the desktop since they will no longer be necessary. All necessary changes are now complete. The procedures for launching and quitting the Metrix License Server are unaffected and remain the same. 8 Copy the edited metrix.properties file to all the other Metrix clients.

25 Metrix SQL Server Guide 25 Connecting Metrix to SQL Server and Migrating Data from a Windows computer 1 In order to migrate the data from the Metrix database to the SQL Server database, you will need 2Gb of memory on the Metrix Data Server computer. Ensure your Metrix Data Server meets the minimum system requirements to perform the migration. 2 Quit any Metrix clients and run Stop Metrix Database Server. 3 Supplied with this document is a file called Connect_to_SQLServer_Database_and_Migrate_Metrix_Data.txt. Open it with a text editor such as Notepad or Wordpad and copy the 4 lines in the file. They are: jdbc.driver2=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url2=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user2=sa jdbc.password2=your PASSWORD 4 In order to connect Metrix to the SQL Server database and migrate your existing data, you need to copy the 4 lines into the metrix.properties file, found in the Metrix folder at the root level. Using a text editor such as Notepad or Wordpad, open the metrix.properties file. Here is an example of an unaltered metrix.properties file:

26 26 Metrix SQL Server Guide 5 Paste the 4 lines at the bottom of the file. Replace YOUR IP in line 2 with the IP address of your SQL Server computer, and replace YOUR PASSWORD with the password you used when installing the SQL Server. jdbc.driver2=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url2=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user2=sa jdbc.password2=your PASSWORD Your metrix.properties file should now look like this, except that it will contain your IP address and your password: 6 Save the metrix.properties file and close it. 7 Launch Start Metrix Database Server.

27 Metrix SQL Server Guide 27 8 Open the Metrix folder and double click on the Start_DbMigrator.bat file. It will display a long list of procedures as it performs the migration. When the process is completed, it will report SUCCESS. The data has now been migrated from the existing Metrix Data Server to the SQL Server database. 9 Stop or Shutdown the Metrix Data Server. 10 Using a text editor such as Notepad or Wordpad, open the metrix.properties file again. Add a # symbol to the first 4 lines that begin with jdbc this will comment out the lines referring to the old Metrix database and effectively disable them. # jdbc.driver=org.hsqldb.jdbcdriver # jdbc.url=jdbc:hsqldb:hsql://your IP:9939 # jdbc.user=sa # jdbc.password=

28 28 Metrix SQL Server Guide 11 Remove the 2 just before the = in the remaining 4 lines that begin with jdbc (the ones you copied and pasted into this file earlier). The metrix.properties file should now appear similar to this, except that it will contain your IP address and your password: 12 Save the metrix.properties file and close it. 13 Launch the License Server and a Metrix client to make sure you can access your project data. There is no need to ever launch the Metrix Data Server again Metrix will now always connect to the SQL Server database. You can now remove the Start Metrix Database Server and Stop Metrix Database Server icons from the desktop since they will no longer be necessary. All necessary changes are now complete. The procedures for launching and quitting the Metrix License Server are unaffected and remain the same. 14 Copy the edited metrix.properties file to all the other Metrix clients.

29 Metrix SQL Server Guide 29 Connecting Metrix to SQL Server and Migrating Data from a Mac computer 1 In order to migrate the data from the Metrix database to the SQL Server database, you will need 2Gb of memory on the Metrix Data Server computer. Ensure your Metrix Data Server meets the minimum system requirements to perform the migration. 2 Quit all Metrix clients and run Stop Metrix Database Server (Mac) or Shutdown Metrix Database Server (Windows). 3 Supplied with this document is a file called Connect_to_SQLServer_Database_and_Migrate_Metrix_Data.txt. Open it with a text editor such as TextEdit and copy the 4 lines in the file. They are: jdbc.driver2=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url2=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user2=sa jdbc.password2=your PASSWORD 4 In order to connect Metrix to the SQL Server database and migrate your existing data, you need to copy the 4 lines into the metrix.properties file, found in the Metrix folder in your Applications folder. Using a text editor such as TextEdit, open the metrix.properties file. Here is an example of an unaltered metrix.properties file:

30 30 Metrix SQL Server Guide 5 Paste the 4 lines at the bottom of the file. Replace YOUR IP in line 2 with the IP address of your SQL Server computer, and replace YOUR PASSWORD with the password you used when installing the SQL Server. jdbc.driver2=com.microsoft.sqlserver.jdbc.sqlserverdriver jdbc.url2=jdbc:sqlserver://your IP:1433;DatabaseName=metrix;responseBuffering=adaptive; jdbc.user2=sa jdbc.password2=your PASSWORD Your metrix.properties file should now look like this, except that it will contain your IP address and your password: 6 Save the metrix.properties file and close it. 7 Start the Metrix Data Server. 8 Launch the Terminal application, normally found in the Applications > Utilities folder.

31 Metrix SQL Server Guide 31 9 To change the directory to the Metrix folder, type cd followed by a space. Find the Metrix folder in the Applications folder, drag it into the Terminal window, and press ENTER. This will enter the correct path into the Terminal application. 10 Type sh DbMigrator.sh and press ENTER, which will start the migration process. Terminal will display a long list of procedures as it performs the migration. When the process is completed, it will report SUCCESS. The data has now been migrated from the existing Metrix Data Server to the MS-SQL Database.

32 32 Metrix SQL Server Guide 11 Run Stop Metrix Database Server (Mac) or Shutdown Metrix Database Server (Windows). 12 Using a text editor such as TextEdit, open the metrix.properties file again. Add a # symbol to the first 4 lines that begin with jdbc this will comment out the lines referring to the old Metrix database and effectively disable them. # jdbc.driver=org.hsqldb.jdbcdriver # jdbc.url=jdbc:hsqldb:hsql://your IP:9939 # jdbc.user=sa # jdbc.password= 13 Remove the 2 just before the = in the remaining 4 lines that begin with jdbc (the ones you copied and pasted into this file earlier). The metrix.properties file should now appear similar to this, except that it will contain your IP address and your password:: 14 Save the metrix.properties file and close it. 15 Launch the License Server and a Metrix client to make sure you can access your project data. There is no need to ever launch the Metrix Data Server again Metrix will now

33 Metrix SQL Server Guide 33 always connect to the SQL Server database. You can now remove the Start Metrix Database Server and Stop Metrix Database Server icons from the desktop since they will no longer be necessary. All necessary changes are now complete. The procedures for launching and quitting the Metrix License Server are unaffected and remain the same. 16 Copy the edited metrix.properties file to all the other Metrix clients.

34 34 Metrix SQL Server Guide Database Backups Backup of your Metrix SQL database is of course crucial. Meet with your SQL Server Administrator as soon as possible to determine your backup strategy and procedure. Should you ever need to submit your database to EFI Support for examination, you must supply a FULL backup:

Immotec Systems, Inc. SQL Server 2005 Installation Document

Immotec Systems, Inc. SQL Server 2005 Installation Document SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

Installation / Migration Guide for Windows 2000/2003 Servers

Installation / Migration Guide for Windows 2000/2003 Servers PSQL v9 SP1 (9.1) & Installation / Migration Guide for Windows 2000/2003 Servers Ebix, Inc. Corporate Headquarters Concourse Parkway, Suite 3200 Atlanta, GA 30328 USA Phone: 678-281-2020 Fax: 678-281-2019

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide. Rev. 03 (November, 2001)

LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide. Rev. 03 (November, 2001) LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide Rev. 03 (November, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may be reproduced in any form or by any

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

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

a) Network connection problems (check these for existing installations)

a) Network connection problems (check these for existing installations) How do I resolve issues with a Client not connecting to the Best Practice server instance? This FAQ is intended to answer common questions about resolving issues with a Best Practice client not connecting

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

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS

More information

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11 Contents I EventSentry Overview Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2 1 Downloads... 2 2 Installation... 3 3 Configuration... 7 Part III Setting up IIS 9 1 Installation... 9 Part

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional.

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. 33-40006-001 REV: B PCSC 3541 Challenger Street Torrance, CA 90503 Phone: (310) 303-3600

More information

Creating client-server setup with multiple clients

Creating client-server setup with multiple clients Creating client-server setup with multiple clients Coffalyser.Net uses a SQL client server database model to store all project/experiment- related data. The client-server model has one main application

More information

Magaya Software Installation Guide

Magaya Software Installation Guide Magaya Software Installation Guide MAGAYA SOFTWARE INSTALLATION GUIDE INTRODUCTION Introduction This installation guide explains the system requirements for installing any Magaya software, the steps to

More information

1. CONFIGURING REMOTE ACCESS TO SQL SERVER EXPRESS

1. CONFIGURING REMOTE ACCESS TO SQL SERVER EXPRESS 1. CONFIGURING REMOTE ACCESS TO SQL SERVER EXPRESS From the Start menu, point to All Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Configuration

More information

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY Outline The Proficy HMI/SCADA CIMPLICITY product has the ability to log point data to a Microsoft SQL Database. This data can

More information

Dokmee Enterprise Installation

Dokmee Enterprise Installation Dokmee Enterprise Installation 1 P a g e 1. Install Microsoft SQL on a server or local computer that everyone can access. Make sure that you have.net Framework 4.0 installed. If you go to the link below,

More information

PIGCHAMP MOBILE. PigCHAMP Knowledge Software. Installation Guide for Mobile Units

PIGCHAMP MOBILE. PigCHAMP Knowledge Software. Installation Guide for Mobile Units PIGCHAMP MOBILE PigCHAMP Knowledge Software Installation Guide for Mobile Units Table of Contents: Important Note:... 4 Chapter 1: PC Setup... 5 A. Install PigCHAMP Mobile Manager on Windows XP...5 B.

More information

TecLocal 4.0 MultiUser Database

TecLocal 4.0 MultiUser Database Tec Local 4.0 - Installation Manual: Byer Mode & Multi-User (Server) TecLocal 4.0 MultiUser Database Installation Manual: Buyer Mode & Multi-User (Part I - Server) Version: 1.0 Author: TecCom Solution

More information

ilaw Server Migration Guide

ilaw Server Migration Guide ilaw Server Migration Guide Revised April 2014 Contents Preface Overview 1. Backing up your Existing database Method 1. Backing up an ilaw MSDE database only Method 2. Using BURT The Backup/Restore Tool

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

Network Printing In Windows 95/98/ME

Network Printing In Windows 95/98/ME Network Printing In Windows 95/98/ME If you are using Windows 2000/ XP: To install a printer on your network using D-Link Print Server or DI-series router with built-in print server you do not need to

More information

DP-313 Wireless Print Server

DP-313 Wireless Print Server DP-313 Wireless Print Server Quick Installation Guide TCP/IP Printing (LPR for Windows 95/98/Me/2000) Rev. 03 (August, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may

More information

GUARD1 PLUS SE Administrator's Manual

GUARD1 PLUS SE Administrator's Manual GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 info@guard1.com www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS

More information

Configuring the WT-4 for ftp (Ad-hoc Mode)

Configuring the WT-4 for ftp (Ad-hoc Mode) En Configuring the WT-4 for ftp (Ad-hoc Mode) Windows XP Introduction This document provides basic instructions on configuring the WT-4 wireless transmitter and a Windows XP Professional SP2 ftp server

More information

This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP:

This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP: Wazza s QuickStart: Setting up a Web Server (IIS) Windows XP This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP: Configuring

More information

Sophos Anti-Virus for NetApp Storage Systems startup guide

Sophos Anti-Virus for NetApp Storage Systems startup guide Sophos Anti-Virus for NetApp Storage Systems startup guide Runs on Windows 2000 and later Product version: 1 Document date: April 2012 Contents 1 About this guide...3 2 About Sophos Anti-Virus for NetApp

More information

Configuring Your Firewall for Client Access in Professional Edition

Configuring Your Firewall for Client Access in Professional Edition Configuring Your Firewall for Client Access in Professional Edition In a network environment, in order for the clients to communicate with the server, you will need to configure your firewall to allow

More information

RemoteTM LAN Server User Guide

RemoteTM LAN Server User Guide RemoteTM LAN Server User Guide Copyright 2008-2013 Maxprograms Contents 3 Contents Introduction...5 Supported Platforms...5 Requirements...5 LAN Server...7 System Tray Menu...7 Server Status...7 Server

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Ad Hoc Setup Windows XP 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited. 1

More information

NovaBACKUP xsp Version 15.0 Upgrade Guide

NovaBACKUP xsp Version 15.0 Upgrade Guide NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject

More information

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

Configuration Guide. Remote Backups How-To Guide. Overview

Configuration Guide. Remote Backups How-To Guide. Overview Configuration Guide Remote Backups How-To Guide Overview Remote Backups allow you to back-up your data from 1) a ShareCenter TM to either a Remote ShareCenter or Linux Server and 2) Remote ShareCenter

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

Aradial Installation Guide

Aradial Installation Guide Aradial Technologies Ltd. Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

intertrax Suite resource MGR Web

intertrax Suite resource MGR Web intertrax Suite resource MGR Web Resource Management Installation Guide Version 4 2012 Copyright 2003-2012 by Salamander Technologies, Inc. Protected by US Patents 5,573,278; 5,596,652; 5,793,882; 6,761,312;

More information

Issue Tracking Anywhere Installation Guide

Issue Tracking Anywhere Installation Guide TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

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

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Infrastructure Setup Windows XP 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited.

More information

Point of Sale 2015 Enterprise. Installation Guide

Point of Sale 2015 Enterprise. Installation Guide Point of Sale 2015 Enterprise Installation Guide Contents About this guide 3 System Requirements - Microsoft SQL Server 2008 R2 Express 3 System Requirements - POS Enterprise 2015 (Administrator) 3 System

More information

1. Set Daylight Savings Time... 3. 2. Create Migrator Account... 3. 3. Assign Migrator Account to Administrator group... 4

1. Set Daylight Savings Time... 3. 2. Create Migrator Account... 3. 3. Assign Migrator Account to Administrator group... 4 1. Set Daylight Savings Time... 3 a. Have client log into Novell/Local Machine with Administrator Account...3 b. Access Adjust Date/Time...3 c. Make sure the time zone is set to Central Time...3 2. Create

More information

Installing the Microsoft Network Driver Interface

Installing the Microsoft Network Driver Interface Installing the Microsoft Network Driver Interface Overview This guide explains how to install the PictureTel Live200 Microsoft Network Driver Interface (NDIS) software you have downloaded from PictureTel's

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the

More information

Download/Install IDENTD

Download/Install IDENTD Download/Install IDENTD IDENTD is the small software program that must be installed on each user s computer if multiple filters are to be used in ComSifter. The program may be installed and executed locally

More information

BioWin Network Installation

BioWin Network Installation BioWin Network Installation Introduction This document outlines the procedures for installing the network version of BioWin. There are three parts to the network version installation: 1. The installation

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

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Dell Statistica 13.0. Statistica Enterprise Installation Instructions

Dell Statistica 13.0. Statistica Enterprise Installation Instructions Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

LPR for Windows 95 TCP/IP Printing User s Guide

LPR for Windows 95 TCP/IP Printing User s Guide LPR for Windows 95 TCP/IP Printing User s Guide First Edition Printed in Taiwan, R.O.C. RECYCLABLE Copyright Statement Trademarks Limited Warranty Copyright 1997 D-Link Corporation No part of this publication

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

How to Program a Commander or Scout to Connect to Pilot Software

How to Program a Commander or Scout to Connect to Pilot Software How to Program a Commander or Scout to Connect to Pilot Software Commander and Scout are monitoring and control products that can transfer physical environmental conditions and alarm sensor electrical

More information

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

EntroWatch - Software Installation Troubleshooting Guide

EntroWatch - Software Installation Troubleshooting Guide EntroWatch - Software Installation Troubleshooting Guide ENTROWATCH SOFTWARE INSTALLATION TROUBLESHOOTING GUIDE INTRODUCTION This guide is intended for users who have attempted to install the EntroWatch

More information

SiteCount v2.0 Revised: 10/30/2009

SiteCount v2.0 Revised: 10/30/2009 SiteCount v2.0 Revised: 10/30/2009 Copyright 2009, Traf-SYS, Inc. Contents Introduction... 4 Requirements... 4 General... 4 Software... 4 Hardware... 4 Fulfilling Software Requirements... 5 Installation

More information

Enterprize Setup Checklist

Enterprize Setup Checklist Enterprize Setup Checklist Corporate Server 1) Install Windows IIS and FTP 2) Install M$ MSDE Restart Windows 3) Install M$ Image Wizard 4) Install Enterprize Copy SQL databases into Microsoft SQL data

More information

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide PigCHAMP Knowledge Software Enterprise Edition Installation Guide Enterprise Edition Installation Guide MARCH 2012 EDITION PigCHAMP Knowledge Software 1531 Airport Rd Suite 101 Ames, IA 50010 Phone (515)

More information

Migrating MSDE to Microsoft SQL 2005 Express SP4

Migrating MSDE to Microsoft SQL 2005 Express SP4 How To Updated: 10/28/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 and

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc INSTRUCTION SHEET FOR MOVING YOUR DATABASE FROM ONE COMPUTER TO ANOTHER This document will outline the steps

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Enterprise Manager. Version 6.2. Installation Guide

Enterprise Manager. Version 6.2. Installation Guide Enterprise Manager Version 6.2 Installation Guide Enterprise Manager 6.2 Installation Guide Document Number 680-028-014 Revision Date Description A August 2012 Initial release to support version 6.2.1

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

AirStation VPN Setup Guide WZR-RS-G54

AirStation VPN Setup Guide WZR-RS-G54 AirStation VPN Setup Guide WZR-RS-G54 WZR-RS-G54 Introduction The WZR-RS-G54 s VPN services allows users to securely access their home or office network from anywhere in the world. All services available

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide

Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide Microsoft SQL Server 2008 R2 (64-bit) Standard Edition Installation Guide Notices 2011 XMPie Inc. All rights reserved. U.S. Patents 6948115, 7406194, 7548338, 7757169 and pending patents. JP Patent 4406364B

More information

MAPPING THE WEBDRIVE REFERENCE GUIDE

MAPPING THE WEBDRIVE REFERENCE GUIDE MAPPING THE WEBDRIVE REFERENCE GUIDE INTRODUCTION The university WebDrive is a dedicated drive to host all university web content. For help with mapping the WebDrive, please read the instructions below

More information

TN 032 CenterMind/PV4E installation on Microsoft Windows 7

TN 032 CenterMind/PV4E installation on Microsoft Windows 7 TN 032 CenterMind/PV4E installation on Microsoft Windows 7 Issue Date: 28.06.2010 Product (configuration) Affected Items: Revision Date: 10.03.2014 PV4E CenterMind Report Center Paladin Dashboard CAD Site

More information

Installation Instruction STATISTICA Enterprise Server

Installation Instruction STATISTICA Enterprise Server Installation Instruction STATISTICA Enterprise Server Notes: ❶ The installation of STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation installations on each of

More information

etoken Enterprise For: SSL SSL with etoken

etoken Enterprise For: SSL SSL with etoken etoken Enterprise For: SSL SSL with etoken System Requirements Windows 2000 Internet Explorer 5.0 and above Netscape 4.6 and above etoken R2 or Pro key Install etoken RTE Certificates from: (click on the

More information

NOTE: You may want to choose the Word Wrap option from Notepad Edit menu to make this text more readable.

NOTE: You may want to choose the Word Wrap option from Notepad Edit menu to make this text more readable. ------------------ Interactions/Gas Exchange Version 1.2, CD Version Copyright 2003 by John Wiley & Sons, Inc. All rights reserved. ------------------ NOTE: You may want to choose the Word Wrap option

More information

Troubleshooting Guide

Troubleshooting Guide Enable WMI after applying SP2 for XP Company web site: Support email: support@ Support telephone: +44 20 3287-7651 +1 646 233-1163 2 This tutorial will guide you on enabling WMI after applying Service

More information

Central Management System

Central Management System Central Management System Software Installation Guide Ver. 1.5.0.101115.001 ... ii System Introduction... 3 Client/Server Architecture...3 System Requirements... 4 System Setup...4 Multiple Monitor Configuration...5

More information

LockView 4.2 CompX Database & Network Configuration & Installation Manual

LockView 4.2 CompX Database & Network Configuration & Installation Manual LockView 4.2 CompX Database & Network Configuration & Installation Manual Table of Contents CompX Database & Network Configuration & Installation Manual Introduction... 4 Installation Requirements... 5

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

GE Healthcare Life Sciences UNICORN 5.31. Administration and Technical Manual

GE Healthcare Life Sciences UNICORN 5.31. Administration and Technical Manual GE Healthcare Life Sciences UNICORN 5.31 Administration and Technical Manual Table of Contents Table of Contents 1 Network setup... 1.1 Network terms and concepts... 1.2 Network environment... 1.3 UNICORN

More information

1. Installation Overview

1. Installation Overview Quick Install Guide 1. Installation Overview Thank you for selecting Bitdefender Business Solutions to protect your business. This document enables you to quickly get started with the installation of Bitdefender

More information

1. Installing The Monitoring Software

1. Installing The Monitoring Software SD7000 Digital Microphone Monitor Software manual Table of Contents 1. Installing The Monitor Software 1.1 Setting Up Receivers For Monitoring 1.2 Running The Application 1.3 Shutdown 2. The Detail Monitoring

More information

FUSION Installation Guide

FUSION Installation Guide FUSION Installation Guide Version 1.0 Page 1 of 74 Content 1.0 Introduction... 3 2.0 FUSION Server Software Installation... 3 3.0 FUSION Client Software Installation... 10 4.0 FUSION NIM Software Installation...

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

SonicWALL Global Management System Installation Guide Entry Edition. Version 2.1

SonicWALL Global Management System Installation Guide Entry Edition. Version 2.1 SonicWALL Global Management System Installation Guide Entry Edition Version 2.1 Copyright Information 2001 SonicWALL, Inc. All rights reserved. Under the copyright laws, this manual or the software described

More information

Spector 360 Deployment Guide. Version 7

Spector 360 Deployment Guide. Version 7 Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...

More information

LockView 4.3.1 CompX Database & Network Configuration & Installation Manual

LockView 4.3.1 CompX Database & Network Configuration & Installation Manual LockView 4.3.1 CompX Database & Network Configuration & Installation Manual Table of Contents CompX Database & Network Configuration & Installation Manual Introduction... 4 Installation Requirements...

More information

Guest PC. for Mac OS X. User Guide. Version 1.6. Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved.

Guest PC. for Mac OS X. User Guide. Version 1.6. Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved. Guest PC for Mac OS X Version 1.6 User Guide Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved. Table of Contents About Guest PC... 1 About your Virtual Computer... 1 Creating a Virtual

More information

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Maximizer is a contact manager designed to help individuals, home offices, and small businesses succeed by helping them maximize their time, create satisfied customers, and increase

More information

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11.

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11. Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures Goliath Performance Monitor Installation Guide v11.5 (v11.5) Document Date: March 2015 www.goliathtechnologies.com

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

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

More information

How to setup a VPN on Windows XP in Safari.

How to setup a VPN on Windows XP in Safari. How to setup a VPN on Windows XP in Safari. If you want to configure a VPN connection from a Windows XP client computer you only need what comes with the Operating System itself, it's all built right in.

More information

Connecticut Hazardous Waste Manifests Database

Connecticut Hazardous Waste Manifests Database Connecticut Hazardous Waste Manifests Database Due to limitations inherent to Microsoft Access, the Department has migrated this database to Microsoft SQL Server. The user interface will remain the same.

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

Preparing the Windows version of the software for use

Preparing the Windows version of the software for use Preparing the Windows version of the software for use System requirements Component Processor RAM Hard disk Drives Interfaces/network TCP/IP internet protocol Screen Installing the Conference Manager software

More information

Installation Guide for Windows May 2016

Installation Guide for Windows May 2016 Installation Guide for Windows May 2016 1 Welcome to KITE Client Software for Windows Note: The KITE Client software is supported for both 32-bit and 64-bit Windows computers. The Kansas Interactive Testing

More information