QMetry 7 Installation Guide - Linux Platform

Size: px
Start display at page:

Download "QMetry 7 Installation Guide - Linux Platform"

Transcription

1 QMetry 7 Installation Guide - Linux Platform 1 Introduction 2 Pre-requisites 2.1 Hardware Requirements 2.2 Software Requirements Set JAVA_HOME and PATH on Linux Set Java Cryptography Extension (JCE) 3 Installation Guide 3.1 Before You Begin Set System Parameters Installing QMetry Installing MySQL Installing Payara Server Moving Database resources out of the Application context Script for generating Connection Pool note Script to check the connection note Script for generating datasource note Verification through Payara administration console Deploying QMetry & Notification Service 3.2 Update Notification URL 3.3 Steps to apply license file 3.4 Steps to configure poifiles for Export functionality 3.5 Setting robots.txt file on the server 3.6 Configuring SSL/TLS in Payara & QMetry Step 1: Change directory Step 2 : Generate key and csr file Step 3 : Fill information required for certificate request Step 4 : Give CSR to CA and get SSL Certificate Step 5 : Extract CA certificates Step 6 : Merge domain certificate and intermediate certificate Step 7 : Create PKCS12 keystore using openssl Step 8 : Now import PKCS12 keystore "qmetry.p12" to Java Keystore "keystore.jks" Step 9 : Now "keystore.jks" will have two certificates Step 10 : Update http listeners in payara admin console & change certificate Nick Name 3.7 Configure QMetry to run over HTTPS but you do not have SSL certificate available Documentation 3.8 Starting QMETRY 3.9 Verify QMetry URL 4 QMetry On-Demand 5 Contact QMetry Introduction These instructions have been updated for QMetry 7.0. Thank you for choosing QMetry as your Test Management Tool. This guide will help you walk through the installation steps and get your QM etry system up and running on Linux Operating System. This guide, and the accompanying software and other documentation are protected by U.S. and international copyright laws, and may be used only in accordance with the accompanying license agreement. Features of the software, and of other products and services of QMetry, may be covered by one or more of the following pending patents all rights reserved. The absence of a trademark from this list does not constitute a waiver of QMetry s intellectual property rights concerning that trademark. All other company, brand and product names may be trademarks or registered trademarks of their respective holders. QMetry disclaims any responsibility for specifying which marks are owned by which companies or which organizations. QMetry provides links to external third-party Web sites to help you find supplemental information. Site content and availability may change without notice. QMetry makes no representations or warranties whatsoever as to site content or availability QMetry. All rights reserved. Pre-requisites Hardware Requirements We offer support for new installations on the operating systems and architectures mentioned below: Page 1

2 Component Minimum Recommended Operating System RHEL 7/CentOS 7-64 bit CentOS 7-64 bit [ Note: QMetry Installation is certified on CentOS-7-x86_64-DVD-1511.is o] Memory 8 GB RAM 16 GB RAM Disk Space 250 GB HDD 500 GB HDD CPU 4 8 Processor 2.4 GHz or better 3.46 GHz Disk I/O 200MB/s 400MB/s Software Requirements JDK must be installed. The version of the JDK must be 1.8 To verify, run command: java -version on server Perl modules must be installed for Database. To install, run command: yum install perl-dbd-mysql.x86_64 Set JAVA_HOME and PATH on Linux If Java is not installed on server, then you can follow below steps to install java: To install Java Run command: yum install java openjdk To find path of installed Java Run command: which java to find out exact path to Java executable To set JAVA_HOME variable Run command: export JAVA_HOME=/usr/java/jdk1.8.0_131 (Note: You need to add the path of your Java installation directory) To set PATH variable Run command: export PATH=$PATH:$JAVA_HOME/bin To change above settings permanently which stays even after machine reboot Run command: sudo vi /etc/profile then add below two lines at last: export JAVA_HOME=/usr/java/jdk1.8.0_131(Note: Add the path of your Java installation directory) export PATH=$PATH:$JAVA_HOME/bin Save configuration with Esc + :wq! To verify Java Version Run command: java -version Set Java Cryptography Extension (JCE) Go to Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 8 Download for Java 1.8 Download the zip file "Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files " and extract it. There are two files under it: US_export_policy.jar and local_policy.jar Copy and Replace these files at $JAVA_HOME/jre/lib/security Installation Guide This guide describes step by step QMetry installation on Linux server. Before You Begin QMetry Version: QMetry should be running on a dedicated server. QMetry installation will install all of the services it needs. Verify that your server meets the requirements specified in Pre-requisites QMetry is not supported on any other version of Payara. If you already have Payara 4.1 installed be aware that if there are other applications already running on the Payara server performance issues might arise. We recommend a separate Payara server for QMetry. If you have already installed MySQL Database Server, then it must be MySQL 5.6 (Note: For existing MySQL, if there are other application databases installed, then performance issues might arise) Make sure no java or mysql process already running on server before starting installation Run command: ps aux grep java Run command: ps aux grep mysql Page 2

