RAPID SCADA Administrator s Guide Part 3. Software Configuration

Size: px
Start display at page:

Download "RAPID SCADA Administrator s Guide Part 3. Software Configuration"

Transcription

1 RAPID SCADA Administrator s Guide Part 3. Software Configuration Contents General Configuration Sequence... 2 Tune up Configuration Database... 2 Using Formulas... 6 User Authentication Configuration... 7 Communication with Devices Configuration... 8 Creating Views Rapid SCADA 4.5

2 General Configuration Sequence Starting to work with Rapid SCADA, it is recommended to follow the general configuration sequence described below. Having obtained some working experience, better understanding the dependencies between the applications, the sequence can be varied for improving efficiency. 1. Create objects, communication lines and devices in the configuration database using SCADA- Administrator application. 2. Pass the configuration database to SCADA-Server by pressing button located in SCADA- Administrator toolbar. Restart SCADA-Server service. 3. Import communication lines and devices from the configuration database into SCADA- Communicator. The import feature is accessible in a communication lines popup menu by pressing button. 4. Configure communication with devices in SCADA-Communicator. 5. Accomplish tuning up the configuration database using SCADA-Administrator. 6. Create views (tables or schemes) using SCADA-Table Editor or SCADA-Scheme Editor applications. 7. Register the created views by SCADA-Web Configurator utility in order that they appear in SCADA-Web application. Tune up Configuration Database The configuration database is a structured description of the entire automated system. The application included in Rapid SCADA use the information from the configuration database in conjunction with their settings. The configuration database is edited using SCADA-Administrator. The edited instance of the configuration database is in SDF file format of Microsoft SQL Server Compact Edition. After completing the necessary changes the database is converted by an administrator in a specially designed DAT format which is used by the other applications. This approach allows modifying the configuration database while the software is running. The configuration database consists of tables, which in turn are composed of columns and rows. Each table belongs to one of the following groups: 1. System. This group contains the tables which define a configuration of a particular automated system. 2. Dictionaries. This group contains the auxiliary tables. In most cases changing of these tables is not needed and can cause incorrect operation of the software. The following is a list of the configuration database tables with descriptions. Table Name System Group Objects Communication lines Devices Input channels Output channels Roles Users Description Contains logical objects which input data and commands are related to Describes communication lines which are used to exchange data with devices Contains real or virtual devices Defines data received from the devices and data calculated on their base Specifies the commands executed by the system Contains roles. Each role defines a set of functions available to users Contains a list of users of the system and their roles 2

3 Table Name Interface Rights Dictionaries Group Channel types Command types Event types Device types Quantities Units Command values Number formats Formulas Description Contains the names of the interface objects which requires access restrictions Defines relationships between the roles and the interface objects Dictionary of input channel types Dictionary of command types used by output channels Dictionary of system event types which correspond to the input channel statuses Dictionary of device types that can be connected to the system Dictionary of measures quantities Dictionary of units of input channel values and enumerable values of input channels Dictionary of enumerable command values which are transmitted by output channels Dictionary of formats which are used to display input channel values Dictionary of formulas used in calculation of input channel data and command values of output channels The following list is a sequence of working with the configuration database in SCADA- Administrator application: 1. Create the backup copy of the existing database by pressing button. 2. If the sample data are not needed, clear the tables of System group. According to relations between the tables clearing begins from Rights table and continues till Objects table. In Roles table do not delete rows with identifiers from 0 to Enter data in the tables of System group. Use the opposite order starting from Objects table and finishing by Rights table. There are Create channels and Clone channels features designed for fast automatic filling Input channels and Output channels tables. 4. Pass the configuration database to SCADA-Server using button. It is possible to significantly speed up a process of system configuration by using the past works. Export and Import features allow exchanging data between different databases. These features are accessible in Database menu. Data tables are exported to DAT format files then the information can be imported from these files into the same or another configuration database. A range of exported and imported data can be restricted by specifying the start and the final identifiers (see Figure 1). In addition, if a new start identifier is specified, identifiers of the imported data are shifted. Figure 1. Import into the configuration database 3

