Installing nginx for DME Server

Size: px
Start display at page:

Download "Installing nginx for DME Server"

Transcription

1 for DME Server Document version 1.3 Published

2 nginx installation guide Contents nginx installation guide... 2 nginx... 4 Windows Supported platforms... 6 Step 1: Install or upgrade DME... 6 Step 2: Install nginx... 6 Repository file...6 Install nginx...7 Step 3: Set up SSL... 9 Configure SSL certificate...9 Public SSL key and root certificate...9 Private SSL key...9 Diffie-Hellman parameter Step 4: Default nginx configuration Configure nginx configuration file Step 5: Configure DME Disable SSL on the DME Server Edit server.xml Step 6: Check configuration Firewall Start DME Server Start nginx Server Soliton Systems

3 nginx installation guide nginx installation guide This document describes how to install nginx for the DME Server. You can find information about installing the other components at the DME Resource Center see DME Resource Center - DME is created by Soliton Systems. This is our logo and contact information: Soliton Systems Europe Spotorno Allé Taastrup Denmark Phone: mail@solitonsystems.com Website: Soliton website Some legal stuff: Copyright Soliton Systems. All rights reserved. Due to continued product development, this information may change without notice. The information and intellectual property contained herein is confidential between Soliton Systems and the client, and remains the exclusive property of Soliton Systems. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording or otherwise without the prior written permission of Soliton Systems. DME is trademark of Soliton Systems. Microsoft SQL Server, Microsoft Exchange, Outlook, Windows, Windows Server 2003/2008/2012, and Active Directory are trademarks or registered trademarks of the Microsoft Corporation in the United States and other countries. Lotus Notes and Domino are trademarks or registered trademarks of IBM Corporation, registered in the U.S. and other countries. All other trademarks are property of their respective owners. DME is in part developed and sold under license from Good Technology Soliton Systems

4 nginx installation guide nginx is software provided by nginx, Inc. and its contributors. Copyright (C) Igor Sysoev Copyright (C) nginx, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE Soliton Systems

5 nginx nginx nginx is an open source SSL proxy server, which is placed in front of the Apache web server used in DME. nginx can be used with any version of the DME Server. It provides higher security for SSL connections, supporting the newest SSL technologies. This includes support for the Transport Layer Security (TLS) protocol version 1.2, as well as Perfect Forward Secrecy. nginx can also be used as a Load balancer in a DME cluster setup. As default, port 443 is configured to accept incoming connections from devices, in addition to the port used previously. nginx default locations: Windows Program location: <path to DME>\nginx Log location: <path to DME>\nginx\log SSL files: <path to DME>\certs Configuration file: <path to DME>\nginx\conf\nginx.conf Program location: /etc/nginx Log location: /var/log/nginx Access.log Error.log SSL files: /var/dme/instances/base/etc Configuration file default.conf: /etc/nginx/conf.d Soliton Systems

6 Windows Windows On Windows, the nginx installer and setup is part of the DME Server installer for Windows. Please refer to the Installing DME for Windows manual Soliton Systems

7 nginx is not part of the installer, or of the DME Server installation, and your company must make sure to keep it maintained and security updated! Supported platforms Red Hat 5 Red Hat 6 Red Hat 7 CentOS 6 CentOS 7 Suse 12 Please note that Suse 11 is not supported with nginx. Step 1: Install or upgrade DME Please use the normal Installer for to install or upgrade the DME server to version 4.5. Make sure that the current or new SSL certificate is working with DME. Step 2: Install nginx Repository file Make a repository file for nginx using these steps Soliton Systems

8 Red Hat and CentOS Create a new file with this command: vi /etc/yum.repos.d/nginx.repo Paste the text below into the file. Replace the version with the correct OS versions version like 6 or 7, depending on the OS. Red Hat: [nginx] name=nginx repo baseurl= mainline/rhel/ version /$basearch/ gpgcheck=0 enabled=1 CentOS: [nginx] name=nginx repo baseurl= mainline/centos/ versio n /$basearch/ gpgcheck=0 enabled=1 Save the file. Suse Run the following command as root: zypper addrepo -G -t yum -c ' nginx This will create the repository file on Suse. Install nginx You must be "root" to install nginx Soliton Systems