3 If found any services already running, kill them by running command: kill <process-id> We recommend to install QMetry with "qmetry" user under it's home directory. Run below commands to add "qmetry" user and group: groupadd qmetry useradd -g qmetry qmetry passwd qmetry Please make sure "qmetry" user has sudo access. It means "qmetry" user must have an entry in /etc/sudoers file. You can run below command: echo 'qmetry ALL=(ALL:ALL) ALL' >> /etc/sudoers Note: Infostretch regularly updates our components version after new versions are released. We do not expect new versions to cause any problems; however, it is important to ensure stability and quality. If a new version of a components is available and you would like to use it please contact us at support@qmetry.zendesk.com first. We will investigate to make sure that you will encounter no problems. Set System Parameters Verify ulimit by command ulimit -n if it is less than 2048 then apply the below command. Run command : ulimit -n 2048 Run command : vi /etc/sysctl.conf Add or update below values net.ipv4.ip_local_port_range = kernel.sem = Installing QMetry Download qmetry.zip (Reference URL : It contains database related files i.e. qmetry.sql & notification.sql. It contains applications related files i.e. eclipselink.zip, qmetry.ear, NotificationService.war & robots.txt Installing MySQL Go to Click on link : Looking for previous GA versions? Select Platform: Linux - Generic and version: 5.6.xx from the drop-downs. Click on Download for "Linux - Generic (glibc 2.5) (x86, 64-bit), Compressed TAR Archive" Click on "No thanks, just start my download." link available at the bottom of the page. This will start the download process. Once completed, you can transfer downloaded file under /opt/ directory on your server. You can follow below steps to install MySQL 5.6 on your server and run commands given for each step: a. Add "mysql" user and group with "root" user: i. userdel mysql ii. groupadd mysql iii. useradd -r -g mysql mysql iv. sudo mv /etc/my.cnf /etc/my_bak.cnf b. Extract and Install MySQL: i. ii. cd /opt/ tar zxvf mysql-5.6.xx-linux-glibc2.5-x86_64.tar.gz (Make sure you give correct name here as per your downloaded package) iii. ln -s /opt/mysql-5.6.xx-linux-glibc2.5-x86_64 mysql iv. cd mysql v. scripts/mysql_install_db --datadir=/opt/mysql/data c. Configure MySQL - Edit "my.cnf" and make sure [mysqld] section contains below given values: i. vi my.cnf [mysqld] port=3306 basedir=/opt/mysql datadir=/opt/mysql/data skip-external-locking lower_case_table_names=1 max_allowed_packet = 512M innodb_thread_concurrency=10 query_cache_limit= query_cache_type =1 table_definition_cache =2000 table_open_cache =2000 thread_cache_size =200 Page 3