4 Create channels feature (see Figure 2) which is accessible in Service menu allows automatic filling Input channels and Output channels tables using information about existing objects and devices. Rules for creating channels are defined in device libraries (drivers) of SCADA-Communicator. The device libraries are located in C:\SCADA\ScadaComm\KP\ by default. If a DLL file, specified in Device types table, does not exist, the creation of channels corresponding to that device type is impossible. Channels are created according to the settings SCADA-communicator. To create input and output channels tick the appropriate devices, choose or keep undefined the object for the each device, click Calculate channel numbers button, check the calculated numbers, then click Create button. Figure 2. Create channels feature Clone channels feature (see Figure 3) is also designed to make the process of creating input and output channels faster. The objects and the devices of the cloned channels can be replaced by the specified values during cloning. 4

5 Figure 3. Clone channels feature Editing of input channels may be done in the table directly or by using the form that is shown in Figure 4. Right click the input channel table to show popup menu and click the menu item to open this form. Figure 4. Editing input channel properties Compact database feature decreases the size of the configuration database file. Use this feature when the database editing has been completed. To execute the feature go to Database Compact main menu item. 5

6 Using Formulas Formulas are used for calculating values and statuses of input channels and calculating values of commands. Formulas processing is performed by SCADA-Server. Formulas are contained by Input channels and Output channels tables of the configuration database. To enable the formula tick the appropriate checkbox in Formula used column. Formulas table stores additional functions and data structures which can be used in formulas for input and output channels. The general rules for the use of formulas: 1. Formulas use the expressions syntax of C# language. Many of Microsoft.NET classes are accessible, for example, Math and DateTime classes. 2. New constants, fields, properties and methods can be added and used in formulas. 3. If at least one formula contains an error, SCADA-Server operation is impossible. Information about errors in formulas is written in SCADA-Server application log. The rules for the use of formulas for input channels: 1. For channels of types Discrete and Real a calculation starts when the channels data are received by SCADA-Server. Use these channel types if formula does not refer to data of other channels. 2. For calculated channels and switching counters calculations are performed permanent and ordered by channel numbers. A formula of a calculated channel usually refers to data of other channels. 3. For minute and hourly channels a calculation starts periodically once per minute or once per hour. Use these channel types to create accumulated values, for example, energy consumption, operating time. 4. For channels of types Discrete and Real the statuses of the channels after calculating are equal to the statuses of these channels received by SCADA-Server if status calculation does not specified explicitly. 5. For channels of the other types the statuses do not change after calculating if status calculation does not specified explicitly. 6. An input channel formula that does not contain ; (semicolon) symbol calculates the input channel value only. 7. If an input channel formula contains ;, the formula calculates the input channel value and status. The first part before semicolon is a formula for value calculation and the second part after semicolon calculates status. The rules for the use of formulas for output channels: 1. Formulas are processed for output channels having Standard and Binary command types. 2. A formula of an output channel defines command value calculation for a standard command and defines command data calculation for a binary command. The variables accessible in formulas: Variable Value Type Description CnlVal, Cnl double The input channel value transmitted to the server before the calculation CnlStat int The input channel status transmitted to the server before 6

7 Variable Value Type Description the calculation CmdVal, Cmd double The command value transmitted to the server before the calculation CmdData byte[] The command data transmitted to the server before the calculation CnlNum int The channel number for which the formula is calculated E double The natural logarithmic base, specified by the constant, e PI double The ratio of the circumference of a circle to its diameter, specified by the constant, π The functions accessible in formulas: Fucntion Value Type Description Val() double Gets the current value of the formula channel Val(n) double Gets the current value of the channel n Stat() int Gets the current status of the formula channel Stat(n) int Gets the current status of the channel n Abs(x) double Calculates the absolute value of a number Sin(x) double Calculates the sine of the specified angle Cos(x) double Calculates the cosine of the specified angle Tan(x) double Calculates the tangent of the specified angle Exp(x) double Calculates e raised to the specified power Ln(x), Log(x) double Calculates the natural (base e) logarithm of a specified number Sqr(x) double Calculates the square of a specified number Sqrt(x) double Calculates the square root of a specified number User Authentication Configuration Rapid SCADA supports three methods of user authentication: 1. Based on usernames and passwords stored in the configuration database. 2. Based on Active Directory. 3. Combined method. To perform authentication a client application, for example, SCADA-Communicator or SCADA-Web, sends to SCADA-Server a request to validate user name and password. SCADA-Server checks user credentials and returns the user role to the client application. The standard user roles and their capabilities are listed in the following table. ID Role Name Description 0 Disabled Access to the system is denied 1 Administrator Full access 2 Dispatcher Viewing information, sending commands 3 Guest Viewing information 4 Application Interacting with the server To restrict user access to interface objects (tables, schemes, etc.) create user roles in Roles table in the configuration database. Then fill Interface and Rights tables. If Rapid SCADA operates in a network that managed by Active Directory, it is recommended to use the 2 nd and the 3 rd authentication methods because of security reasons. The details of these methods are described below. 7