9 Red Hat and CentOS Use the command: yum install nginx Then start the nginx server: /etc/init.d/nginx start or systemctl start nginx.service Check that the server is working by opening a browser and connect to the server on port 80. You should have a site called "Welcome to nginx." Now stop the nginx server to configure it to work with DME: /etc/init.d/nginx stop or systemctl stop nginx.service Suse Use the command: zypper in nginx Then start the nginx server: service nginx start Check that the server is working by opening a browser and connect to the server on port 80. You should have a site called "Welcome to nginx." Now stop the nginx server to configure it to work with DME: service nginx stop Soliton Systems

10 Step 3: Set up SSL Configure SSL certificate Configure the SSL certificate used by DME to work with nginx. You need a valid SSL certificate on DME before you begin. The nginx server will use the default DME SSL folder on the DME server. Usually: /var/dme/instances/base/etc The nginx server use two files with the SSL configuration. The file server-ca-cert-bundle.pem containing the public SSL certificate, all intermediate SSL certificates and root SSL certificate. The file server.key the file contains the Private SSL certificate without password. Public SSL key and root certificate Make a new file named server-ca-cert-bundle.pem Copy the content from /var/dme/instances/base/etc/sslcertificate.pem and rootca.pem in that order. Copy server-ca-cert-bundle.pem to the /var/dme/instances/base/etc folder Private SSL key nginx can t handle password protected SSL files, therefore the password must be removed from the private key. Use OpenSSL to remove the password from the file: Switch to the /var/dme/instances/base/etc folder. Run this command: Soliton Systems

11 openssl rsa -in sslprivatekey.pem -out server.key Enter the password for the SSL private key, default DME password is rmi+ssl This will create a file named server.key without SSL password. Diffie-Hellman parameter Then it is time to prepare a Diffie-Hellman parameter file. You need to create a 4096 bit key, which is used with SSL Perfect Forward Secrecy. Run this command to create the key: openssl dhparam -dsaparam -out dh4096.pem 4096 This will create a key file named dh4096.pem. Please be patient, it may take a few minutes to generate the key. Check that you now have these new files in the /var/dme/instances/base/etc folder. server.key - Private key without SSL password server-ca-cert-bundle.pem - SSL certificate, intermediate certificate and root certificate, in that order. dh4096.pem Step 4: Default nginx configuration Soliton Systems has made a default nginx configuration file to use with the DME solution, this configuration can give you a A+ on the SSL Server Test if you use the right root certificate. Copy the nginx configuration file, located /tmp/dme_install/files/default.conf, to the folder /etc/nginx/conf.d, overwriting the current file in the /etc/nginx/conf.d folder Soliton Systems

12 Configure nginx configuration file Next configure the default nginx configuration file to work with DME. Open and edit the file default.conf located in /etc/nginx/conf.d Search and replace all values for SERVERPATH with the DME server path like dme.companyname.com Search and replace all values for SERVER_IP with the DME server ip-address, this address must be the one the DME client connect to. This will configure the nginx server to listen on port 443, 5011 (client sync) and 8080 (web-interface) and send the request to an internal port (5010, DME client sync and 5009, web-interface) on the DME server. Step 5: Configure DME Disable SSL on the DME Server Stop the DME server. Disable SSL on the DME server. SSL termination will be handled by the nginx server therefore you need to disable HTTPS and change the port configuration on the DME server, this is done in the server.xml file. Edit server.xml Change the port and http settings in server.xml Location of server.xml: /var/dme/instances/base/deploy/jbossweb.sar Change the settings marked with bullets to the values indicated here: <Service name="jboss.web"> <!-- WEB Administration interface/port --> <Connector protocol="http/1.1" port="5009" address="${jboss.bind.address}" Soliton Systems

13 SSLEnabled="false" scheme="http" secure="false" SSLProtocol="TLSv1" maxthreads="100" connectiontimeout="60000" disableuploadtimeout="true" SSLCipherSuite="HIGH:!ADH:!SSLv2:!3DES" SSLCertificateFile=" ${jboss.server.home.dir}/ etc/ sslce rtificate.pem" SSLCertificateKeyFile=" ${jboss. server. home.dir}/etc/ss lprivatekey.pem" SSLCertificateChainFile="${ jboss.server.home. dir}/etc/ rootca.pem" SSLPassword="rmi+ssl" Server="DME" redirectport="8443" /> <!-- Terminal access interface/port --> <Connector protocol="http/1.1" port="5010" address="${jboss.bind.address}" scheme="http" secure="false" compression="false" enablelookups="false" maxthreads="100" connectiontimeout="60000" disableuploadtimeout="false" acceptcount="10" URIEncoding="UTF -8" connectionlinger="-1" maxpostsize=" " maxsavepostsize="10240" Soliton Systems