4 thread_concurrency =200 group_concat_max_len = innodb_autoinc_lock_mode=2 binlog_format=row d. e. ii. Comment out below parameter: iii. Save the configuration: Esc + :wq! (Hit Enter) Install MySQL as a Service - execute below commands in sequence: i. cd /opt/mysql ii. sudo chown -R mysql:mysql. (Don't forget, there is dot at last, "." in this command) iii. sudo cp my.cnf /etc/ iv. sudo cp -rf /opt/mysql/bin/my_print_defaults /usr/bin/ v. sudo cp -rf /opt/mysql/support-files/mysql.server /etc/init.d/mysql vi. sudo chmod +x /etc/init.d/mysql vii. sudo chkconfig --add mysql viii. service mysql start QMetry Database Installation: i. Get the downloaded " ii. Get the downloaded " iii. iv. v. vi. transaction-isolation=read-committed #sql_mode=no_engine_substitution,strict_trans_tables qmetry.sql" file and put it under /opt/ notification.sql" file and put it under /opt/ To change root password for mysql database: /opt/mysql/bin/mysqladmin -u root password 'qmetry' Restore QMetry Database: /opt/mysql/bin/mysql -uroot -pqmetry < /opt/qmetry.sql Restore Notification Service Database: /opt/mysql/bin/mysql -uroot -pqmetry < /opt/ notification.sql Login to database and update domain name as follows: /opt/mysql/bin/mysql -uroot -pqmetry mysql> USE qmetry; mysql> UPDATE client SET domain='<your-server-ip-or-domain>:8080' limit 1; mysql> \q Installing Payara Server Go to Download "Payara Server Full 171" and Transfer it to server at /home/qmetry/ directory. Before installing Payara Application Server: a. b. c. Make sure Java installed and configured properly as mentioned in Set JAVA_HOME and PATH on Linux Free Ports Required: 4848 (Administration Console), 8080 (HTTP), 8081 (HTTPS) You can check this by running command: netstat -tlpn 4. Connect to the server with "qmetry" user. (OR you can run command: su qmetry to switch to "qmetry" user.) 5. Go to /home/qmetry/ directory and Unzip the file: unzip payara zip Payara Server 4.1 will be extracted into a new "payara41" directory under your current directory 6. Go to and select platform: "Platform Independent" a. Click on Download for "Platform Independent (Architecture Independent), Compressed TAR Archive" b. Click on "No thanks, just start my download." link available at the bottom of the page. This will start the download process. c. Transfer it to /home/qmetry/ directory on server and run below commands: i. tar zxvf mysql-connector-java-5.x.xx.tar.gz ii. sudo cp mysql-connector-java-5.x.xx/mysql-connector-java-5.x.xx-bin.jar payara41/glassfish/lib/ 7. Execute below commands in sequence: a. cd /home/qmetry/ b. chmod +x payara41/bin/asadmin c. payara41/bin/asadmin start-domain d. payara41/bin/asadmin --port 4848 change-admin-password [default username: admin default password is blank] e. payara41/bin/asadmin --port 4848 enable-secure-admin f. payara41/bin/asadmin stop-domain g. cd payara41/glassfish/domains/domain1/osgi-cache/felix h. rm -rf * 8. Get the downloaded " eclipselink.zip" file and transfer it to /home/qmetry/: a. cd /home/qmetry/ b. unzip eclipselink.zip c. sudo cp -rf eclipselink/*.jar payara41/glassfish/modules/ d. payara41/bin/asadmin start-domain 9. Launch web browser and Login to Administration Console : Go to Configurations > server-config > Logger Settings a. Set Maximum History Files = 20 b. Click on Save 11. Go to Configurations > server-config > JVM Settings > JVM Options a. Click on "Add JVM Option" and add or update below values i. -Duser.timezone=UTC ii. -server (Replace -client with -server value) iii. -Xmx2048m (Replace -Xmx512m with this new value) iv. -Xms1024m Page 4

5 12. v. -XX:PermSize=200m vi. -XX:MaxPermSize=512m (Replace -XX:MaxPermSize=192m with this new value) b. Click on Save Restart Payara server. To restart Payara server: payara41/bin/asadmin stop-domain payara41/bin/asadmin start-domain Moving Database resources out of the Application context Get the values of hostname, port, database name, username, password for Database connection. run command : #/payara41/bin/asadmin Script for generating Connection Pool note run command : create-jdbc-connection-pool --driverclassname com.mysql.jdbc.driver --restype java.sql.driver --property user= <user name> :password= <password> :url="jdbc\:mysql\:// <hostname> \: <port> / <database name>?zerodatetimebehavior\=converttonul l&autoreconnect\=true" qmetry-connection-pool Example : Values of <username> is root, <password> is qmetry, <hostname> is localhost, <port> is 3306 & <database name> i s qmetry then your command will be : create-jdbc-connection-pool --driverclassname com.mysql.jdbc.driver --restype java.sql.driver --property user= root:passwor d= qmetry:url="jdbc\:mysql\:// localhost\: 3306/ qmetry?zerodatetimebehavior\=converttonull&autoreconnect\=true" qmetry-connection-pool NOTE : Update the script by checking the values in glassfish-resources.xml Expected Output : Command create-jdbc-connection-pool executed successfully. Script to check the connection note run command : ping-connection-pool qmetry-connection-pool Expected Output : Command ping-connection-pool executed successfully. Script for generating datasource note run command : create-jdbc-resource --connectionpoolid qmetry-connection-pool jdbc/qmetry-ds Expected Output : JDBC resource jdbc/qmetry-ds created successfully. Command create-jdbc-resource executed successfully. Verification through Payara administration console Launch web browser and Login to Administration Console : Go to Resources>>JDBC>>JDBC Connection Pools Click on qmetry-connection-pool>>additional Properties Check the respective values. Deploying QMetry & Notification Service Get the downloaded " qmetry.ear" and " NotificationService.war" files and put it under /home/qmetry/ directory. Connect to server and run below commands: /home/qmetry/payara41/bin/asadmin asadmin>deploy / home/qmetry /qmetry.ear (Note: Enter admin username and password) Enter Admin Username> Enter Admin Password> asadmin>deploy / home/qmetry / NotificationService.war (Note: Enter admin username and password) Enter Admin Username> Enter Admin Password> asadmin>exit Run below commands to configure attachments: cd /home/qmetry/ mkdir attachments Update Notification URL Update client table with the Notification URL by running below query : Case-1 : If QMetry is running on port 80, then run query : UPDATE client set DomainURL = ' OR IP]/ NotificationService ' ; Case-2 : If QMetry is running on port 8080, then run query : UPDATE client set DomainURL = ' QMetry_URL O R IP ]:8080/ NotificationService' ; NOTE : Don't use / backward slash at the end of the _notification_url. Page 5

6 Steps to apply license file Once you have received your license file from support, follow the below steps to apply it to your server: Place license file "license.key" at "payara41/glassfish/domains/domain1/config" Restart payara server. To restart payara server: payara41/bin/asadmin stop-domain payara41/bin/asadmin start-domain Steps to configure poifiles for Export functionality Connect to server and run below commands: cd /tmp/ mkdir poifiles chmod +x poifiles Setting robots.txt file on the server Get the downloaded " robots.txt" file. Put it in the folder : /opt/payara41/glassfish/domains/domain1/docroot/ Configuring SSL/TLS in Payara & QMetry 1 Step 1 to 11 are for installation & configuration SSL Certificates. Prerequisite : Payara uses master admin password as "changeit" (default password). If you wish to change the password then you need to update Payara master admin password. Step 1: Change directory Command : cd /opt/payara41/glassfish/domains/domain1/config/ Step 2 : Generate key and csr file Command : openssl req -new -newkey rsa:2048 -nodes -keyout qmetry.key -out qmetry.csr * Here we have used default password ( changeit ) Step 3 : Fill information required for certificate request. Country Name (2 letter code) [XX]:US State or Province Name (full name) []:California Locality Name (eg, city) [Default City]:Santa Clara Organization Name (eg, company) [Default Company Ltd]:Infostretch Corporation Organizational Unit Name (eg, section) []:QMetry Common Name (eg, your name or your server's hostname) []:*.qmetry.com Address []: sr.it@ infostretch.com Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []:changeit An optional company name []:QMetry Step 4 : Give CSR to CA and get SSL Certificate Page 6

7 Step 5 : Extract CA certificates Go to /opt/payara41/glassfish/domains/domain1/config/ Command : unzip AllCerts.zip Step 6 : Merge domain certificate and intermediate certificate Command : cat certs/star_qmetry_com.crt certs/digicertca.crt certs/trustedroot.crt > qmetry.crt Step 7 : Create PKCS12 keystore using openssl Command : openssl pkcs12 -export -in qmetry.crt -inkey qmetry.key -out qmetry.p12 -name qmetry.com Step 8 : Now import PKCS12 keystore "qmetry.p12" to Java Keystore "keystore.jks" Command : keytool -importkeystore -deststorepass changeit -destkeypass changeit -destkeystore keystore.jks -srckeystore qmetry.p12 -srcstoretype PKCS12 -srcstorepass changeit -alias qmetry.com Step 9 : Now "keystore.jks" will have two certificates payara41's self-signed certificate with Nickname : s1as CA certified certificate with Nickname : qmetry.com Step 10 : Update http listeners in payara admin console & change certificate Nick Name Open Payara admin console Browse: Click on Configuration -> Server-config -> http listener2 and General tab change port number 8181 to 443 then click on SSL tab change certificate Nick Name s1as to qmetry.com or your appropriate domain name. Click on Configuration -> Server-config -> admin listener and General tab change port number 8080 to 443 then click on SSL tab change certificate Nick Name s1as to qmetry.com or your appropriate domain name Page 7

8 Save and restart Payara services Note: If you intend to integrate JIRA with QMetry, while JIRA running on HTTPS, QMetry is also required to run on HTTPS to make the linkage between JIRA and QMetry to work properly. Configure QMetry to run over HTTPS but you do not have SSL certificate available 1 By default, http-listener-2 is configured in Payara in server-config. The port set is 8181 as shown in the below image. Payara Configuration Page 8

9 If one tries to access the QMetry application, e.g. URL then QMetry login page opens as below. When you enter the credentials, an error message Invalid Client pop's up, as highlighted in below mentioned image. QMetry Invalid client error To solve this issue, the domain URL has to be set in the client table in QMetry database as follow : Login to database and update domain name as follows: /opt/mysql/bin/mysql -uroot -pqmetry mysql> USE qmetry; mysql> UPDATE client SET domain='localhost:8181' limit 1; mysql> \q If ports used for QMetry are : 80 for HTTP & 443 for HTTPS, then port number will not present in the domain URL, so no change is required in the domain URL. Documentation The documentation regarding Certificates & SSL in Glassfish 4.0 Open Source edition(same document applies for Payara 4.1) is in the Secur ity Guide, in the following sections: Page 9

10 Section Certificates and SSL, page 1-10 Section Firewalls, page 1-9 If mod_jk is being used, then the relevant documentation is in the Glassfish Administration Guide, section Administering mod_jk. Reference link for Glassfish( same document applies for Payara 4.1) documentation : Starting QMETRY You can access QMETRY from any computer with network access to your QMETRY server by opening a supported web browsers on the computer and visiting this URL: where: <domain_name> is the name which you gave at the time of installation. The default QMetry Login Credentials are: admin/qmetry1@#4, automation/qmetry1@#4 Verify QMetry URL If your QMetry is running on secure http protocol then enable the option of HTTPS. Go to Admin>>General settings>>secure Http settings. Enable the checkbox of HTTPS. QMetry On-Demand If you do not have the resources to set up and maintain a QMetry installation locally, consider QMetry hosted solution. We can run and maintain your installation of QMetry, handling all the testing, monitoring and upgrading processes for you. For more information, please refer to the information about QMetry On-Demand on our website. Contact QMetry Please contact QMetry if you face any issues during installation. You can us at support@qmetry.zendesk.com which will automatically create a ticket in our support portal which will allow all of us to monitor the status on the issue until it is resolved. 1:Note: If you intend to integrate JIRA with QMetry, while JIRA running on HTTPS, QMetry is also required to run on HTTPS to make the linkage between JIRA and QMetry to work properly. Page 10

eroaming platform Secure Connection Guide

eroaming platform Secure Connection Guide eroaming platform Secure Connection Guide Contents 1. Revisions overview... 3 2. Abbrevations... 4 3. Preconditions... 5 3.1. OpenSSL... 5 3.2. Requirements for your PKCS10 CSR... 5 3.3. Java Keytool...

More information

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.10, 2018.06, AND 5.1.0 DU-07754-001 _v7.0 through 7.2 March 2019 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server...

More information

Dell Protected Workspace Management

Dell Protected Workspace Management Dell Protected Workspace Management Upgrade Guide Dell Protected Workspace Management v4.1 Created and Maintained by Invincea, Inc. Proprietary For Customer Use Only Dell Protected Workspace Management

More information

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at Document Date: May 16, 2017 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL

More information

Creating and Installing SSL Certificates (for Stealthwatch System v6.10)

Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Copyrights and Trademarks 2017 Cisco Systems, Inc. All rights reserved. NOTICE THE SPECIFICATIONS AND INFORMATION REGARDING THE

More information

Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface

Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface Release 7.1 Revised: March 5, 2013 1:53 pm This document describes the

More information

Using ISE 2.2 Internal Certificate Authority (CA) to Deploy Certificates to Cisco Platform Exchange Grid (pxgrid) Clients

Using ISE 2.2 Internal Certificate Authority (CA) to Deploy Certificates to Cisco Platform Exchange Grid (pxgrid) Clients Using ISE 2.2 Internal Certificate Authority (CA) to Deploy Certificates to Cisco Platform Exchange Grid (pxgrid) Clients Author: John Eppich Table of Contents About this Document... 4 Using ISE 2.2 Internal

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

SSL Configuration Oracle Banking Liquidity Management Release [April] [2017]

SSL Configuration Oracle Banking Liquidity Management Release [April] [2017] SSL Configuration Oracle Banking Liquidity Management Release 12.4.0.0.0 [April] [2017] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP SSL ON ORACLE

More information

Installing Cisco Insight v2

Installing Cisco Insight v2 CHAPTER 2 Revised: December 22, 2010, This chapter contains the following sections: Downloading the Installation Package, page 2-2, page 2-2 Configuring the Application, page 2-8 Checking the Installation,

More information

Upgrade Tool Guide. July

Upgrade Tool Guide. July Upgrade Tool Guide July 2015 http://www.liveaction.com 4.X to 5.0 The Upgrade Guide from 4.X to 5.0 consists of three parts: Upgrading the LiveAction Server Upgrading the LiveAction Node Upgrading the

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux)

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition

More information

VMware AirWatch Content Gateway Guide for Linux For Linux

VMware AirWatch Content Gateway Guide for Linux For Linux VMware AirWatch Content Gateway Guide for Linux For Linux Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

SAML 2.0 SSO. Set up SAML 2.0 SSO. SAML 2.0 Terminology. Prerequisites

SAML 2.0 SSO. Set up SAML 2.0 SSO. SAML 2.0 Terminology. Prerequisites SAML 2.0 SSO Agiloft integrates with a variety of SAML authentication providers, or Identity Providers (IdPs). SAML-based SSO is a leading method for providing federated access to multiple applications

More information

Entrust Connector (econnector) Venafi Trust Protection Platform

Entrust Connector (econnector) Venafi Trust Protection Platform Entrust Connector (econnector) For Venafi Trust Protection Platform Installation and Configuration Guide Version 1.0.5 DATE: 17 November 2017 VERSION: 1.0.5 Copyright 2017. All rights reserved Table of

More information

Release Date October 12, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date October 12, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide for Linux and Solaris Release Date October 12, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All

More information

Installation and Configuration Guide (for Linux)

Installation and Configuration Guide (for Linux) v5.2 MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition to the procedures for upgrading,

More information

vcenter CapacityIQ Installation Guide

vcenter CapacityIQ Installation Guide vcenter CapacityIQ 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

WEM Installation Manual Version 1.0. Samsung Wireless Enterprise Manager (WEM) Installation Manual

WEM Installation Manual Version 1.0. Samsung Wireless Enterprise Manager (WEM) Installation Manual Samsung Wireless Enterprise Manager (WEM) Installation Manual COPYRIGHT This manual is proprietary to SAMSUNG Electronics America, and is protected by copyright. No information contained herein may be

More information

How to convert.crt SSL Certificate to.pfx format (with openssl Linux command) and Import newly generated.pfx to Windows IIS Webserver

How to convert.crt SSL Certificate to.pfx format (with openssl Linux command) and Import newly generated.pfx to Windows IIS Webserver How to convert.crt SSL Certificate to.pfx format (with openssl Linux command) and Import newly generated.pfx to Windows IIS Webserver Author : admin 1. Converting to.crt to.pfx file format with OpenSSL

More information

Wildcard Certificates

Wildcard Certificates Wildcard Certificates Importing PKCS#12 and.pfx files Important: GoPrint requires the certificate chain password to be trustno1 When importing certificates into the Java Keystore generated on another certificate

More information

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide Release Date September 30, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved.

More information

CA Agile Central Installation Guide On-Premises release

CA Agile Central Installation Guide On-Premises release CA Agile Central Installation Guide On-Premises release 2016.2 Agile Central to Go 2017.1 rallysupport@rallydev.com www.rallydev.com 2017 CA Technologies (c) 2017 CA Technologies Version 2016.2 (c) Table

More information

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway VMware AirWatch Content Gateway for Linux VMware Workspace ONE UEM 1811 Unified Access Gateway You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Version 2.3 User Guide

Version 2.3 User Guide V Mware vcloud Usage Meter Version 2.3 User Guide 2012 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. This product is covered

More information

VMware AirWatch Cloud Connector Guide ACC Installation and Integration

VMware AirWatch Cloud Connector Guide ACC Installation and Integration VMware AirWatch Cloud Connector Guide ACC Installation and Integration Workspace ONE UEM v1810 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

X-road MISP2 installation and configuration guide. Version 1.20

X-road MISP2 installation and configuration guide. Version 1.20 X-road MISP2 installation and configuration guide Version 1.20 Contents 1. Introduction... 3 2. Environment requirements... 3 3.MISP2 Installation... 3 3.1. Java... 3 3.2. PostgreSQL... 3 3.3. Apache Tomcat

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

CA Agile Central Administrator Guide. CA Agile Central On-Premises

CA Agile Central Administrator Guide. CA Agile Central On-Premises CA Agile Central Administrator Guide CA Agile Central On-Premises 2018.1 Table of Contents Overview... 3 Server Requirements...3 Browser Requirements...3 Access Help and WSAPI...4 Time Zone...5 Architectural

More information

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 SP2 Installation Guide Release Date April 9, 2010 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved. Trademarks

More information

Red Hat Development Suite 2.1

Red Hat Development Suite 2.1 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Last Updated: 2017-12-06 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Petra

More information

SSL Configuration: an example. July 2016

SSL Configuration: an example. July 2016 SSL Configuration: an example July 2016 This document details a walkthrough example of SSL configuration in an EM managed mongodb environment. SSL certificates are used to enforce certificate based security

More information

McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012

McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012 McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012 Order Number: 326712-005US COPYRIGHT Copyright 2012 McAfee, Inc. Do not copy without permission. TRADEMARK

More information

Manually Installing Jamf Pro or Later

Manually Installing Jamf Pro or Later Manually Installing Jamf Pro 10.0.0 or Later Red Hat Enterprise Linux, Ubuntu LTS Server, and Windows Server 5 October 2017 copyright 2002-2017 Jamf. All rights reserved. Jamf has made all efforts to ensure

More information

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS Acronis Backup Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS For Linux Server INSTALLATION GUIDE Copyright Statement Copyright Acronis International GmbH, 2002-2015. All rights reserved. Acronis

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Oracle WebLogic Server (WLS) 11gR1 ( and ) Installation on Oracle Linux 5 and 6

Oracle WebLogic Server (WLS) 11gR1 ( and ) Installation on Oracle Linux 5 and 6 1 of 11 8/25/2016 11:19 AM Back to normal view: https://oracle-base.com/articles/11g/oracle-weblogic-server-11gr1-1036-installation-on-oracle-linux-5-and-6-11gr1 Oracle WebLogic Server (WLS) 11gR1 (10.3.5

More information

Aware IM Version 8.1 Installation Guide

Aware IM Version 8.1 Installation Guide Aware IM Version 8.1 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS 1 INSTALLATION UNDER WINDOWS OPERATING SYSTEM... 3 1.1 HARDWARE AND SOFTWARE REQUIREMENTS... 3 1.2 USING THE INSTALLATION PROGRAM...

More information

VMware AirWatch Content Gateway Guide For Linux

VMware AirWatch Content Gateway Guide For Linux VMware AirWatch Content Gateway Guide For Linux AirWatch v9.2 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. This product

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3. Installing and Configuring VMware Identity Manager Connector 2018.8.1.0 (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on

More information

How to Enable Client Certificate Authentication on Avi

How to Enable Client Certificate Authentication on Avi Page 1 of 11 How to Enable Client Certificate Authentication on Avi Vantage view online Overview This article explains how to enable client certificate authentication on an Avi Vantage. When client certificate

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.2.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite 1100

More information

Server software page. Certificate Signing Request (CSR) Generation. Software

Server software page. Certificate Signing Request (CSR) Generation. Software Server software page Certificate Signing Request (CSR) Generation Software Apache (mod_ssl and OpenSSL)... 2 cpanel and WHM... 3 Microsoft Exchange 2007... 8 Microsoft Exchange 2010... 9 F5 BigIP... 13

More information

QuickStart Guide for Managing Computers. Version 9.73

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

More information

Oracle Endeca Information Discovery Integrator

Oracle Endeca Information Discovery Integrator Oracle Endeca Information Discovery Integrator Integrator Version 3.0.0 Rev. A May 2013 Copyright and disclaimer Copyright 2003, 2013, Oracle and/or its affiliates. All rights reserved. Oracle and Java

More information

1Integrate for ArcGIS Installation Guide. Server Edition

1Integrate for ArcGIS Installation Guide. Server Edition 1Integrate for ArcGIS Installation Guide Server Edition Product version: v 2.1 Document version: v 1.9 Document date: 03/08/2018 Copyright 2018 1Spatial plc and its affiliates. All rights reserved. Other

More information

StreamServe Persuasion SP4 StreamStudio

StreamServe Persuasion SP4 StreamStudio StreamServe Persuasion SP4 StreamStudio Administrator s guide Rev A StreamServe Persuasion SP4 StreamStudio Administrator s guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Oracle Tuxedo System and Application Monitor (TSAM)

Oracle Tuxedo System and Application Monitor (TSAM) Oracle Tuxedo System and Application Monitor (TSAM) Deployment Guide 11g Release 1 (11.1.1.2) July 2011 Oracle Tuxedo System and Application Monitor (TSAM) Deployment Guide, 11g Release 1 (11.1.1.2) Copyright

More information

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP DEPLOYMENT GUIDE Deploying Rubrik Datos IO to Protect MongoDB Database on GCP TABLE OF CONTENTS INTRODUCTION... 1 OBJECTIVES... 1 COSTS... 2 BEFORE YOU BEGIN... 2 PROVISIONING YOUR INFRASTRUCTURE FOR THE

More information

HySecure Quick Start Guide. HySecure 5.0

HySecure Quick Start Guide. HySecure 5.0 HySecure Quick Start Guide HySecure 5.0 Last Updated: 25 May 2017 2012-2017 Propalms Technologies Private Limited. All rights reserved. The information contained in this document represents the current

More information

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM This guide details the steps required to install and configure MySQL on a CentOS VM Introduction The FUJITSU Cloud Service

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

AppSpace Installation Guide. Release 4.1.1

AppSpace Installation Guide. Release 4.1.1 AppSpace Installation Guide Release 4.1.1 Disclaimer Information in this document is subject to change without notice. Copyright 2012 Nexus On-Demand All rights reserved. No part of this publication may

More information

Creating an authorized SSL certificate

Creating an authorized SSL certificate Creating an authorized SSL certificate for MeetingSphere Meeting Center Server MeetingSphere Meeting Center Server requires an authorized SSL certificate by which its Meeting center is identified, and

More information

Dialogic PowerVille LB Load Balancer for Real-Time Communications

Dialogic PowerVille LB Load Balancer for Real-Time Communications Dialogic PowerVille LB Load Balancer for Real-Time Communications Quick Start Guide July 2016 Rev 1.3 www.dialogic.com Copyright and Legal Notice Copyright 2016 Dialogic Corporation. All Rights Reserved.

More information

XMediusFAX Sharp OSA Connector Administration Guide

XMediusFAX Sharp OSA Connector Administration Guide WWW.XMEDIUS.COM XMediusFAX Sharp OSA Connector 4.1.0 Administration Guide XMediusFAX Sharp OSA Connector Version Number 4.1.0.76 March 2016. Patents Protected by US Patents 4,994,926; 5,291,302; 5,459,584;

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

QuickStart Guide for Managing Mobile Devices. Version

QuickStart Guide for Managing Mobile Devices. Version QuickStart Guide for Managing Mobile Devices Version 10.1.0 copyright 2002-2017 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite

More information

SecureAssist Enterprise Portal User Guide August 2016

SecureAssist Enterprise Portal User Guide August 2016 SecureAssist Enterprise Portal User Guide August 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6.

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6. Dell EMC Data Domain Operating System and Gemalto KeySecure Version 6.1 DD OS and Gemalto KeySecure Integration P/N 302-003-978 REV 01 June 2017 This document describes how to configure Gemalto KeySecure

More information

StreamSets Control Hub Installation Guide

StreamSets Control Hub Installation Guide StreamSets Control Hub Installation Guide Version 3.2.1 2018, StreamSets, Inc. All rights reserved. Table of Contents 2 Table of Contents Chapter 1: What's New...1 What's New in 3.2.1... 2 What's New in

More information

User guide NotifySCM Installer

User guide NotifySCM Installer User guide NotifySCM Installer TABLE OF CONTENTS 1 Overview... 3 2 Office 365 Users synchronization... 3 3 Installation... 5 4 Starting the server... 17 2 P a g e 1 OVERVIEW This user guide provides instruction

More information

Installing Connector on Linux

Installing Connector on Linux CHAPTER 3 Revised: July 15, 2010 Overview This chapter provides a step-by-step guide to installing the Linux Connector on x86 and x86-64 servers running either Red Hat Enterprise Linux version 5 or Cent

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

ECP. Installation Guide V4.2.0

ECP. Installation Guide V4.2.0 Unicorn 2016 Unicorn Systems a.s. Jankovcova 1037/49, CZ 170 00 Prague 7 Project: Project Subject: Document Title: ECP Date: Author: 1.11.2016 Jakub Eliáš, Aleš Holý, Zdeněk Pospíšil, Josef Brož, Jiří

More information

Connectware Manager Getting Started Guide

Connectware Manager Getting Started Guide Connectware Manager Getting Started Guide 90000699_B 2004, 2005 Digi International Inc. Digi, Digi International, the Digi logo, the Digi Connectware log, the Making Device Networking Easy logo, Digi

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

VMware AirWatch Integration with RSA PKI Guide

VMware AirWatch Integration with RSA PKI Guide VMware AirWatch Integration with RSA PKI Guide For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. This product

More information

QuickStart Guide for Managing Computers. Version 9.32

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

More information

MARWATCH INSTALLATION AND UPGRADE GUIDE

MARWATCH INSTALLATION AND UPGRADE GUIDE MARWATCH INSTALLATION AND UPGRADE GUIDE For Service Providers RELEASE 5.0 Introduction Notice The information contained in this document is believed to be accurate in all respects but is not warranted

More information

PowerSchool Student Information System

PowerSchool Student Information System PowerTeacher Gradebook Installation and Setup Guide PowerSchool Student Information System Released December 8, 2008 Document Owner: Documentation Services This edition applies to Release 1.5 of the PowerTeacher

More information

Mercury QuickTest Professional. Installation Guide Version 9.0

Mercury QuickTest Professional. Installation Guide Version 9.0 Mercury QuickTest Professional Installation Guide Version 9.0 Mercury QuickTest Professional Installation Guide, Version 9.0 This manual, and the accompanying software and other documentation, is protected

More information

Avaya Callback Assist Application Notes for HTTPS Configuration

Avaya Callback Assist Application Notes for HTTPS Configuration Avaya Callback Assist Application Notes for HTTPS Configuration Release 4.4.1.0 August 2016 2015-2016 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information

More information

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Sep 14 Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Z e p h y r, 7 7 0 7 G a t e w a y B l v d, S u i t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A Zephyr 4.6 Installation on RedHat Enterprise

More information

Bitnami JFrog Artifactory for Huawei Enterprise Cloud

Bitnami JFrog Artifactory for Huawei Enterprise Cloud Bitnami JFrog Artifactory for Huawei Enterprise Cloud Description JFrog Artifactory is a Binary Repository Manager for Maven, Ivy, Gradle modules, etc. Integrates with CI servers for fully traceable builds.

More information

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.06 AND 5.1.0 DU-07754-001 _v6.0 through 6.2 July 2018 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server... 1 1.1. Overview

More information

SSL/TLS Certificate Generation

SSL/TLS Certificate Generation SSL/TLS Certificate Generation Last updated: 11/01/2016 Table of contents 1 INTRODUCTION...3 2 PROCEDURES...4 2.1 Creation and Installation...4 2.2 Conversion of an Existing Certificate Chain Available

More information

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312)

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) Adeptia Server 4.9 Installation Guide Version 1.2 Release Date March 10, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) 229-1727 Copyright Copyright 2000-2008 Adeptia,