8 To allow SCADA-Server interact with Active Directory specify domain controller path and tick the nearby checkbox on Common Parameters page of the application. The 2 nd authentication method is used if the standard roles are enough to manage user rights. The benefits of this method are that rights management performed using usual Active Directory tools without editing the configuration database and restarting SCADA- Server. To use the 2 nd method it is required to create the security groups in Active Directory. The groups correspond to the user roles: ScadaDisabled Disabled role; ScadaAdmin Administrator role; ScadaDispatcher Dispatcher role; ScadaGuest Guest role; ScadaApp Application role. If a user is a member of the listed groups or he is a member of a group that is a member of the listed groups, the user is granted the appropriate rights in Rapid SCADA. The 3 rd method combines the capabilities of the 1 st and the 2 nd methods. User credentials check performed by using Active Directory and a user role is defined by Users table of the configuration database. In this case, user names and user roles are defined in Users table, but user passwords are not entered in the table. The simultaneous use of all the above authentication methods is allowed. Communication with Devices Configuration Interaction with real or virtual devices is performed by SCADA-Communicator which acting as a master or a slave, requests data and sends commands to devices. All the devices are bound to communication lines. Communication lines are independent on each other and are used simultaneously. Figure 5 shows an example of communication line parameters. A communication channel determines physical interface or network protocol which is used for data exchange with devices. The following communication channels are supported: Serial port, TCP client, TCP server and UDP. In some cases, if the interaction with devices is implemented in a device library, communication channel should be undefined (e.g., OPC implementation). If sending commands to devices is required, it is necessary to tick Commands enabled. By default, this checkbox is disabled due to safety reasons. Communication order and request parameters are set on Request Sequence page (see Figure 6). 8

9 Figure 5. Communication line parameters Figure 6. Request sequence 9

10 If Active checkbox on Communication Line Parameters page is unset, the appropriate communication line is disabled, and no requests are performed. If Active checkbox in Selected device group box is unset, communication with the appropriate device is disabled. Bound to server checkbox on Communication Line Parameters page allows to switch on or switch off sending the communication line data to SCADA-Server. Bound checkbox in Selected device group box has the similar purpose, but only for the device. If Use SCADA- Server checkbox on Common Parameters page is unset, any interaction between SCADA- Communicator and SCADA-Server is switched off. These options are useful for testing new devices connecting to the system. If Time and Period request parameters of a device are equal zero, the device is requested cyclically. If Time greater than zero and Period is zero, the device is requested once a day in the specified time. If Period greater than zero, the device is requested periodically starting at the specified time. Timeout field defines how long to wait an answer from the device after a request. Delay field defines a delay after each request to the device. Command line may contain additional parameters described in documentation of a device library. To reset request parameters of the selected device to the default values click button. To open the device properties form, if it is supported by a device library of the selected device, click button or use popup menu of the tree. To set global properties for a device type choose Device Libraries page, select the device library and click Properties button if the button is enabled. Import feature significantly speeds up configuring SCADA-Communicator (see Figure 7). This feature is allowable if Use SCADA-Server checkbox on Common Parameters page is set and SCADA-Server service is running. To start import click button. Such button is located on Request Sequence page and in a popup menu of the tree. Import feature adds communication lines and devices to SCADA-Communicator configuration using the information of the configuration database. Click to update SCADA-Communicator settings according to the configuration database. Names of communication lines, names, DLLs, addresses and call numbers of devices are affected. Be careful not to lose settings made manually. Figure 7. Import devices 10

11 Creating Views View is a form of data representation in SCADA-Web application. The supported view types are described in the following table. View Type Table Scheme Faces Web page Description Displays data in tabular form by hours Displays data in schemes Displays photos of the staff passing through checkpoints of access control system Displays data in a custom web page SCADA-Table Editor is designed for creating and editing table views. The application is shown in Figure 8. Figure 8. SCADA-Table Editor application In the left side of the window the configuration database information is displayed. The edited table view is in the right side. 11