14 SSLEnabled="false" SSLProtocol="TLSv1" SSLHonorCipherOrder="on" SSLCipherSuite="HIGH:!ADH:!SSLv2:!3DES" SSLCertificateFile=" ${jboss.server.home.dir}/ etc/ sslce rtificate.pem" SSLCertificateKeyFile=" ${jboss. server. home.dir}/etc/ss lprivatekey.pem" SSLCertificateChainFile="${ jboss.server.home. dir}/etc/ rootca.pem" SSLPassword="rmi+ssl" Server="DME" /> Step 6: Check configuration Firewall If the DME start up scripts handles opening the required ports on the Gateway server please make sure to add the ports in the EXTRAPORTS section of the /etc/init.d/dme_base start up script. Start DME Server Check that the DME server respond on port 5009 and Start nginx Server Start the nginx server on Red Hat and CentOS Use the command: /etc/init.d/nginx start or systemctl start nginx.service Soliton Systems

15 Start the nginx server on Suse Use the command: service nginx start Check that the nginx server responds on port 443, 5011 and Now the nginx serve should handle the SSL request from the DME clients and also request to the DME Web-interface. Please make sure nginx starts up automatically when you boot the server. You can do this by running: systemctl enable nginx.service after installing nginx Soliton Systems

DME 4.5 Partner Event

DME 4.5 Partner Event DME 4.5 Partner Event January 2016 We will start at 10:00 CET Frank Fjordvald Head of Technical Services Agenda DME Server 4.5 highlights New SSL proxy server in front of the DME Server New settings and

More information

Open Source Used In TSP

Open Source Used In TSP Open Source Used In TSP 3.5.11 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at www.cisco.com/go/offices.

More information

SkyPilot OS Installation: Fedora Core 5

SkyPilot OS Installation: Fedora Core 5 SkyPilot OS Installation: Fedora Core 5 PN 671-00024-01 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose.

More information

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2 Documentation Roadmap for Cisco Prime LAN Thank you for purchasing Cisco Prime LAN Management Solution (LMS) 4.2. This document provides an introduction to the Cisco Prime LMS and lists the contents of

More information

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide KEMP LBaaS Red Hat OpenStack Driver Installation Guide VERSION: 2.0 UPDATED: AUGUST 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP

More information

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions Date Generated: 2018/09/10 Apache Tomcat ID: 306 Apache Foundation and Contributors This product includes software

More information

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3)

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Overview Changes History Installation Package Contents Known Limitations Attributions Legal Information Overview The

More information

PageScope Box Operator Ver. 3.2 User s Guide

PageScope Box Operator Ver. 3.2 User s Guide PageScope Box Operator Ver. 3.2 User s Guide Box Operator Contents 1 Introduction 1.1 System requirements...1-1 1.2 Restrictions...1-1 2 Installing Box Operator 2.1 Installation procedure...2-1 To install

More information

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c Page 1 of 6 example_sci_uart_9600.c This example code configures SCI and transmits a set of characters. An UART receiver can be used to receive this data. The scilin driver files should be generated with

More information

TheGreenBow VPN Client ios User Guide

TheGreenBow VPN Client ios User Guide www.thegreenbow.com TheGreenBow VPN Client ios User Guide Property of TheGreenBow 2018 Table of Contents 1 Presentation... 3 1.1 TheGreenBow VPN Client... 3 1.2 TheGreenBow VPN Client main features...

More information

Copyright PFU LIMITED 2016

Copyright PFU LIMITED 2016 -------------------------------------------------------- PaperStream Capture Lite 1.0.1 README File -------------------------------------------------------- Copyright PFU LIMITED 2016 This file contains

More information

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Introduction Installation Start using W4S Selecting a folder to monitor Setting the threshold Setting actions Starting the monitor Live Log Using monitor

More information

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG Version: 12.10 December 2012 SNP Schneider-Neureither & Partner AG Dossenheimer Landstr. 100 D-69121 Heidelberg Tel.: +49 6221 6425-0 Fax: +49 6221 6425-20 E-Mail: info@snp-ag.com www.snp-ag.com Page 1

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

