Deploy In-Memory Parallel Graph Analytics (PGX) to Oracle Java Cloud Service (JCS)

Size: px
Start display at page:

Download "Deploy In-Memory Parallel Graph Analytics (PGX) to Oracle Java Cloud Service (JCS)"

Transcription

1 Deploy In-Memory Parallel Graph Analytics (PGX) to Oracle Java Cloud Service (JCS) Overview This document provides detailed steps required to deploy PGX to Java Cloud Service Instance. This exercise is based on Oracle Spatial and Graph Property Graph ; steps may vary if you are using another database version. The following tasks are covered: Create an Oracle Java Cloud Service (JCS) instance Download and Deploy the PGX onto the above JCS instance Download and install the certificate of the HTTPS/SSL based server Connect to the PGX server using SSL Run graph analytics against the remote PGX server Before You Get Started Become familiar with JCS, Oracle Spatial and Graph, as well as Oracle Spatial and Graph Property Graph capabilities JCS Help Center ( Oracle Spatial and Graph ( /index.html ) Oracle Spatial and Graph Property Graph capabilities ( ) Obtain an Oracle Cloud subscription or trial account including Java Cloud Service (JCS) Available at

2 Create an Oracle Java Cloud Service (JCS) instance Sign in to your Oracle Cloud account With your account welcome handy, navigate to at Select the Data Center listed in your welcome and click My Services Enter the Identity Domain listed in your welcome and continue Enter your username and password listed in your welcome and sign in If this is your first time signing in, follow the instructions to change your password You will be taken to your Dashboard listing your available services: Click the Action Menu for Java and select Open Service Console. If you do not see the Java in Dashboard, click in Customize Dashboard and set Java to show. Click Create Service > Java Cloud Service

3 Service step: Provide a Service Name and optional Service Description Select Oracle Java Cloud Service as Service Level, as Software Release, Enterprise Edition as Software Edition Click Next

4 Create Server details steps: Under WebLogic Configuration Select a Compute Shape, here we select the lowest one for this document purpose For SSH Public Key, click Edit and then Browse to select the Public Key you created earlier or you can create one by select Create a New key For this exercise, we can leave cluster size as 1 Under WebLogic Access, provide a password for the weblogic user (i.e. admin user) Expand Advanced Settings Check the option to Enable access to Administrative Consoles Leave Domain Partitions as 0 Optionally uncheck the option to Deploy Sample Application Under Database Configuration For Name, select your DBCS instance from the pull-down menu For Administrator Username, enter sys For password, enter the administrator password you chose when creating your DBCS instance Under Load Balancer, leave response as no Under Backup and Recovery For Backup Destination, select Both Cloud Storage and Local Storage Enter a Cloud Storage Container name as we did when creating DBCS instance, for example: Enter your cloud account Username and Password Check the box to Create Cloud Storage Container if this is a new container

5 Click Next Confirm step Observe conformation of backup container creation If you checked the create new container box Verify other settings Click Create

6 It may take 20 to 30 minutes to create the instance; it will send notice to the mail box that you entered. To monitor progress, click the refresh button (circular arrow button to the right of the As of date-time) Once the service has been created, click on the service name to view details Observe details and note the Public IP of our JCS instance

7 (Optional) Enable 7002 port to be allowed to access WebLogic console if you didn t select this when you create the service. Click the button to the right of your JCS name and select Open WebLogic Server Console

8 You should see the WebLogic Server Console log in page.

9 Download and Deploy PGX to JCS instance Download the Oracle Big Data Spatial and Graph with this link: Unzip the file and locate the pgx war file, pgx-webapp-wls.war, under folder: md/property_graph/pgx/server/ In your browser Open WebLogic Server Console log in page Log in with the user weblogic and the password you defined when creating the instance. At the top left, click the button Lock & Edit On the left under Domain Structure, click Deployments In the middle under Deployments, click Install Above the Path textbox, click the link to Upload your file(s)

10 Next to Deployment Archive, click Browse and open pgx-webapp-<version>-wls.war which you downloaded earlier Click Next and wait for the upload to complete. Upload % complete is displayed on the lower left corner of your browser When complete you will see a message indicating upload successful.

11 Click Next Under Choose installation type and scope, leave the default selection ( Install this deployment as an application ) Click Next Under Servers check the JCS1_dom_adminserver, you can also use the clusters and check all servers in the cluster Click Next Under General, leave the name as it is Click Next Under Additional Configuration leave default ( Yes, take me to the deployment's configuration screen. ) Click Finish At top left, click button Activate Changes In the middle under Settings for pgx-webapp-name, click the tab Control Check the box next to pgx-webapp-name Click on the menu Start and select Servicing all requests

12 Click Yes when prompted to confirm You should now see pgx state is Active Congratulation! The PGX server is now deployed to Java Cloud Service and ready to be used with your PGX client instance for development.

13 Connect to the PGX server using HTTPS/SSL Download the server side certificate Simply used Firefox, connected to the SSL-based endpoint, and exported the certificate. You may refer to the following screenshot to download the pgx server side self-signed certification, note the host name, you will need to add this to your client hosts file. Add the server side certificate to your client* key store Create an empty keystore The following example command creates a keystore.jks. It will ask a few questions along the way but those are very straightforward. You definitely want to use a much stronger password than "changeit". keytool -genkey -keyalg RSA -alias selfsigned -keystore keystore.jks -storepass changeit -validity 360 -keysize 2048 Import the server side certificate to the above keystore keytool -import -trustcacerts -alias DemoCertFor_JCS1_domain -file <YOUR_CERTIFICATE_FILE_HERE> -keystore keystore.jks Specify the keystore for your client

14 For example, if you are using the built-in Groovy, you can add the following to the JAVA_OPTIONS setting in gremlin-opg-rdbms.sh. -Djavax.net.ssl.trustStore=/home/oracle/keystore.jks -Djavax.net.ssl.trustStorePassword=changeit Or run below scripts with your console export JAVA_OPTIONS="$JAVA_OPTIONS -Djavax.net.ssl.trustStore=/home/oracle/jcs_final/keysto re.jks -Djavax.net.ssl.trustStorePassword=changeit" Configure the client hosts file for the connection Because the self signed certificate uses host name instead of IP address, user needs to modify the client side hosts file to translate the specified host name to an IP address, you can follow the below steps to complete this operation 1, Login to the client machine 2, Open the /etc/hosts file (assume client system is Linux based) 3, Add one line like below to the end of the file and save the change <YOUR_IP_ADDRESS> <YOUT_HOST_NAME> You may refer to another post for this topic: ce-endpoint Now it is time to test the secure connection to the PGX server from your client. cd $ORACLE_HOME/md/property_graph/dal/groovy sh./gremlin-opg-rdbms.sh cfg =GraphConfigBuilder.forPropertyGraphRdbms().setJdbcUrl("jdbc:o 521)(PROTOCOL=tcp))(CONNECT_DATA=(SERVICE_NAME=PDB1.uspm020.or aclecloud.internal)))").setusername("scott").setpassword("<you R_PASSWORD_HERE>").setName("connections").setMaxNumConnections (8).setLoadEdgeLabel(false).addVertexProperty("name",PropertyT ype.string, "default_name").addedgeproperty("cost",propertytype.double, " ").build(); opg = OraclePropertyGraph.getInstance(cfg); opg.clearrepository(); // start from scratch opgdl=oraclepropertygraphdataloader.getinstance(); vfile="../../data/connections.opv" //vertex flat file efile="../../data/connections.ope" //edge flat file opgdl.loaddata(opg, vfile, efile, 2,10000, true, null); session=pgx.createsession(" "session-id-1231");

15 opg-nosql> analyst=session.createanalyst(); opg-nosql> pgxgraph = session.readgraphwithproperties(opg.getconfig(),true); //count triangles analyst.counttriangles(pgxgraph, true); //pgql pgxresultset = pgxgraph.querypgql("select n.company,m WHERE (n WITH company='koch Industries')->(m)->(n), n!=m") pgxresultset.print(10); n m PgxVertex[ID=2] PgxVertex[ID=1] PgxVertex[ID=3] PgxVertex[ID=1] PgxVertex[ID=6] PgxVertex[ID=1] PgxVertex[ID=7] PgxVertex[ID=1] PgxVertex[ID=8] PgxVertex[ID=1] PgxVertex[ID=9] PgxVertex[ID=1] PgxVertex[ID=10] PgxVertex[ID=1] PgxVertex[ID=11] PgxVertex[ID=1] PgxVertex[ID=12] PgxVertex[ID=1] PgxVertex[ID=19] PgxVertex[ID=1] *A PGX client could be any machine with the database (12.2 or above) installed.

How To Enable Oracle Database Cloud Service with Property Graph Capabilities

How To Enable Oracle Database Cloud Service with Property Graph Capabilities How To Enable Oracle Database Cloud Service with Property Graph Capabilities Overview This document provides detailed steps required to use the property graph capabilities in Oracle Database Cloud Service.

More information

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Overview The Map Visualization Component is a development toolkit packaged with Oracle Spatial and Graph for incorporating interactive

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

My First Day with Oracle SOA Cloud Service

My First Day with Oracle SOA Cloud Service My First Day with Oracle SOA Cloud Service 1 Provisioning Oracle SOA Cloud Service Introduction Before beginning this portion of the tutorial, you should have already completed these OBEs: Creating a Secure

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Assuming you have Icinga 2 installed properly, and the API is not enabled, the commands will guide you through the basics:

Assuming you have Icinga 2 installed properly, and the API is not enabled, the commands will guide you through the basics: Icinga 2 Contents This page references the GroundWork Cloud Hub and the Icinga 2 virtualization environment. 1.0 Prerequisites 1.1 Enable the API The Icinga 2 system you run needs to have the API feature

More information

1. INTRODUCTION to Object Storage

1. INTRODUCTION to Object Storage 1. INTRODUCTION to Object Storage Welcome to AURO Enterprise Cloud! This document will be help you get started using our Object Storage service. Object Storage is a storage system where objects are stored

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

HPE Enterprise Integration Module for SAP Solution Manager 7.1

HPE Enterprise Integration Module for SAP Solution Manager 7.1 HPE Enterprise Integration Module for SAP Solution Manager 7.1 Software Version: 12.55 User Guide Document Release Date: August 2017 Software Release Date: August 2017 HPE Enterprise Integration Module

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

Securing U2 Soap Server

Securing U2 Soap Server Securing U2 Soap Server Introduction To enable SSL on the Client(Consumer-to-U2SS side), we need a U2 soap server Certificate. There are three possible methods to obtain the Server Certificate: 1. Use

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Introduction 2 Prerequisites 2 Installation 2 Installation Overview 3 Downloading and Installing for Windows 3 Downloading and Installing for macos 4 Installing

More information

Public Key Enabling Oracle Weblogic Server

Public Key Enabling Oracle Weblogic Server DoD Public Key Enablement (PKE) Reference Guide Public Key Enabling Oracle Weblogic Server Contact: dodpke@mail.mil URL: http://iase.disa.mil/pki-pke URL: http://iase.disa.smil.mil/pki-pke Public Key Enabling

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Oracle Oracle Identity Manager 11g

Oracle Oracle Identity Manager 11g RSA SecurID Ready Implementation Guide Partner Information Last Modified: August 24, 2014 Product Information Partner Name Web Site Product Name Version & Platform Product Description Oracle www.oracle.com

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

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address Quick Guide Deployment Manager 2 Quick Guide 1 Introduction...3 1.1 Installing the

More information

SAS Event Stream Processing 4.3: Visualizing Event Streams with Streamviewer

SAS Event Stream Processing 4.3: Visualizing Event Streams with Streamviewer SAS Event Stream Processing 4.3: Visualizing Event Streams with Streamviewer Overview Streamviewer provides a user interface that enables you to subscribe to window event streams from one or more event

More information

Upgrading an ObserveIT One-Click Installation

Upgrading an ObserveIT One-Click Installation Upgrading an ObserveIT One-Click Installation This document was written for ObserveIT Enterprise version 7.6.1. This document uses screenshots and procedures written for Windows Server 2012 R2 and SQL

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 1 - Getting Started with HDInsight Overview In this lab, you will provision an HDInsight cluster. You will then run a sample MapReduce job on the

More information

Fischer International Identity Fischer Identity Suite 4.2

Fischer International Identity Fischer Identity Suite 4.2 Fischer International Identity Fischer Identity Suite 4.2 RSA SecurID Ready Implementation Guide Partner Information Last Modified: June 16, 2010 Product Information Partner Name Web Site Product Name

More information

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Revision: 20090313 Item:

More information

Lab 2: Setting up secure access

Lab 2: Setting up secure access Lab 2: Setting up secure access Oracle Database Cloud Service Hands On Lab This lab is divided into 3 parts 1. Securely Connecting to DBCS instance using Putty 2. Configuring SQL Developer for Secure Access

More information

RSA Identity Governance and Lifecycle Connector Data Sheet for Oracle Internet Directory

RSA Identity Governance and Lifecycle Connector Data Sheet for Oracle Internet Directory Connector Data Sheet for Oracle Internet Directory Version 1.2 vember 2017 Oracle Internet Directory Connector Datasheet Table of Contents Purpose... 4 Supported Software... 4 Prerequisites... 4 CONFIGURATION...

More information

Contents. Upgrading Contents 2

Contents. Upgrading Contents 2 Upgrading Contents 2 Contents Upgrading... 3 Before You Upgrade... 3 Back Up Your jivehome Directory... 3 Back Up Your Database...3 Remove Plugins Before Upgrading...3 For 5.0 and 6.0 Upgrades, Prepare

More information

Selectively Cloning Courses in Moodle

Selectively Cloning Courses in Moodle Selectively Cloning Courses in Moodle Use the following procedure to clone (copy) some but not all of the contents of a course in Moodle from one course to another. 1. Open your Firefox browser, and navigate

More information

Hitachi ID Systems Inc Identity Manager 8.2.6

Hitachi ID Systems Inc Identity Manager 8.2.6 Systems Inc RSA SecurID Ready Implementation Guide Partner Information Last Modified: December 5, 2014 Product Information Partner Name Hitachi ID Systems Inc Web Site www.hitachi-id.com Product Name Identity

More information

SAML with ADFS Setup Guide

SAML with ADFS Setup Guide SAML with ADFS Setup Guide Version 1.0 Corresponding Software Version: 4.2 This document is copyright of the Celonis SE. Distribution or reproduction are only permitted by written approval of the Celonis

More information

Accessing clusters 2. Accessing Clusters. Date of Publish:

Accessing clusters 2. Accessing Clusters. Date of Publish: 2 Accessing Clusters Date of Publish: 2018-09-14 http://docs.hortonworks.com Contents Cloudbreak user accounts... 3 Finding cluster information in the web UI... 3 Cluster summary... 4 Cluster information...

More information

OAM 2FA Value-Added Module (VAM) Deployment Guide

OAM 2FA Value-Added Module (VAM) Deployment Guide OAM 2FA Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and solutions,

More information

Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon

Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon Duration: 5 Days What you will learn This Administering WebLogic

More information

RSA Identity Governance and Lifecycle Connector Data Sheet for OpenLDAP

RSA Identity Governance and Lifecycle Connector Data Sheet for OpenLDAP Connector Data Sheet for OpenLDAP Version 1.2 vember 2017 Table of Contents Purpose... 4 Supported Software... 4 Prerequisites... 4 SSL communication... 4 Manage Endpoint Credentials Using a Password Vault...

More information

About This Document 3. Overview 3. System Requirements 3. Installation & Setup 4

About This Document 3. Overview 3. System Requirements 3. Installation & Setup 4 About This Document 3 Overview 3 System Requirements 3 Installation & Setup 4 Step By Step Instructions 5 1. Login to Admin Console 6 2. Show Node Structure 7 3. Create SSO Node 8 4. Create SAML IdP 10

More information

Oracle Insurance Rules Palette

Oracle Insurance Rules Palette Oracle Insurance Rules Palette Security Guide Version 10.2.0.0 Document Part Number: E62439-01 August, 2015 Copyright 2009, 2015, Oracle and/or its affiliates. All rights reserved. Trademark Notice Oracle

More information

Upgrading Big Data Management to Version Update 2 for Hortonworks HDP

Upgrading Big Data Management to Version Update 2 for Hortonworks HDP Upgrading Big Data Management to Version 10.1.1 Update 2 for Hortonworks HDP Copyright Informatica LLC 2017. Informatica, the Informatica logo, and Informatica Big Data Management are trademarks or registered

More information

Azure 209x Practical Exercises Overview

Azure 209x Practical Exercises Overview Azure 209x Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the individual

More information

Performing an ObserveIT Upgrade Using the Interactive Installer

Performing an ObserveIT Upgrade Using the Interactive Installer Performing an ObserveIT Upgrade Using the Interactive Installer ABOUT THIS DOCUMENT This document contains detailed procedures and instructions on how to upgrade ObserveIT by using the interactive "One

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

Cisco Unified Serviceability

Cisco Unified Serviceability Cisco Unified Serviceability Introduction, page 1 Installation, page 5 Introduction This document uses the following abbreviations to identify administration differences for these Cisco products: Unified

More information

DOCUMENT DESCRIPTION...

DOCUMENT DESCRIPTION... Contents 1 DOCUMENT DESCRIPTION... 1 1.1 OVERVIEW... 1 1.2 GLOSSARY... 1 1.3 PREREQUISITES... 3 2 CONFIGURATION... 4 2.1 CREATE WEBLOGIC DOMAIN... 4 2.2 CONFIGURE WEBLOGIC MANAGED DOMAIN... 12 2.3 INSTALLATION

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials

More information

Contents Introduction... 5 Configuring Single Sign-On... 7 Configuring Identity Federation Using SAML 2.0 Authentication... 29

Contents Introduction... 5 Configuring Single Sign-On... 7 Configuring Identity Federation Using SAML 2.0 Authentication... 29 Oracle Access Manager Configuration Guide 16 R1 March 2016 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 8 Installing Oracle HTTP Server...

More information

Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5

Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5 Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5 Title: Getting Started with ESX Server 3i Embedded Revision: 20071022 Item: VMW-ENG-Q407-430 You can

More information

JBoss Portal Quickstart User Guide. Release 2.6.6

JBoss Portal Quickstart User Guide. Release 2.6.6 JBoss Portal 2.6.6 Quickstart User Guide Release 2.6.6 Table of Contents JBoss Portal - Overview... iii 1. Tutorial Forward...1 2. Installation...2 2.1. Downloading and Installing...2 2.2. Starting JBoss

More information

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE Ashwini Sharma 1 CONTENTS 1. Introduction... 2 2 Prerequisites... 2 3 Patch the SOA Server Installation... 2 4. Use

More information

HP Enterprise Integration Module for SAP Solution Manager

HP Enterprise Integration Module for SAP Solution Manager HP Enterprise Integration Module for SAP Solution Manager Software Version: 12.01 User Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties

More information

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer Overview Streamviewer is a graphical user interface that visualizes events streaming through event stream processing models.

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

Oracle Access Manager Configuration Guide

Oracle Access Manager Configuration Guide Oracle Access Manager Configuration Guide 16 R2 September 2016 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server...

More information

SUREedge DR Installation Guide for Windows Hyper-V

SUREedge DR Installation Guide for Windows Hyper-V SUREedge DR Installation Guide for Windows Hyper-V Contents 1. Introduction... 2 1.1 SUREedge DR Deployment Scenarios... 2 1.2 Installation Overview... 3 2. Obtaining SUREedge Software and Documentation...

More information

SSL or TLS Configuration for Tomcat Oracle FLEXCUBE Universal Banking Release [December] [2016]

SSL or TLS Configuration for Tomcat Oracle FLEXCUBE Universal Banking Release [December] [2016] SSL or TLS Configuration for Tomcat Oracle FLEXCUBE Universal Banking Release 12.3.0.0.0 [December] [2016] Table of Contents 1. SSL OR TLS CONFIGURATION... 1-1 1.1 INTRODUCTION... 1-1 1.2 REFERENCE SITES...

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1

NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1 NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1 Array Manager Installation and User Guide NetApp, Inc. Telephone: +1 (408) 822-6000 Part number: 215-09304_A0 495 East Java Drive Fax: +1 (408)

More information

Load Balancing Web Servers with OWASP Top 10 WAF in Azure

Load Balancing Web Servers with OWASP Top 10 WAF in Azure Load Balancing Web Servers with OWASP Top 10 WAF in Azure Quick Reference Guide v1.0.3 ABOUT THIS GUIDE This document provides a quick reference guide on how to load balance Web Servers and configure a

More information

Gateway P6 EPPM Data Migration Guide

Gateway P6 EPPM Data Migration Guide Gateway P6 EPPM Data Migration Guide Version 18 August 2018 Contents Overview... 7 Setting Up P6 - P6 Data Migration... 9 Setting Up P6 Data Migration for Cloud... 9 Setting Up P6 Data Migration for On-Premises...

More information

Director and Certificate Authority Issuance

Director and Certificate Authority Issuance VMware vcloud Director and Certificate Authority Issuance Leveraging QuoVadis Certificate Authority with VMware vcloud Director TECHNICAL WHITE PAPER OCTOBER 2012 Table of Contents Introduction.... 3 Process

More information

Course: JBoss Training: JBoss AS 7 and JBoss EAP 6 Administration and Clustering Training

Course: JBoss Training: JBoss AS 7 and JBoss EAP 6 Administration and Clustering Training Course: JBoss Training: JBoss AS 7 and JBoss EAP 6 Administration and Clustering Training Course Length: Duration; 4 days Course Code: WA 2060 This training course covers both the unsupported open source

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Installing Oracle WebCenter Sites on Oracle Java Cloud Service

Installing Oracle WebCenter Sites on Oracle Java Cloud Service Installing Oracle WebCenter Sites 12.2.1.2 on Oracle Java Cloud Service Setup, configure Oracle WebCenter Sites products on JCS ORACLE WEBCENTER SITES NOVEMBER 2017 Disclaimer The following is intended

More information

Symantec Data Center Security Installation Guide. Version 6.5

Symantec Data Center Security Installation Guide. Version 6.5 Symantec Data Center Security Installation Guide Version 6.5 Symantec Data Center Security Installation Guide Documentation version: 1.2 Legal Notice Copyright 2015 Symantec Corporation. All rights reserved.

More information

User Inputs for Installation

User Inputs for Installation APPENDIXA This appendix provides information on the user inputs during LMS 4.1 installation. Note For information on the Installation of LMS 4.1, see Performing Installation of LMS 4.1. This appendix contains:

More information

Student Lab Manual MS101.1x: Microsoft 365 Security Management

Student Lab Manual MS101.1x: Microsoft 365 Security Management Student Lab Manual MS101.1x: Microsoft 365 Security Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Microsoft 365 deployed in a virtualized lab environment.

More information

Managing Load Plans in OTBI Enterprise for HCM Cloud Service

Managing Load Plans in OTBI Enterprise for HCM Cloud Service Managing Load Plans in OTBI Enterprise for HCM Cloud Service Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Objective After completing this lesson, you should be able to use Configuration

More information

Configuring SSL for EPM /4 Products (Cont )

Configuring SSL for EPM /4 Products (Cont ) Configuring SSL for EPM 11.1.2.3/4 Products (Cont ) Configure IIS for SSL If you have a server certificate with its private key skip creating the Certificate Request and continue with Complete Certificate

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

SafeNet KMIP and Google Drive Integration Guide

SafeNet KMIP and Google Drive Integration Guide SafeNet KMIP and Google Drive Integration Guide Documentation Version: 20130802 Table of Contents CHAPTER 1 GOOGLE DRIVE......................................... 2 Introduction...............................................................

More information

VMware AirWatch Remote Management Guide Installing, configuring, and using the Remote Management Service

VMware AirWatch Remote Management Guide Installing, configuring, and using the Remote Management Service VMware AirWatch Remote Management Guide Installing, configuring, and using the Remote Management Service Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard

More information

Server Settings. Server Administration CHAPTER

Server Settings. Server Administration CHAPTER 3 CHAPTER The Server drawer contains selections that allow system administrators manage the portal server. From this drawer you can administer the server, install plugins, configure a variety of features,

More information

Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab

Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab Introduction to Enterprise Manager 11g Oracle Enterprise Manager 11g is the centerpiece of Oracle's integrated IT management strategy, which rejects

More information

Contents Configuring P6 and P6 Professional Cloud Connect... 5 Creating the WebLogic Environment for P6... 7

Contents Configuring P6 and P6 Professional Cloud Connect... 5 Creating the WebLogic Environment for P6... 7 P6 Server Configuration Guide 16 R1 March 2016 Contents Configuring P6 and P6 Professional Cloud Connect... 5 Creating the WebLogic Environment for P6... 7 Prerequisites for P6 EPPM Configuration... 8

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

Installation Manual Oracle FLEXCUBE Corporate Lending [April] [2016] Part No. E

Installation Manual Oracle FLEXCUBE Corporate Lending [April] [2016] Part No. E Installation Manual Oracle FLEXCUBE Corporate Lending 12.1.0.0.0 [April] [2016] Part No. E74823-01 OFCL Installation Guide Table of Contents 1. ORACLE FLEXCUBE LENDING DEPLOYMENT ON 11G RELEASE 2 APPLICATION

More information

Configuring IBM Rational Synergy to use HTTPS Protocol

Configuring IBM Rational Synergy to use HTTPS Protocol Technical Note Configuring IBM Rational Synergy to use HTTPS Protocol November 20, 2013 This edition applies to IBM Rational Synergy version 7.1, and to all subsequent releases and modifications until

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

DEPLOYING ORACLE ENTERPRISE MANAGER 12C IN A COMPLEX NETWORKING ENVIRONMENT Telstra Corporation Limited. All rights reserved

DEPLOYING ORACLE ENTERPRISE MANAGER 12C IN A COMPLEX NETWORKING ENVIRONMENT Telstra Corporation Limited. All rights reserved DEPLOYING ORACLE ENTERPRISE MANAGER 12C IN A COMPLEX NETWORKING ENVIRONMENT TELSTRA TEMPLATE 4X3 BLUE BETA TELPPTV4 EM12C GOALS TO ACHIEVE Deploying agents without burning firewall rules Using corporate

More information

Comodo Next Generation Security Information and Event Management Software Version 1.4

Comodo Next Generation Security Information and Event Management Software Version 1.4 rat Comodo Next Generation Security Information and Event Management Software Version 1.4 Administrator Guide Guide Version 1.4.101915 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table

More information

MYOB Advanced Business

MYOB Advanced Business MYOB Advanced Business On-Premise Installation Last Updated: 24 November 2014 Contents Introduction 1 Pre-Requisites 1 Web Browsers... 1 Server Hardware and Software... 1 Database Hardware and Software...

More information

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo Vendor: IBM Exam Code: 000-587 Exam Name: IBM FileNet P8 V5.1 Version: Demo QUESTION 1 While configuring the LDAP settings in Configuration Manager to point to an Active Directory server, an installer

More information

Installing and Configuring vcloud Connector

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

More information

Oracle Communications Billing and Revenue Management

Oracle Communications Billing and Revenue Management Oracle Communications Billing and Revenue Management Pipeline Configuration Center Installation and System Administration Guide Release 7.4 E25364-02 October 2012 Oracle Communications Billing and Revenue

More information

Unified CCX Administration Web Interface

Unified CCX Administration Web Interface The Unified CCX provides a multimedia (voice, data, and web) IP-enabled customer-care application environment, using VoIP technology that allows your Cisco Unified Communications network to share resources

More information

Contents Prerequisites... 5 Installing Contract Management Web Services... 11

Contents Prerequisites... 5 Installing Contract Management Web Services... 11 Installing and Configuring Contract Management Web Services July 2014 Contents Prerequisites... 5 Base Contract Management Installation... 5 Java Runtime Environment Requirements... 5 Contract Management

More information

Oracle Database Express Edition

Oracle Database Express Edition Oracle Database Express Edition Getting Started Guide 11g Release 2 (11.2) E18585-04 July 2011 Welcome to Oracle Database Express Edition (Oracle Database XE). This guide gets you quickly up and running

More information

PKI Cert Creation via Good Control: Reference Implementation

PKI Cert Creation via Good Control: Reference Implementation PKI Cert Creation via Good Control: Reference Implementation Legal Notice Copyright 2016 BlackBerry Limited. All rights reserved. All use is subject to license terms posted at http://us.blackberry.com/legal/legal.html.

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

Contents Configuring P Creating the WebLogic Environment for P6... 7

Contents Configuring P Creating the WebLogic Environment for P6... 7 P6 and WebLogic Configuration Guide Release 8.4 September 2014 Contents Configuring P6... 5 Creating the WebLogic Environment for P6... 7 Prerequisites for P6 EPPM Configuration... 7 Uninstalling Previous

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

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

C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL

C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL Avalanche Remote Control 4.1.3 can be configured to use AES encryption between the device and the server, and SSL encryption between

More information

Workspace ONE UEM Integration with RSA PKI. VMware Workspace ONE UEM 1810

Workspace ONE UEM Integration with RSA PKI. VMware Workspace ONE UEM 1810 Workspace ONE UEM Integration with RSA PKI VMware Workspace ONE UEM 1810 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

VMWARE HORIZON CLOUD WITH VMWARE IDENTITY MANAGER QUICK START GUIDE WHITE PAPER MARCH 2018

VMWARE HORIZON CLOUD WITH VMWARE IDENTITY MANAGER QUICK START GUIDE WHITE PAPER MARCH 2018 VMWARE HORIZON CLOUD WITH VMWARE IDENTITY MANAGER QUICK START GUIDE WHITE PAPER MARCH 2018 Table of Contents Introduction to Horizon Cloud with Manager.... 3 Benefits of Integration.... 3 Single Sign-On....3

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

More information

Polycom RealPresence Resource Manager System

Polycom RealPresence Resource Manager System [Type the document title] Upgrade Guide 8.0.1 October 2013 3725-72106-001C Polycom RealPresence Resource Manager System Polycom Document Title 1 Contents Contents Prepare for Polycom RealPresence Resource

More information

Deploying VMware Identity Manager in the DMZ. JULY 2018 VMware Identity Manager 3.2

Deploying VMware Identity Manager in the DMZ. JULY 2018 VMware Identity Manager 3.2 Deploying VMware Identity Manager in the DMZ JULY 2018 VMware Identity Manager 3.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

Installing Design Room ONE

Installing Design Room ONE Installing Design Room ONE Design Room ONE consists of two components: 1. The Design Room ONE web server This is a Node JS server which uses a Mongo database. 2. The Design Room ONE Integration plugin

More information

DEPLOYMENT GUIDE Version 1.0. Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1

DEPLOYMENT GUIDE Version 1.0. Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1 DEPLOYMENT GUIDE Version 1.0 Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1 Introducing the F5 and Oracle WebCenter configuration Welcome to the F5 and Oracle WebCenter deployment guide. This

More information

Oracle SOA Suite 12c Install & Configure Activity Guide 1

Oracle SOA Suite 12c Install & Configure Activity Guide 1 Oracle SOA Suite 12c Install & Configure Activity Guide 1 [Edition 8] [Last Update 171217] For any issues/help contact : support@k21academy.com 1 support@k21academy.com 1 INTRODUCTION... 3 2 DOCUMENTATION...

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

Managing GSS Devices from the GUI

Managing GSS Devices from the GUI CHAPTER 1 This chapter describes how to configure and manage your Global Site Selector Manager (GSSM) and Global Site Selector (GSS) devices from the primary GSSM graphical user interface. It includes

More information