12 There are two options how to bind output channels to items of a view: 1. Specify the output channel numbers explicitly by using SCADA-Table Editor. 2. Specify the output channel numbers in the configuration database in relation to the input channels. Specify the appropriate input channel numbers in SCADA- Table Editor. Hidden items of table view are not displayed but they affect the event filtering by view in SCADA-Web. SCADA-Scheme Editor is designed for creating and editing schemes (see Figure 9). Figure 9. SCADA-Scheme Editor application. Schemes consist of textual and graphic elements which can be static or dynamic. Dynamic elements are bound to input channels and displaying of these elements depends on current data the channels. All the views are stored in the interface directory defined in SCADA-Server settings. The default interface directory is C:\SCADA\Interface\ To enable using a view in SCADA-Web the view has to be listed in SCADA-Web configuration. For this purpose use SCADA-Web Configurator shown in Figure

13 Figure 10. Adding views using SCADA-Web Configurator 13

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Integrating LANGuardian with Active Directory

Integrating LANGuardian with Active Directory Integrating LANGuardian with Active Directory 01 February 2012 This document describes how to integrate LANGuardian with Microsoft Windows Server and Active Directory. Overview With the optional Identity

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

Final Exam Review: VBA

Final Exam Review: VBA Engineering Fundamentals ENG1100 - Session 14B Final Exam Review: VBA 1 //coe/dfs/home/engclasses/eng1101/f03/ethics/en1.e05.finalcoursewrapup.sxi Final Programming Exam Topics Flowcharts Assigning Variables

More information

Content Filtering Client Policy & Reporting Administrator s Guide

Content Filtering Client Policy & Reporting Administrator s Guide Content Filtering Client Policy & Reporting Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

CONTROL MICROSYSTEMS DNP3. User and Reference Manual

CONTROL MICROSYSTEMS DNP3. User and Reference Manual DNP3 User and Reference Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical Support: 888-226-6876

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Network Probe User Guide

Network Probe User Guide Network Probe User Guide Network Probe User Guide Table of Contents 1. Introduction...1 2. Installation...2 Windows installation...2 Linux installation...3 Mac installation...4 License key...5 Deployment...5

More information

Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13

Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13 Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

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

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support.

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support. Sync & Save Introduction Sync & Save allows you to connect the DoForms service (www.doforms.com) with your accounting or management software. If your system can import a comma delimited, tab delimited

More information

Administration guide. Océ LF Systems. Connectivity information for Scan-to-File

Administration guide. Océ LF Systems. Connectivity information for Scan-to-File Administration guide Océ LF Systems Connectivity information for Scan-to-File Copyright 2014, Océ All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted in any form

More information

iridium for KNX/EIB Fast Start: Connection Setting Manual for KNX/EIB equipment

iridium for KNX/EIB Fast Start: Connection Setting Manual for KNX/EIB equipment iridium for KNX/EIB Fast Start: Connection Setting Manual for KNX/EIB equipment Review of iridium Software Package for KNX/EIB: iridium turns your iphone/ipod/ipad or Windows device into a KNX system control

More information

iridium for Weinzierl KNX IP BAOS

iridium for Weinzierl KNX IP BAOS iridium for Weinzierl KNX IP BAOS Fast Start: Connection Setting Manual for KNX/EIB bus through IP Interfaces of Weinzierl KNX IP BAOS Review of iridium Software Package for KNX/EIB: iridium turns your

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

StreamServe Persuasion SP5 Control Center

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

More information

2X ApplicationServer & LoadBalancer Manual

2X ApplicationServer & LoadBalancer Manual 2X ApplicationServer & LoadBalancer Manual 2X ApplicationServer & LoadBalancer Contents 1 URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies,

More information

Configuring Sponsor Authentication

Configuring Sponsor Authentication CHAPTER 4 Sponsors are the people who use Cisco NAC Guest Server to create guest accounts. Sponsor authentication authenticates sponsor users to the Sponsor interface of the Guest Server. There are five

More information

Well-Contact Suite Client Software Guidelines and precautions

Well-Contact Suite Client Software Guidelines and precautions 01592 Well-Contact Suite Client Software Guidelines and precautions INDEX SECTION A: Guidelines for the creation of the ETS project 2 Rules to follow for the ETS project 2 Parameters to set on the transponder

More information

Creating Home Directories for Windows and Macintosh Computers