Migration Tool. Migration Tool (Beta) Technical Note

Migration Tool. Migration Tool (Beta) Technical Note Migration Tool (Beta) Technical Note VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

Moodle. Moodle. Deployment Guide

Moodle. Moodle. Deployment Guide Moodle Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

Preface. Audience. Cisco IOS Software Documentation. Organization

Preface. Audience. Cisco IOS Software Documentation. Organization This preface describes the audience, organization, and conventions of this publication, and provides information on how to obtain related documentation. Cisco documentation and additional literature are

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

NemHandel Referenceklient 2.3.1

NemHandel Referenceklient 2.3.1 OIO Service Oriented Infrastructure NemHandel Referenceklient 2.3.1 Release Notes Contents 1 Introduction... 3 2 Release Content... 3 3 What is changed?... 4 3.1 NemHandel Referenceklient version 2.3.1...

More information

Copyright PFU LIMITED

Copyright PFU LIMITED -------------------------------------------------------- PaperStream Capture 1.0.12 README File -------------------------------------------------------- Copyright PFU LIMITED 2013-2015 This file contains

More information

NemHandel Referenceklient 2.3.0

NemHandel Referenceklient 2.3.0 OIO Service Oriented Infrastructure OIO Service Oriented Infrastructure NemHandel Referenceklient 2.3.0 Release Notes Contents 1 Introduction... 3 2 Release Content... 3 3 What is changed?... 4 3.1 NemHandel

More information

QuarkXPress Server Manager 8.0 ReadMe

QuarkXPress Server Manager 8.0 ReadMe QuarkXPress Server Manager 8.0 ReadMe CONTENTS Contents QuarkXPress Server Manager 8.0 ReadMe...3 What's New in QuarkXPress Server Manager 8...4 Deprecated features, new stubs, and deploying SDK classes...4

More information

Fujitsu ScandAll PRO V2.1.5 README

Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Copyright PFU Limited 2007-2017 This file contains information

More information

Cluster and SVM Peering Express Guide

Cluster and SVM Peering Express Guide ONTAP 9 Cluster and SVM Peering Express Guide December 2017 215-11182_E0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Prerequisites

More information

DAP Controller FCO

DAP Controller FCO Release Note DAP Controller 6.40.0412 FCO 2016.046 System : Business Mobility IP DECT Date : 30 June 2016 Category : Maintenance Product Identity : DAP Controller 6.40.0412 Queries concerning this document

More information

Open Source Used In Cisco Configuration Professional for Catalyst 1.0

Open Source Used In Cisco Configuration Professional for Catalyst 1.0 Open Source Used In Cisco Configuration Professional for Catalyst 1.0 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on

More information

SkyPilot EMS Installation

SkyPilot EMS Installation SkyPilot EMS Installation 671-00004-01 Rev B 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose. Product

More information

Installing the Shrew Soft VPN Client

Installing the Shrew Soft VPN Client Windows Install Installing the Shrew Soft VPN Client ShrewVPNWindows201211-01 Global Technology Associates 3505 Lake Lynda Drive Suite 109 Orlando, FL 32817 Tel: +1.407.380.0220 Fax. +1.407.380.6080 Email:

More information

MagicInfo Express Content Creator

MagicInfo Express Content Creator MagicInfo Express Content Creator MagicInfo Express Content Creator User Guide MagicInfo Express Content Creator is a program that allows you to conveniently create LFD content using a variety of templates.

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008 IETF TRUST Legal Provisions Relating to IETF Documents Approved November 6, 2008 Effective Date: November 10, 2008 1. Background The IETF Trust was formed on December 15, 2005, for, among other things,

More information

VMware vcenter Log Insight Manager. Deployment Guide

VMware vcenter Log Insight Manager. Deployment Guide VMware vcenter Log Insight Manager Deployment Guide VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

ANZ TRANSACTIVE MOBILE for ipad

ANZ TRANSACTIVE MOBILE for ipad ANZ TRANSACTIVE MOBILE for ipad CORPORATE CASH AND TRADE MANAGEMENT ON THE GO QUICK REFERENCE GUIDE April 2016 HOME SCREEN The home screen provides immediate visibility of your favourite accounts and transactions

More information

LoadMaster VMware Horizon (with View) 6. Deployment Guide