More information

Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1

Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1 Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1 Overview This document provides information about installing Cisco Video Surveillance Manager (VSM), which includes Cisco Video Surveillance

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

Bitnami Dolibarr for Huawei Enterprise Cloud

Bitnami Dolibarr for Huawei Enterprise Cloud Bitnami Dolibarr for Huawei Enterprise Cloud Description Dolibarr is an open source, free software package for small and medium companies, foundations or freelancers. It includes different features for

More information

Isilon InsightIQ. Version Installation Guide

Isilon InsightIQ. Version Installation Guide Isilon InsightIQ Version 4.1.0 Installation Guide Copyright 2009-2016 EMC Corporation All rights reserved. Published October 2016 Dell believes the information in this publication is accurate as of its

More information

Scoreboard 2.16 Installation Guide. For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit

Scoreboard 2.16 Installation Guide. For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit Scoreboard 2.16 Installation Guide For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit Updated November 10, 2016 1 Scoreboard and Connect By Spider Strategies Minimum Server Requirements The

More information

Isilon InsightIQ. Version Installation Guide

Isilon InsightIQ. Version Installation Guide Isilon InsightIQ Version 4.0.1 Installation Guide Copyright 2009-2016 EMC Corporation. All rights reserved. Published in the USA. Published May, 2016 EMC believes the information in this publication is

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide January 2009 Copyright Notice 2005-2009 LifeSize Communications Inc, and its licensors. All rights reserved. LifeSize Communications has made every effort to ensure