Creating Home Directories for Windows and Macintosh Computers ExtremeZ-IP Active Directory Integrated Home Directories Configuration! 1 Active Directory Integrated Home Directories Overview This document explains how to configure home directories in Active Directory

More information

Setting up VMware ESXi for 2X VirtualDesktopServer Manual

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

More information

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this guide

More information

OCS Training Workshop LAB14. Email Setup

OCS Training Workshop LAB14. Email Setup OCS Training Workshop LAB14 Email Setup Introduction The objective of this lab is to provide the skills to develop and trouble shoot email messaging. Overview Electronic mail (email) is a method of exchanging

More information

TECHNICAL SUPPORT GUIDE

TECHNICAL SUPPORT GUIDE TECHNICAL SUPPORT GUIDE INTRODUCTION This document has been developed to provide a guideline for assisting our clients and their technicians with a standard Console Gateway Live configuration. IS THIS

More information

eduroam Network guide configuration for Microsoft Windows 7

eduroam Network guide configuration for Microsoft Windows 7 eduroam Network guide configuration for Microsoft Windows 7 eduroam network guide configuration for Microsoft Windows 7 Index Introduction... 1 1.1 Operative System Compatibility with EAP-TTLS... 1 1.2

More information

Upgrade ProTracker Advantage Access database to a SQL database

Upgrade ProTracker Advantage Access database to a SQL database Many of our customers run the process themselves with great success. We are available to run the process for you or we can be available on standby from 9:00-5:00(Eastern) to provide assistance if needed.

More information

Basic SQL Server operations

Basic SQL Server operations Basic SQL Server operations KB number History 22/05/2008 V1.0 By Thomas De Smet CONTENTS CONTENTS... 1 DESCRIPTION... 1 SOLUTION... 1 REQUIREMENTS...13 REFERENCES...13 APPLIES TO...13 KEYWORDS...13 DESCRIPTION

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

LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016

LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016 LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016 LANDPARK NETWORK IP ALLOWS YOU TO EASILY INVENTORY YOUR PC THROUGH THE NETWORK Landpark NetworkIP

More information

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

PrintFleet Local Beacon

PrintFleet Local Beacon PrintFleet Local Beacon User Guide Version 2.5.15 as of March 3, 2008. 2008 PrintFleet Inc. All rights reserved. Copyright 2008 PrintFleet Inc. All rights reserved. PrintFleet Local Beacon User Guide.

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

Managing Users and Identity Stores

Managing Users and Identity Stores CHAPTER 8 Overview ACS manages your network devices and other ACS clients by using the ACS network resource repositories and identity stores. When a host connects to the network through ACS requesting

More information

Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005

Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005 Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005 Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005... 1

More information

Galaxy Software Addendum

Galaxy Software Addendum Galaxy Software Addendum for Importing Users from Active Directory Includes Encryption of Connection Strings Page 1 of 9 System Galaxy Version 10.3 How to Guide For Importing users from Active Directory

More information

STORAGE SYSTEM DATALOGGER DATABASE

STORAGE SYSTEM DATALOGGER DATABASE STORAGE SYSTEM DATALOGGER DATABASE Database based storage system for data acquisition systems, dataloggers and transmitters Instruction Manual Introduction This storage system is database based system

More information

Getting Started With SAM Director SAM Director User Guide

Getting Started With SAM Director SAM Director User Guide Getting Started With SAM Director SAM Director User Guide Copyright 2014 License Dashboard Limited. License Dashboard Limited is a trading subsidiary of the Blenheim Group. License Dashboard Limited -

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

CA Performance Center

CA Performance Center CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

1. Data Domain Pre-requisites. 2. Enabling OST

1. Data Domain Pre-requisites. 2. Enabling OST 1. Data Domain Pre-requisites Before we begin to configure NetBackup, we need to verify the following:- Administrator rights and network access to the NetBackup master and media servers That the NetBackup

More information

Site Monitor. Version 5.3

Site Monitor. Version 5.3 Site Monitor Version 5.3 1 1 Table of contents 1 Table of contents... 2 2 Installation... 3 2.1 Components... 3 2.1.1 Monitoring Service... 3 2.1.2 Desktop User Interface... 3 2.1.3 Web User Interface...

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

Securepoint Security Systems