LoadMaster VMware Horizon (with View) 6. Deployment Guide LoadMaster VMware Horizon (with View) 6 Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the

More information

Adobe Connect. Adobe Connect. Deployment Guide

Adobe Connect. Adobe Connect. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

AccuTerm 7 Internet Edition Connection Designer Help. Copyright Schellenbach & Assoc., Inc.

AccuTerm 7 Internet Edition Connection Designer Help. Copyright Schellenbach & Assoc., Inc. AccuTerm 7 Internet Edition Connection Designer Help Contents 3 Table of Contents Foreword 0 Part I AccuTerm 7 Internet Edition 6 1 Description... 6 2 Connection... Designer 6 3 Internet... Client 6 4

More information

Open Source and Standards: A Proposal for Collaboration

Open Source and Standards: A Proposal for Collaboration ETSI Workshop on Open Source and ization: Legal Interactions September 16, 2016 Sophia Antipolis Open Source and s: A Proposal for Collaboration David Marr VP & Legal Counsel Open Source Group Qualcomm

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

This section describes new Polycom QDX 6000 hardware.

This section describes new Polycom QDX 6000 hardware. PLEASE NOTE 4.0.1 UPGRADE DEPENDENCY: Customers who used data pass through in 4.0 will need to use a new cable after the upgrade. The part number for the new Data Pass-Through cable is 2457-32892-001.

More information

DAP Controller FCO

DAP Controller FCO Release Note DAP Controller 6.61.0790 System : Business Mobility IP DECT Date : 20 December 2017 Category : General Release Product Identity : DAP Controller 6.61.0790 Queries concerning this document

More information

TWAIN driver User s Guide

TWAIN driver User s Guide 4037-9571-05 TWAIN driver User s Guide Contents 1 Introduction 1.1 System requirements...1-1 2 Installing the TWAIN Driver 2.1 Installation procedure...2-1 To install the software...2-1 2.2 Uninstalling...2-1

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba ODBC Driver with SQL Connector Installation and Configuration Guide Simba Technologies Inc. May 15, 2015 Copyright 2015 Simba Technologies Inc. All Rights Reserved. Information in this document is

More information

PTZ Control Center Operations Manual

PTZ Control Center Operations Manual PTZ Control Center Operations Manual Introduction PTZ Control Center is an application software that runs on Windows. By running this software on a Windows PC, you can remotely operate the Panasonic cameras

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009 IETF TRUST Legal Provisions Relating to IETF Documents February 12, 2009 Effective Date: February 15, 2009 1. Background The IETF Trust was formed on December 15, 2005, for, among other things, the purpose

More information

Splunk. Splunk. Deployment Guide

Splunk. Splunk. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

Oracle Auto Service Request

Oracle Auto Service Request Oracle Auto Service Request Exadata Database Machine Quick Installation Guide Release 4.5 E23333-07 July 2013 Oracle Auto Service Request (ASR) is a secure, scalable, customer-installable software feature

More information

Avaya VPN Client Software Release 10.05_100

Avaya VPN Client Software Release 10.05_100 Avaya VPN Client Software Release 10.05_100 1. Release Summary Release Date: September 1 st, 2011 Purpose: Software maintenance release to address customer requests and software issues. 2. Important Notes

More information

calio / form-input-nginx-module

calio / form-input-nginx-module https://github.com/ 1 of 5 2/17/2015 11:27 AM Explore Gist Blog Help itpp16 + calio / form-input-nginx-module 5 46 9 This is a nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-formurlencoded",

More information

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide for the Oracle Application Server April 2006 JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide Copyright 2006, Oracle.

More information

NetApp SolidFire Element OS. Setup Guide. Version March _A0

NetApp SolidFire Element OS. Setup Guide. Version March _A0 NetApp SolidFire Element OS Setup Guide Version 10.2 March 2018 215-12911_A0 doccomments@netapp.com Table of Contents 3 Contents SolidFire system overview... 4 Configuring a storage node... 5 Configuring

More information

Simba Cassandra ODBC Driver with SQL Connector

Simba Cassandra ODBC Driver with SQL Connector Simba Cassandra ODBC Driver with SQL Connector Last Revised: March 26, 2013 Simba Technologies Inc. Copyright 2012-2013 Simba Technologies Inc. All Rights Reserved. Information in this document is subject

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT)

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) APPLICATION NOTE Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) ASF PROGRAMMERS MANUAL SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) This driver for SAM D20 devices provides an