More information

SecureAssist Enterprise Portal User Guide March 2016

SecureAssist Enterprise Portal User Guide March 2016 SecureAssist Enterprise Portal User Guide March 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

Novell Access Manager

Novell Access Manager Quick Start AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP2 June 11, 2010 www.novell.com Novell Access Manager 3.1 SP2 Quick Start Legal Notices Novell, Inc., makes no representations or warranties

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

VMware Content Gateway to Unified Access Gateway Migration Guide

VMware Content Gateway to Unified Access Gateway Migration Guide VMware Content Gateway to Unified Access Gateway Migration Guide Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

SecureAssist Enterprise Portal User Guide June 2016

SecureAssist Enterprise Portal User Guide June 2016 SecureAssist Enterprise Portal User Guide June 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved Installation and Setup Instructions For version 06.11.2009 Copyright 2009 Code 42 Software, Inc. All rights reserved About This Guide This guide shows you how to install, activate and back up with CrashPlan

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate In this example we are using apnictraining.net as domain name. # super user command. $ normal user command. N replace with your group

More information

FortiNAC. Analytics SSL Certificates. Version: 5.x Date: 8/28/2018. Rev: D

FortiNAC. Analytics SSL Certificates. Version: 5.x Date: 8/28/2018. Rev: D FortiNAC Analytics SSL Certificates Version: 5.x Date: 8/28/2018 Rev: D 1 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET KNOWLEDGE BASE http://kb.fortinet.com

More information

DIGIOP ELEMENTS V8.7 NVR Software-only Installation Guide

DIGIOP ELEMENTS V8.7 NVR Software-only Installation Guide DIGIOP ELEMENTS V8.7 NVR Software-only Installation Guide About this installation guide Use this document as a guide to install your DIGIOP ELEMENTS NVR software system. It includes procedures to install

More information

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 CENTOS 6.0 SUPPORT Contents 1 Prerequisites: CentOS 6.0 3 1.1 System Requirements.............................. 3 1.2 SELinux....................................... 3

More information

Dynamic Work Order System (DWOS) Installation Guide

Dynamic Work Order System (DWOS) Installation Guide Dynamic Work Order System (DWOS) Installation Guide The Future of Job Shop Software 4506 Hwy. 20 Suite 200 Niceville, FL 32578 Phone (800) 725-7304 Support@ds2corp.com www.getdwos.com Copyright Notice

More information