Securepoint Security Systems HowTo: VPN with OpenVPN, certificates and OpenVPN-GUI Securepoint Security Systems Version 2007nx Release 3 Contents 1 Configuration on the appliance... 4 1.1 Setting up network objects... 4 1.2 Creating

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

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

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

LDaemon. This document is provided as a step by step procedure for setting up LDaemon and common LDaemon clients.

LDaemon. This document is provided as a step by step procedure for setting up LDaemon and common LDaemon clients. LDaemon This document is provided as a step by step procedure for setting up LDaemon and common LDaemon clients. LDaemon... 1 What you should know before installing LDaemon:... 2 ACTIVE DIRECTORY... 2

More information

Print Audit 5 User Manual

Print Audit 5 User Manual Print Audit 5 User Manual http://www.printaudit.com PRINT AUDIT 5 OVERVIEW...2 WELCOME...2 GETTING STARTED...2 PRINT AUDIT 5 HOW TO GUIDES...5 HOW TO SET THE COST PER PAGE FOR A PRINTER...5 HOW TO SET

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

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

Contents CHAPTER 1 IMail Utilities

Contents CHAPTER 1 IMail Utilities Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP

More information

ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL

ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL Foreword Entbus services manage the collection of information and storing this information in the database. Services

More information

Getting Started with MasteringPhysics

Getting Started with MasteringPhysics Getting Started with MasteringPhysics POWERED BY MYCYBERTUTOR STUDENT EDITION MasteringPhysics helps you when you need it most when you are stuck working out a problem. Designed specifically for university

More information

DAS202Tools v1.0.0 for DAS202 Operating Manual

DAS202Tools v1.0.0 for DAS202 Operating Manual DAS202Tools v1.0.0 for DAS202 Operating Manual DAT102Tools 1.0.0 Manual Table of context 2 Table of Contents 1 General Information... 3 2 PC... Configuration Requirements 3 3 Software Installation... 3

More information

Monitoring PostgreSQL database with Verax NMS

Monitoring PostgreSQL database with Verax NMS Monitoring PostgreSQL database with Verax NMS Table of contents Abstract... 3 1. Adding PostgreSQL database to device inventory... 4 2. Adding sensors for PostgreSQL database... 7 3. Adding performance

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

+27O.557+! RM Auditor Additions - Web Monitor. Contents

+27O.557+! RM Auditor Additions - Web Monitor. Contents RM Auditor Additions - Web Monitor Contents RM Auditor Additions - Web Monitor... 1 Introduction... 2 Installing Web Monitor... 2 Overview... 2 Pre-requisites for installation... 2 Server installation...

More information

Setting Up Scan to SMB on TaskALFA series MFP s.

Setting Up Scan to SMB on TaskALFA series MFP s. Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and

More information

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8

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

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

S m a r t M a s t e B T E C O R P O R A T I O N USER MANUAL

S m a r t M a s t e B T E C O R P O R A T I O N USER MANUAL S m a r t M a s t e rtm 2014 B T E C O R P O R A T I O N USER MANUAL S m a r t M a s t e r T M 2 0 1 4 U s e r M a n u a l P a g e 1 o f 2 3 Contents Contents...1 Introduction...2 Audience...2 SmartMaster

More information

estos ECSTA for OpenScape Business 4.0.7.3683

estos ECSTA for OpenScape Business 4.0.7.3683 estos ECSTA for OpenScape Business 4.0.7.3683 1 Introduction... 4 2 Driver Management... 6 3 Supported Telephone Systems... 7 4 UC Booster Platforms... 8 4.1 Configuration and Connection of the UC Booster

More information

Accounting Manager. User Guide A31003-P1030-U114-2-7619

Accounting Manager. User Guide A31003-P1030-U114-2-7619 Accounting Manager User Guide A31003-P1030-U114-2-7619 Our Quality and Environmental Management Systems are implemented according to the requirements of the ISO9001 and ISO14001 standards and are certified

More information

Tutorial. Inventory Methods

Tutorial. Inventory Methods Tutorial Inventory Methods 2011 DeskCenter Solutions AG Table of Contents 1. Introduction...3 2. Manual inventory...3 3. Inventory with DeskCenter Management Service...4 3.1 Configuring Management Service...4

More information

Scheduling Automated Outlet Control Using FineSNMPSet with Sentry Switched Power Distribution Units