More information

Supported and Interoperable Devices and Software for Cisco Secure Access Control System 5.4

Supported and Interoperable Devices and Software for Cisco Secure Access Control System 5.4 Supported and Interoperable Devices and Software for Cisco Secure Access Control System 5.4 Revised: January 30, 2014 The Cisco Secure Access Control System Release 5.4, hereafter referred to as ACS, works

More information

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010 This guide describes how to use Cisco Network Analysis Module Traffic Analyzer 4.2 (NAM 4.2) software. This preface has the following sections: Chapter Overview, page xvi Audience, page xvii Conventions,

More information

MUMPS IO Documentation

MUMPS IO Documentation MUMPS IO Documentation Copyright (c) 1999, 2000, 2001, 2002, 2003 Raymond Douglas Newman. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted

More information

NTLM NTLM. Feature Description

NTLM NTLM. Feature Description Feature Description VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

Replacing the NVDIMM battery

Replacing the NVDIMM battery AFF A800 systems Replacing the NVDIMM battery To replace the NVDIMM battery, you must remove the controller module, remove the battery, replace the battery, and then reinstall the controller module. About

More information

User Manual. Date Aug 30, Enertrax DAS Download Client

User Manual. Date Aug 30, Enertrax DAS Download Client EnertraxDL - DAS Download Client User Manual Date Aug 30, 2004 Page 1 Copyright Information Copyright 2004, Obvius Holdings, LLC. All rights reserved. Redistribution and use in source and binary forms,

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

Volume Disaster Recovery Preparation Express Guide

Volume Disaster Recovery Preparation Express Guide ONTAP 9 Volume Disaster Recovery Preparation Express Guide August 2018 215-11187_F0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to use this guide... 4 Volume disaster recovery

More information

xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx Android Calendar Syn (http://github.com/mukesh4u/android-calendar-sync/), Apache License 2.0 Android NDK (https://developer.android.com/tools/sdk/ndk/index.html),

More information

StoneGate SSL VPN Release Notes for Version 1.2.0

StoneGate SSL VPN Release Notes for Version 1.2.0 StoneGate SSL VPN Release Notes for Version 1.2.0 Created: November 6, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

Supported and Interoperable Devices and Softwares for the Cisco Secure Access Control System 5.2

Supported and Interoperable Devices and Softwares for the Cisco Secure Access Control System 5.2 Supported and Interoperable Devices and Softwares for the Cisco Secure Access Control System 5.2 Revised: March 11, 2013 The Cisco Secure Access Control System Release 5.2, hereafter referred to as ACS,

More information

Explaining & Accessing the SPDX License List

Explaining & Accessing the SPDX License List Explaining & Accessing the SPDX License List SOFTWARE PACKAGE DATA EXCHANGE Gary O Neall Source Auditor Inc. Jilayne Lovejoy ARM August, 2014 Copyright Linux Foundation 2014 1 The SPDX License List 2 The

More information

System Log NextAge Consulting Pete Halsted

System Log NextAge Consulting Pete Halsted System Log NextAge Consulting Pete Halsted 110 East Center St. #1035 Madison, SD 57042 pete@thenextage.com www.thenextage.com www.thenextage.com/wordpress Table of Contents Table of Contents BSD 3 License

More information

Epic. Epic Systems. Deployment Guide

Epic. Epic Systems. Deployment Guide Epic Systems Deployment Guide VERSION: 1.0 UPDATED: AUGUST 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are

More information

Quick User Guide. Soliton Secure Container - DME. DME 5.1 for ios with DME 5.0 Server. Document version 0.2

Quick User Guide. Soliton Secure Container - DME. DME 5.1 for ios with DME 5.0 Server. Document version 0.2 Soliton Secure Container - DME DME 5.1 for ios with DME 5.0 Server. Document version 0.2 Published 16-06-2017 Soliton Systems Europe N.V. All rights reserved 2 Disclaimer Soliton Secure Container - DME

More information

Hyper-V - Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide

Hyper-V - Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8 Installation Guide VERSION: 5.0 UPDATED: JANUARY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc..

More information

Quick User Guide. Secure Container - DME. DME 5.0 for ios. Document version 0.1 Published Soliton Systems Europe N.V. All rights reserved

Quick User Guide. Secure Container - DME. DME 5.0 for ios. Document version 0.1 Published Soliton Systems Europe N.V. All rights reserved Secure Container - DME DME 5.0 for ios Document version 0.1 Published 16-06-2017 Soliton Systems Europe N.V. All rights reserved Disclaimer Soliton Secure Container - DME is trademark of Soliton Systems.

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal DMZ Guide 7.5 Document Revision History Document Version Date Changes 1.0 March 2014 Initial version for UMP 7.5. Legal Notices This online help system (the "System")

More information

Novell Audit 2.0 Administration Guide. novdocx (ENU) 10 August Novell Audit ADMINISTRATION GUIDE.

Novell Audit 2.0 Administration Guide. novdocx (ENU) 10 August Novell Audit ADMINISTRATION GUIDE. Novell Audit 2.0 Administration Guide Novell Audit 2.0 July 14, 2006 ADMINISTRATION GUIDE www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or

More information

AT11512: SAM L Brown Out Detector (BOD) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE

AT11512: SAM L Brown Out Detector (BOD) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT11512: SAM L Brown Out Detector (BOD) Driver APPLICATION NOTE Introduction This driver for Atmel SMART ARM -based microcontrollers provides an interface for the configuration

More information

Replacing a PCIe card

Replacing a PCIe card AFF A800 systems Replacing a PCIe card To replace a PCIe card, you must disconnect the cables from the cards, remove the SFP and QSFP modules from the cards before removing the riser, reinstall the riser,

More information

Replacing drives for SolidFire storage nodes

Replacing drives for SolidFire storage nodes NetApp Replacing drives for SolidFire storage nodes You can hot-swap a failed solid-state disk (SSD) drive with a replacement drive. Before you begin You have a replacement drive. You have an electrostatic

More information

License, Rules, and Application Form

License, Rules, and Application Form Generic Interface for Cameras License, Rules, and Application Form GenICam_License.doc Page 1 of 11 Table of Contents 1 OVERVIEW... 4 2 SUBJECT OF THE GENICAM LICENSE... 4 3 RULES FOR STANDARD COMPLIANCY...

More information

iphone/ipad Connection Manual

iphone/ipad Connection Manual For Electone users / Connection Manual By connecting your, or ipod touch to a compatible Electone and using the various dedicated applications, you can expand the potential of the Electone and make it

More information

File Servant User Manual

File Servant User Manual File Servant User Manual Serve files over FTP and HTTP - at the snap of a finger! File Servant is free software (see copyright notice below). This document was last revised Monday 28 February 2011. Creator:

More information

EH E Effective February 2018 Foreseer 7. Foreseer Release Notes

EH E Effective February 2018 Foreseer 7. Foreseer Release Notes EH02606004E Effective February 2018 Foreseer 7 Foreseer 7.0.42 Release Notes Foreseer 7.0.42 Release Notes Publication date 2/2018 Copyright 2018 by Eaton Corporation. All rights reserved. Specifications

More information

RSA Two Factor Authentication

RSA Two Factor Authentication RSA Two Factor Authentication Feature Description VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Upgrade Express Guide

Upgrade Express Guide ONTAP 9 Upgrade Express Guide December 2017 215-11234_G0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Cluster software update workflow...

More information

Quick User Guide. Secure Container - DME. DME 5.0 for Android

Quick User Guide. Secure Container - DME. DME 5.0 for Android Secure Container - DME DME 5.0 for Android Document version 0.1 Published 16-06-2017 Soliton Systems Europe N.V. All rights reserved Disclaimer Soliton Secure Container - DME is trademark of Soliton Systems.

More information

ProgressBar Abstract

ProgressBar Abstract Doc type here 1(21) ProgressBar Abstract The WireFlow progressbar module is an easy way to add progress bars to an application. It is easy to customize the look of the displayed progress window, since

More information

Definiens. Image Miner bit and 64-bit Editions. Release Notes

Definiens. Image Miner bit and 64-bit Editions. Release Notes Definiens Image Miner 2.0.2 32-bit and 64-bit Editions Release Notes Definiens Documentation: Image Miner 2.0.2 Release Notes Imprint 2012 Definiens AG. All rights reserved. This document may be copied

More information

Conettix Universal Dual Path Communicator B465

Conettix Universal Dual Path Communicator B465 Conettix Universal Dual Path Communicator B465 en Release Notes Conettix Universal Dual Path Communicator Table of contents en 3 Table of contents 1 Introduction 4 1.1 Requirements 4 2 Version 2.00.000

More information

User Manual for Video Codec

User Manual for Video Codec User Manual for Video Codec CONTENTS OF THIS DOCUMENT This document contains the following sections: 1 Overview 2 System Requirements 3 Language Support 4 Installing the Software jdk installation jmf installation

More information

User Guide. Calibrated Software, Inc.

User Guide. Calibrated Software, Inc. User Guide Calibrated Software, Inc. Copyright 2008 Calibrated Software, Inc. All rights reserved. www.calibratedsoftware.com Your rights to the software are governed by the accompanying Software License

More information

Table of Contents Overview...2 Selecting Post-Processing: ColorMap...3 Overview of Options Copyright, license, warranty/disclaimer...

Table of Contents Overview...2 Selecting Post-Processing: ColorMap...3 Overview of Options Copyright, license, warranty/disclaimer... 1 P a g e ColorMap Post-Processing Plugin for OpenPolScope software ColorMap processing with Pol-Acquisition and Pol-Analyzer plugin v. 2.0, Last Modified: April 16, 2013; Revision 1.00 Copyright, license,

More information

Data Deduplication Metadata Extension

Data Deduplication Metadata Extension Data Deduplication Metadata Extension Version 1.1c ABSTRACT: This document describes a proposed extension to the SNIA Cloud Data Management Interface (CDMI) International Standard. Publication of this

More information

Grid Engine Users Guide. 7.0 Edition

Grid Engine Users Guide. 7.0 Edition Grid Engine Users Guide 7.0 Edition Grid Engine Users Guide : 7.0 Edition Published Dec 01 2017 Copyright 2017 University of California and Scalable Systems This document is subject to the Rocks License

More information

StoneGate SSL VPN Release Notes for Version 1.2.1

StoneGate SSL VPN Release Notes for Version 1.2.1 StoneGate SSL VPN Release Notes for Version 1.2.1 Created: February 25, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

SAM4 Reset Controller (RSTC)

SAM4 Reset Controller (RSTC) APPLICATION NOTE AT06864: SAM4 Reset Controller (RSTC) ASF PROGRAMMERS MANUAL SAM4 Reset Controller (RSTC) This driver for SAM devices provides an interface for the configuration and management of the

More information

Primavera. Contract Manager Installation Guide

Primavera. Contract Manager Installation Guide Primavera Contract Manager Installation Guide Copyright 1996, 2009, Oracle and/or its affiliates. All rights reserved.. The Programs (which include both the software and documentation) contain proprietary

More information

One Identity Quick Connect Express

One Identity Quick Connect Express One Identity Quick Connect Express for Active Directory 5.6.0 October 2017 These release notes provide information about the One Identity Quick Connect Express for Active Directory release. About New features

More information

E-Series Cabling E-Series Hardware

E-Series Cabling E-Series Hardware E-Series Cabling E-Series Hardware September 2018 215-13049_A0 doccomments@netapp.com Table of Contents 3 Contents Overview and requirements... 4 Cabling your storage system... 5 Host cabling... 5 Cabling

More information

Tisio CE Release Notes

Tisio CE Release Notes Tisio CE Release Notes Copyright Copyright 2005, 2006, 2007 and 2008 by ThinPATH Systems, Inc. The information contained in this document is subject to change without notice. ThinPATH Systems, Inc. shall

More information

Open Source Used In c1101 and c1109 Cisco IOS XE Fuji

Open Source Used In c1101 and c1109 Cisco IOS XE Fuji Open Source Used In c1101 and c1109 Cisco IOS XE Fuji 16.8.1 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco

More information

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP)

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) June 11, 2015 Chapter 1 Files This section describes the files iwrite utilizes. 1.1 report files An iwrite report consists

More information

StoneGate SSL VPN Release Notes for Version 1.3.1

StoneGate SSL VPN Release Notes for Version 1.3.1 StoneGate SSL VPN Release Notes for Version 1.3.1 Created: July 29, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility... 5 Upgrade

More information

JD Edwards World Quick Installation Guide. Version A9.2 Update 1

JD Edwards World Quick Installation Guide. Version A9.2 Update 1 JD Edwards World Quick Installation Guide Version A9.2 Update 1 Revised August 11, 2010 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of

More information