Scheduling Automated Outlet Control Using FineSNMPSet with Sentry Switched Power Distribution Units Scheduling Automated Outlet Control Using FineSNMPSet with Sentry Switched Power Distribution Units This documents the following topics: Purpose Overview FineSNMPSet Free-Ware Utility Windows Scheduled

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

5nine Hyper-V Commander

5nine Hyper-V Commander 5nine Hyper-V Commander 5nine Hyper-V Commander provides a local graphical user interface (GUI), and a Framework to manage Hyper-V R2 server and various functions such as Backup/DR, HA and P2V/V2V. It

More information

How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2

How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2 BANDWIDTH METER FOR HYPER-V NEW FEATURES OF 2.0 The Bandwidth Meter is an active application now, not just a passive observer. It can send email notifications if some bandwidth threshold reached, run scripts

More information

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816.

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816. RingStor User Manual Version 2.1 Last Update on September 17th, 2015 RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816 Page 1 Table of Contents 1 Overview... 5 1.1 RingStor Data Protection...

More information

Network Load Balancing

Network Load Balancing Network Load Balancing Step by Step installation of Network Load Balancing in Windows Server 2008 R2. Prerequisite for NLB Cluster 1. Log on to NODE1 Windows Server 2008 R2 system with a domain account

More information

Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5

Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5 SAGE ACCPAC OPTIONS Sage Accpac Options Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5 User Guide 2008 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and all Sage

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

EM Single Sign On 1.2 (1018)

EM Single Sign On 1.2 (1018) (1018) 2015 VoIP Integration July 27, 2015 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager... 3 Network Connectivity... 3 EM Profile Requirements...

More information

MT4 Multiterminal USER MANUAL

MT4 Multiterminal USER MANUAL MT4 Multiterminal USER MANUAL MT4 MultiTerminal User Manual 1. Getting Started... 3 1.1 General... 3 1.2 Security System... 3 1.3 Live Update... 3 1.4 Terminal Settings... 4 2. Client Accounts... 9 2.1

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

PageR Enterprise Monitored Objects - AS/400-5

PageR Enterprise Monitored Objects - AS/400-5 PageR Enterprise Monitored Objects - AS/400-5 The AS/400 server is widely used by organizations around the world. It is well known for its stability and around the clock availability. PageR can help users

More information

Setting up SMTP in Talis Decisions

Setting up SMTP in Talis Decisions Decisions Talis Library Management Suite Setting up SMTP in Talis Decisions This document describes how to configure SMTP (Single Mail Transfer Protocol) in Talis Decisions. It is intended for system administrators

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR SQL SERVER QUICK-START GUIDE Product Version: 2.6.194 February 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Netop Remote Control for Linux Installation Guide Version 12.22

Netop Remote Control for Linux Installation Guide Version 12.22 Netop Remote Control for Linux Installation Guide Version 12.22 Copyright 1981-2016 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments

More information

Windows Administration Terminal Services, AD and the Windows Registry. INLS 576 Spring 2011 Tuesday, February 24, 2011

Windows Administration Terminal Services, AD and the Windows Registry. INLS 576 Spring 2011 Tuesday, February 24, 2011 Windows Administration Terminal Services, AD and the Windows Registry INLS 576 Spring 2011 Tuesday, February 24, 2011 Terminal Services Uses RDP (Remote Desktop Protocol), relies on TCP/IP, and falls under

More information

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above About this document The core Pcounter application contains a number of CGI extension applications which

More information

Patrol Master Software

Patrol Master Software Handheld Guard Tracking System PATROL Patrol Master Software Software version : 3.1.16 Document version: Rev. C Contents 1. Introduction... 3 1.1 Purpose and main features... 3 1.2. Requirements... 3 1.3.

More information

Important. Please read this User s Manual carefully to familiarize yourself with safe and effective usage.

Important. Please read this User s Manual carefully to familiarize yourself with safe and effective usage. Important Please read this User s Manual carefully to familiarize yourself with safe and effective usage. About This Manual This manual describes how to install and configure RadiNET Pro Gateway and RadiCS

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite Migrating AIMS Configuration and Audit Log Data To Microsoft SQL Server Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX:

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

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

Introduction. There are several bits of information that must be moved:

Introduction. There are several bits of information that must be moved: Backup and restore on new hardware XProtect Professional VMS Products 2014: XProtect Enterprise 2014, XProtect Professional 2014, XProtect Express 2014, XProtect Essential 2014 Introduction This document

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