BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications

Size: px
Start display at page:

Download "BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications"

Transcription

1 BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications Version : 4.00 Last modification date : 13 June 2014 Owner : IBM Ecosystem Development

2

3 Table of Contents Part 1: Building an Application from a Boilerplate in the BlueMix UI Build the application Run the Application... 8 Part 2: Deploying a Node.js app that uses the MySQL service with command line tools Install the Cloud Foundry command line tools Deploy a Node.js app that uses the MySQL Service with command line tools Running the application Part 3: Deploying a Java web app that uses the PostGreSQL service with the IBM BlueMix Eclipse tools Starting Eclipse Importing the code for this section from GitHub Define the BlueMix Server Push the application from Eclipse Running the application Copyright IBM Corporation All rights reserved. 3

4

5 Lab A: Building and Deploying BlueMix Applications Lab Objectives: This lab introduces different ways of creating and deploying BlueMix applications and illustrates some of the different types of applications that can be run in BlueMix.. Three approaches are demonstrated : i) Building and deploying a Java Web Runtime using a Boilerplate from the BlueMix UI as the starting point ii) Deploying a Node,js application that uses the MySQL service with the Cloud Foundry command line tools iii) Deploying a Java Web application that user the PostGreSQL service with Eclipse and the BlueMix Eclipse plugins. Lab Duration : 40 minutes Part 1: Building an Application from a Boilerplate in the BlueMix UI In Part 1 of you'll work with a BlueMix boilerplate to quickly bring up a Java web application that uses the BlueMix Data Cache Service. Boilerplates are great starting points for developing BlueMix applications from scratch because they contain everything needed for an application to run in a BlueMix environment and thus can be used as application templates. They also have examples of how to read service metadata in your applications and how to use various services. 1. Build the application In this section you ll use one of the application boilerplates in BlueMix to quickly bring up and run a Java Web application that uses- the BlueMix Data Cache Service. Step 1 Step 2 Start your browser and go to the url Click on LOGIN Figure 1 BlueMix Login page Step 3 After logging in click on CATALOG and select the JAVA Web Starter boilerplate under Boilerplates Copyright IBM Corporation All rights reserved. 5

6 Figure 2 Java Web Starter boilerplate Step 4 A pop-up of the Java Web Starter appears, click on Create Application. Figure 3 Java Web Starter popup Step 5 Name your application (hint: the host name defaults to the application name so you need a system wide unique name - use something like firstname-lastname-java-web ). Figure 4 Naming your application Step 6 Step 7 Click Create. You should be taken automatically to the Dashboard area where you'll see a large icon representing your application that indicates that your app is starting up. Copyright IBM Corporation All rights reserved. 6

7 Figure 5 Dashboard view of your app Step 8 Wait for your app to start. You'll know that it has started when the status message changes to Your app is running great! (Hint: if you periodically refresh the browser page you'll see the app change state faster) Figure 6 Dashboard view of started app Copyright IBM Corporation All rights reserved. 7

8 2. Run the Application In this section you ll run the application that you just created without making any changes to verify that your app was deployed correctly. The app allows you to manage key/value pairs in an instance of the Data Cache Service Step 1 Click the URL for the application just below the application's name Figure 7 Running the app Step 2 Add a key/value pair and press Put. Figure 8 Add key/value pair Copyright IBM Corporation All rights reserved. 8

9 Step 3 Verify that the key/value pair appears in the Grid Entries Figure 9 Verify key/value pair Copyright IBM Corporation All rights reserved. 9

10 Part 2: Deploying a Node.js app that uses the MySQL service with command line tools In Part 2 you'll work with the Cloud Foundry command line tools to deploy a Node,js application that uses the MySQL data service from your local machine. 1. Install the Cloud Foundry command line tools In this section you'll install the Cloud Foundry Command Line tools used to deploy your Node,js app to BlueMix Step 1 Step 2 Step 3 Open Windows Explorer and launch the program \BlueMixLabs\install\cf_installer.exe where \BlueMixLabs is the root folder of the files provided to you by the instructor. Click Install and follow the prompts (accepting the default settings) Verify the installation by launching a Command Prompt (cmd.exe) and typing in the command cf -v Step 4 Verify that the output from the command looks like Figure 10. Figure 10 Output of cf -v command 2. Deploy a Node.js app that uses the MySQL Service with command line tools In this section you'll deploy a Node.js application that we have provided for you that uses the MySQL Database service in BlueMix. This app demonstrates how to connect to a MySQL database on BlueMix from a Node.js based app. The application allows you to select a line-separated file of text to upload, adding each line to a table in the database as a separate row. You'll deploy the app using the Cloud Foundry Command Line tools. Step 5 Step 6 Launch a Command Prompt (cmd.exe) and navigate to the folder containing the app \BlueMixLabs\LabA\bluemix-node-mysql-uploader\app where \BlueMixLabs is the root folder of the files provided to you by the instructor You'll now be in the folder containing the Node.js source code for the application. Execute the dir command and verify that have the files shown in Figure 11. Copyright IBM Corporation All rights reserved. 10

11 Figure 11 Node.js app source files Step 7 Step 8 Step 9 Step 10 Step 11 From the same command prompt login to BlueMix by issuing the following command (note; you can copy the command from the file \BlueMixLabs\LongCommands.txt) cf login -a Provide your BlueMix credentials when prompted. Create an instance of the mysql service used by the app selecting a Service Plan level, and giving it a unique name in the last argument by issuing the following command (note: you can copy the command from the file \BlueMixLabs\LongCommands.txt) cf create-service mysql 100 mysql_nmu Next you'll push the app to BlueMix. The following command pushes the app but doesn't start it. You need to substitute yourappname with a system wide unique name because by default the app's URL starts with the app's name. This is not the same application as part 1, so please choose a different application name. (note: you can edit and then copy the command from the file \BlueMixLabs\LongCommands.txt) cf push yourappname --no-manifest --no-start -c "node app.js" Bind the Service you created in Step 9 to the app that your just pushed (Note substitute yourappname with the app name you used in Step 6 - you can edit and then copy the command from the file \BlueMixLabs\LongCommands.txt) ). cf bind-service yourappname mysql_nmu Step 12 Start your app. (Note substitute yourappname with the app name you used in Step 6 - you can edit and then copy the command from the file \BlueMixLabs\LongCommands.txt) cf start yourappname 3. Running the application Now that the application has been deployed and started, you can examine it in the BlueMix Web Portal and run it Step 1 Step 2 Step 3 In your browser go to the BlueMix URL and login if necessary Make sure you're in the Dashboard section (if not click on the Dashboard link at the top of the page to take you there). Examine the resource usage of the application you just pushed and started by clicking on the Copyright IBM Corporation All rights reserved. 11

12 icon just above the application's name (as shown in Figure 15). Figure 12 Application's runtime settings Step 4 Click on navigation link on the left that is labeled Node.js Figure 13 Node.js navigation link Step 5 Your application's resource usage will appear Copyright IBM Corporation All rights reserved. 12

13 Figure 14 Application resource usage Step 6 Click on the Dashboard link at the top of the page to see your list of applications again. Step 7 Click on your application's link just below it's name to run it. Figure 15 Launching your application Step 8 The application will allow you to upload a text file and create a database row for each line. Upload the file \BlueMixLabs\LabA\sample.txt where \BlueMixLabs is the root folder of the Copyright IBM Corporation All rights reserved. 13

14 files provided to you by the instructor by clicking on the Browse button to select the file locally and then the Upload button to send it to the application Figure 16 MySQL Upload application UI Step 9 Verify that the number of lines in the file and the contents of the file are displayed Figure 17 Output of MySQL Upload application Copyright IBM Corporation All rights reserved. 14

15 Part 3: Deploying a Java web app that uses the PostGreSQL service with the IBM BlueMix Eclipse tools In Part 3 you'll work with the IBM BlueMix Eclipse tools to deploy a Java web application that uses the PostGreSQL database service.note that this application is functionally equivalent to the Node.js application in Part 2 1. Starting Eclipse In this section you ll start Eclipse and load the workspace that will be used for this part of the lab. Step 1 Step 2 Open Windows Explorer and launch the program \BlueMixLabs\eclipse\eclipse.exe where \BlueMixLabs is the root folder of the files provided to you by the instructor. Select the workspace \BlueMixLabs\workspaces\LabAPart3 when prompted and click OK Figure 18 Select Eclipse Workspace 2. Importing the code for this section from GitHub In this section you ll use the built in Eclipse tools to import the code for this section from a Git repository. This demonstrates how a typical BlueMix developer would work with version controlled code. Step 1 Select File->Import from the Eclipse menu and select Git_>Projects from Git in the resulting dialog. Click Next. Figure 19 Importing from Git dialog Step 2 Select GitHub as the source and click Next Copyright IBM Corporation All rights reserved. 15

16 Figure 20 Select GitHub as the source Step 3 Enter the string bluemix-java-post in the Search field and click Search Figure 21 Finding GitHub Repository Step 4 Select the ibmjstart Repository shown in Figure 21 and click Next. Step 5 Repeat clicking Next to accept the defaults until the Finish button becomes active. Step 6 Step 7 Click Finish to complete the importing of the code. Wait until the project is built by monitoring the build status at the bottom right of the Eclipse UI until there is no activity reported Figure 22 Build status Step 8 Verify that there are no errors (ie red X's) in the Project Explorer pane following the build. Copyright IBM Corporation All rights reserved. 16

17 Figure 23 Project Explorer following import 3. Define the BlueMix Server In this section you'll define the BlueMix server so you can automatically push your Eclipse code out to BlueMix when needed Step 1 Click on the Servers tab at the bottom of the Eclipse UI as shown in Figure 24. Figure 24 Eclipse Servers tab Step 2 Click the link labeled...click this link to create a new server. Step 3 Expand the IBM category and select IBM BlueMix. Click Next. Figure 25 Select IBM BlueMix as server type Step 4 In the next dialog enter your BlueMix credentials and click on Validate Account Copyright IBM Corporation All rights reserved. 17

18 Figure 26 Validate your BlueMix account Step 5 Verify that the dialog reports that your account is valid and then click Finish. Step 6 Your server definition should now appear in the Servers tab Figure 27 Your server definition 4. Push the application from Eclipse In this section you'll learn how to push, create services and start your app all from within the same UI in Eclipse. Step 1 Go back to Eclipse and from the Servers tab select your server, right click and select Add and Remove from the context menu Figure 28 Add project to server Step 2 Select the PostgreSQLUpload application and click Add. Copyright IBM Corporation All rights reserved. 18

19 Figure 29 Add project to BlueMix Step 3 Step 4 Click Finish. Click Next in the resulting dialog Append a unique string to the Subdomain (eg your first initial + last name ) since this has to be unique systemwide. See Figure 30 for an example. Click Next Figure 30 Specify unique Subdomain for app Step 5 Click the icon to add a new service Figure 31 Add new service Step 6 Name the service postgresql_jpu and select postgresql - PostgreSQL database as the Type. Click Finish Copyright IBM Corporation All rights reserved. 19

20 Figure 32 Name and type of service Step 7 Step 8 Click Finish to push and start your application. Messages should start appearing on the console. Wait for the message that says The server defaultserver is ready to run a smarter planet. Figure 33 Console messages 5. Running the application Now that the application has been deployed and started, you can run it from inside Eclipse Step 1 From the Eclipse menu select Window>Web Browser and then select one of your installed Web browsers (eg Firefox) Figure 34 Select an external browser Step 2 In the Project Explorer select your project, right click and then select Run As->Run on Server from the context menu. Copyright IBM Corporation All rights reserved. 20

21 Figure 35 Launch application Step 3 Step 4 Click on Finish in the resulting dialog..the browser you selected in Step 1 should launch with the application Upload the file \BlueMixLabs\LabA\sample.txt where \BlueMixLabs is the root folder of the files provided to you by the instructor by clicking on the Browse button to select the file locally and then the Upload button to send it to the application. Figure 36 Upload application UI Step 5 Verify that the number of lines in the file and the contents of the file are displayed Copyright IBM Corporation All rights reserved. 21

22 Figure 37 Output of PostgreSQL Upload application Congratulations! You ve successfully completed Lab A where you've looked at different ways of developing and deploying BlueMix application Copyright IBM Corporation All rights reserved. 22

BlueMix Hands-On Workshop Lab F - Java EE Cloud Trader Benchmark Application on BlueMix

BlueMix Hands-On Workshop Lab F - Java EE Cloud Trader Benchmark Application on BlueMix BlueMix Hands-On Workshop Lab F - Java EE Cloud Trader Benchmark Application on BlueMix Version : 3.00 Last modification date : 05/ /12/2014 Owner : IBM Ecosystem Development Table of Contents Lab F:

More information

BlueMix Hands-On Workshop

BlueMix Hands-On Workshop BlueMix Hands-On Workshop Lab E - Using the Blu Big SQL application uemix MapReduce Service to build an IBM Version : 3.00 Last modification date : 05/ /11/2014 Owner : IBM Ecosystem Development Table

More information

Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI)

Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI) V10.1 Student Exercises EXempty Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI) What this exercise is about In this exercise, you sign on to Bluemix and create an application. You

More information

IBM Bluemix platform as a service (PaaS)

IBM Bluemix platform as a service (PaaS) Cloud Developer Certification Preparation IBM Bluemix platform as a service (PaaS) After you complete this unit, you should understand: Use cases for IBM Bluemix PaaS applications Key infrastructure components

More information

IBM Watson Solutions Business and Academic Partners

IBM Watson Solutions Business and Academic Partners IBM Watson Solutions Business and Academic Partners Developing a Chatbot Using the IBM Watson Conversation Service Prepared by Armen Pischdotchian Version 2.1 October 2016 Watson Solutions 1 Overview What

More information

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix Pam Geiger, Bluemix Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com are trademarks of International Business Machines

More information

IBM BlueMix Workshop. Lab D Build Android Application using Mobile Cloud Boiler Plate

IBM BlueMix Workshop. Lab D Build Android Application using Mobile Cloud Boiler Plate IBM BlueMix Workshop Lab D Build Android Application using Mobile Cloud Boiler Plate IBM EcoSystem Development Team The information contained herein is proprietary to IBM. The recipient of this document,

More information

Using the Bluemix CLI IBM Corporation

Using the Bluemix CLI IBM Corporation Using the Bluemix CLI After you complete this section, you should understand: How to use the bx Bluemix command-line interface (CLI) to manage applications bx commands help you do tasks such as: Log in

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

IBM / ST SensorTile Watson IoT Workshop

IBM / ST SensorTile Watson IoT Workshop IBM / ST SensorTile Watson IoT Workshop Connect the ST Microelectronics SensorTile to IBM Watson IoT Download this PDF and Node-RED flows at https://github.com/johnwalicki/sensortile-watsoniot-workshop

More information

IBM Image-Analysis Node.js

IBM Image-Analysis Node.js IBM Image-Analysis Node.js Cognitive Solutions Application Development IBM Global Business Partners Duration: 90 minutes Updated: Feb 14, 2018 Klaus-Peter Schlotter kps@de.ibm.com Version 1 Overview The

More information

VMware Plugin Installation for Windows 8.1 or newer

VMware Plugin Installation for Windows 8.1 or newer VMware Plugin Installation for Windows 8.1 or newer Table of Contents Access vlab and Install Plugin... 1 Firefox Settings... 5 Internet Explorer 11 Settings... 6 Installing Firefox ESR v52... 8 Access

More information

Red Hat JBoss Fuse 7.0-TP

Red Hat JBoss Fuse 7.0-TP Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions for Creating Sample Integrations Last Updated: 2018-04-03 Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions

More information

Microsoft Office SharePoint. Reference Guide for Contributors

Microsoft Office SharePoint. Reference Guide for Contributors Microsoft Office SharePoint Reference Guide for Contributors SharePoint: Reference Guide for Contributors Table of Contents INTRODUCTION... 3 FOLLOWING A SITE... 3 NAVIGATION... 4 LISTS AND LIBRARIES...

More information

Web Push Notification

Web Push Notification Web Push Notification webkul.com/blog/web-push-notification-for-magento2/ On - January 13, 2017 This impressive module allows you to send push notification messages directly to the web browser. The biggest

More information

C exam. Number: C Passing Score: 800 Time Limit: 120 min IBM C IBM Cloud Platform Application Development

C exam. Number: C Passing Score: 800 Time Limit: 120 min IBM C IBM Cloud Platform Application Development C5050-285.exam Number: C5050-285 Passing Score: 800 Time Limit: 120 min IBM C5050-285 IBM Cloud Platform Application Development Exam A QUESTION 1 What are the two key benefits of Cloudant Sync? (Select

More information

Table of Contents HOL-HBD-1301

Table of Contents HOL-HBD-1301 Table of Contents Lab Overview... 2 - vcloud Hybrid Service Jump Start for vsphere Admins...3 Module 1 - vcloud Hybrid Service: Architecture and Consumption Principles...5 vcloud Hybrid Service... 6 vcloud

More information

How to take up my assessment?

How to take up my assessment? 2011, Cognizant How to take up my assessment? Step 1 : You have to take up the assessment only using the Virtual Desktop Interface (VDI environment) Please use the URL, https://learninglabs.cognizant.com

More information

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-09-25 Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

More information

IT Access Portal User Guide (Employees)

IT Access Portal User Guide (Employees) IT Access Portal User Guide (Employees) Introduction The University of Salford IT Access Portal provides University employees with secure, off-campus access to core IT applications and resources; for example:

More information

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Table of Contents Lab Overview - HOL-1857-03-UEM - Workspace ONE UEM with App & Access Management... 2 Lab Guidance... 3 Module 1 - Workspace

More information

Five9 Plus Adapter for Agent Desktop Toolkit

Five9 Plus Adapter for Agent Desktop Toolkit Cloud Contact Center Software Five9 Plus Adapter for Agent Desktop Toolkit Administrator s Guide September 2017 The Five9 Plus Adapter for Agent Desktop Toolkit integrates the Five9 Cloud Contact Center

More information

Supplemental setup document of CE Connector for IoT

Supplemental setup document of CE Connector for IoT Supplemental setup document of CE Connector for IoT Download (https://jazz.net/downloads/ce4iot-connector/releases/0.9.0.1?p=alldownloads) 1. Just download only zip file (CE4IoTTechnicalPreview V0.9.0.1.zip).

More information

Using Dropbox with Node-RED

Using Dropbox with Node-RED Overview Often when using Platform services, you need to work with files for example reading in a dialog xml file for Watson Dialog or feeding training images to Watson Visual Recognition. While you can

More information

Welcome to the CP Portal

Welcome to the CP Portal Welcome to the CP Portal Access your school documents from home Launch Internet Explorer and navigate to: https://files.cpcsc.k12.in.us/htcomnet/ Click on Continue to this website (not recommended) Key

More information

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

Set up your computer to sync your OneDrive for Business files in Office 365

Set up your computer to sync your OneDrive for Business files in Office 365 Set up your computer to sync your OneDrive for Business files in Office 365 Use OneDrive for Business to sync your school or work files to your computer. After that, you can work with files directly in

More information

Microsoft Office SharePoint Reference Guide for Site Owners

Microsoft Office SharePoint Reference Guide for Site Owners Microsoft Office SharePoint Reference Guide for Site Owners Table of Contents INTRODUCTION...3 REQUESTING A NEW SITE...3 FOLLOWING A SITE...4 NAVIGATION...5 LISTS AND LIBRARIES...6 ADDING PEOPLE TO A SITE...6

More information

IBM WebSphere Java Batch Lab

IBM WebSphere Java Batch Lab IBM WebSphere Java Batch Lab What are we going to do? First we are going to set up a development environment on your workstation. Download and install Eclipse IBM WebSphere Developer Tools IBM Liberty

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

Time Machine Web Console Installation Guide

Time Machine Web Console Installation Guide 1 Time Machine Web Console Installation Guide The following is a quick guide to setting up and deploying Solution-Soft s Time Machine Web Console under Microsoft IIS Web Server 8. This paper will walk

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Attendee Choice: IMS Hands-on Lab Thursday, August 13, 2015: 12:30 PM - 01:30 PM, Dolphin, Asia 5 #17765 Insert Custom Session QR if Desired Business Analytics on zenterprise The QMF 11 Product Family

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight Author: Bhaveshkumar R Patel (bhavesh.patel@in.ibm.com) Address cleansing sometimes referred to as address hygiene or standardization

More information

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 Create an App from a Smart Template and Annotation File 1 INTRODUCTION 1.1 Goal Smart Templates in the SAP Web IDE of the SAP HANA Cloud Platform

More information

Using Eclipse for Java. Using Eclipse for Java 1 / 1

Using Eclipse for Java. Using Eclipse for Java 1 / 1 Using Eclipse for Java Using Eclipse for Java 1 / 1 Using Eclipse IDE for Java Development Download the latest version of Eclipse (Eclipse for Java Developers or the Standard version) from the website:

More information

Mission Guide: Google Apps

Mission Guide: Google Apps Mission Guide: Google Apps Your Mission: Use F-Response to access Google Drive Apps for Business (G Suite) Using F-Response to connect to Google Drive Apps for Business and collect their contents Important

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

R9.7 erwin License Server:

R9.7 erwin License Server: R9.7 erwin License Server: Installation and Setup This is a quick guide to setting-up a erwin DM License Server. NOTES: - Concurrent licensing is available for only erwin r8.2 and later releases! - Concurrent

More information

Participant Handbook

Participant Handbook Participant Handbook Table of Contents 1. Create a Mobile application using the Azure App Services (Mobile App). a. Introduction to Mobile App, documentation and learning materials. b. Steps for creating

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Getting Started 1. Open the Hootsuite app directory and install the Google Drive for Hootsuite app

Getting Started 1. Open the Hootsuite app directory and install the Google Drive for Hootsuite app Google Drive Quick Start Guide Google Drive for Hootsuite Synaptive s Google Drive for Hootsuite app allows you to easily access your files on Google Drive in a Hootsuite stream, or inside Hootsuite s

More information

Sticky Notes for Cognos Analytics by Tech Data BSP Software

Sticky Notes for Cognos Analytics by Tech Data BSP Software Sticky Notes for Cognos Analytics by Tech Data BSP Software Installation Guide Sticky Notes for Cognos Analytics is an easy to install extension that allows report authors to record notes directly from

More information

SharePoint. Team Site End User Guide. Table of Contents

SharePoint. Team Site End User Guide. Table of Contents Table of Contents Introduction... 1 Logging in for the First Time:... 1 Areas of the team site:... 2 Navigating the team site:... 3 Adding Content to the team site:... 3 The Ribbon:... 3 Adding a Link:...

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS)

Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS) Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS) Table of Contents Getting Started...2 Overview...2 Learning Objectives...2 Prerequisites...2 Software for HOL Lab Session...2

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox CIS 231 Windows 7 Install Lab #2 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Centroid 2.0 User Guide. Version 1.0

Centroid 2.0 User Guide. Version 1.0 Centroid 2.0 User Guide Version 1.0 Contents 1 Introduction... 3 2 Centroid Configuration Manager... 4 3 Using Centroid... 7 3.1 Creating a Script Project... 7 3.2 Creating an Application... 8 3.3 Creating

More information

Zephyr Cloud for HipChat

Zephyr Cloud for HipChat June 25 Zephyr Cloud for HipChat Z e p h y r, 7 7 0 7 G a t e w a y B l v d S t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A 1 - Overview How this guide will help Zephyr Cloud for HipChat guide will guide

More information

Lab #1: A Quick Introduction to the Eclipse IDE

Lab #1: A Quick Introduction to the Eclipse IDE Lab #1: A Quick Introduction to the Eclipse IDE Eclipse is an integrated development environment (IDE) for Java programming. Actually, it is capable of much more than just compiling Java programs but that

More information

Create a Questionnaire. Triangle

Create a Questionnaire. Triangle Create a Questionnaire Triangle 1. Access EyeQuestion Open your browser (e.g. Internet Explorer) Browse to your EyeQuestion server The login screen will be visible 2. Login Login with your credentials

More information

Colligo Console. Administrator Guide

Colligo Console. Administrator Guide Colligo Console Administrator Guide Contents About this guide... 6 Audience... 6 Requirements... 6 Colligo Technical Support... 6 Introduction... 7 Colligo Console Overview... 8 Colligo Console Home Page...

More information

Eclipse Setup. Opening Eclipse. Setting Up Eclipse for CS15

Eclipse Setup. Opening Eclipse. Setting Up Eclipse for CS15 Opening Eclipse Eclipse Setup Type eclipse.photon & into your terminal. (Don t open eclipse through a GUI - it may open a different version.) You will be asked where you want your workspace directory by

More information

Lab 3. On-Premises Deployments (Optional)

Lab 3. On-Premises Deployments (Optional) Lab 3 On-Premises Deployments (Optional) Overview This Lab is considered optional to the completion of the API-Led Connectivity Workshop. Using Runtime Manager, you can register and set up the properties

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

IBM Mobile Portal Accelerator Enablement

IBM Mobile Portal Accelerator Enablement IBM Mobile Portal Accelerator Enablement Hands-on Lab Exercise on XDIME Portlet Development Prepared by Kiran J Rao IBM MPA Development kiran.rao@in.ibm.com Jaye Fitzgerald IBM MPA Development jaye@us.ibm.com

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

NearPoint 4.2 NEARPOINT SSR CLIENT QUICK START. 3. Viewing and Restoring Items and Files from the Mimosa Archive. 1.

NearPoint 4.2 NEARPOINT SSR CLIENT QUICK START. 3. Viewing and Restoring  Items and Files from the Mimosa Archive. 1. 1. Introduction The Mimosa Archive Self-service Retrieve (SSR) Client provides access to email items archived using the NearPoint system and files archived using the File System Archiving (FSA) option.

More information

Oracle Code Day Hands On Labs HOL

Oracle Code Day Hands On Labs HOL Oracle Code Day Hands On Labs HOL Overview This lab guides you through deploying and running the BlackJack application "locally" via a Tomcat server that is spawned by NetBeans. After successfully running

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 2.0 070513 1 of 18 Check the Java version 1. Launch a browser and go to http://www.java.com/en/download/installed.jsp?detect=jre

More information

SVN_Eclipse_at_home. 1. Download Eclipse. a. Go to: and select Eclipse IDE for Java Developers

SVN_Eclipse_at_home. 1. Download Eclipse. a. Go to:  and select Eclipse IDE for Java Developers 1. Download Eclipse SVN_Eclipse_at_home a. Go to: http://www.eclipse.org/downloads/ and select Eclipse IDE for Java Developers b. Select a mirror (which just means select which identical copy you should

More information

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online Getting Started With A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey, Create Charts, & Share Results Online Variables Crosstabs Charts PowerPoint Tables Introduction WorldAPP Analytics

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

CSE 332: Data Structures and Parallelism Autumn 2017 Setting Up Your CSE 332 Environment In this document, we will provide information for setting up Eclipse for CSE 332. The first s ection covers using

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Homework #7 Google Cloud Platform

Homework #7 Google Cloud Platform Homework #7 Google Cloud Platform This semester we are allowing all students to explore cloud computing as offered by the Google Cloud Platform. Using the instructions below one can establish a website

More information

MBNL UAD CITRIX FTP Solution

MBNL UAD CITRIX FTP Solution MBNL UAD CITRIX FTP Solution Introduction Serv-U Managed File Transfer (MFT) Server is a secure FTP server software that provides comprehensive security, automation, and centralized control for file transfers

More information

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to VMWare AirWatch User Guide for Web Browser You can access your AirWatch Files from a web browser. How to login AirWatch Cloud Storage? 1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari)

More information

Oracle Application Express Users Guide

Oracle Application Express Users Guide www.oracle.com/academy Oracle Application Express Users Guide Contents Topic: 1. Introduction 2 2. Logging in to Oracle Application Express 2 3. Oracle Application Express Components 3 4. Using SQL Commands

More information

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Overview This course includes optional practical exercises

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

VMware End User Computing Global Demo Environment Walkthrough Guide

VMware End User Computing Global Demo Environment Walkthrough Guide VMware End User Computing Global Demo Environment Walkthrough Guide Summary This VMware SmartGuide has been created to give a quick start walkthrough of accessing and operating the VMware End User Computing

More information

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf:

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: Ebrary User Guide Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: ebrary Mobile App Installation and Sign in procedure: Using ebrary App in ipad iphone ipod:

More information

GETTING STARTED. A Step-by-Step Guide to Using MarketSight

GETTING STARTED. A Step-by-Step Guide to Using MarketSight GETTING STARTED A Step-by-Step Guide to Using MarketSight Analyze any dataset Run crosstabs Test statistical significance Create charts and dashboards Share results online Introduction MarketSight is a

More information

UI-9 OS Installation Guide in SmartCLOUD Director. CITIC Telecom CPC. OS Installation Guide in SmartCLOUD Director

UI-9 OS Installation Guide in SmartCLOUD Director. CITIC Telecom CPC. OS Installation Guide in SmartCLOUD Director CITIC Telecom CPC OS Installation Guide in SmartCLOUD Director February 2016 This is a quick start guide for user who is totally new to SmartCLOUD Director. In this guide, we will demonstrate 2 ways on

More information

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Velocity@ocbc Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Version 1.0 1 of 18 Step 1: Check your browser version 1. Type www.whatismybrowser.com at the address bar and press

More information

Continuous Integration (CI) with Jenkins

Continuous Integration (CI) with Jenkins TDDC88 Lab 5 Continuous Integration (CI) with Jenkins This lab will give you some handson experience in using continuous integration tools to automate the integration periodically and/or when members of

More information

Lesson 7: Recipe Display Application Setup Workspace

Lesson 7: Recipe Display Application Setup Workspace Lesson 7: Recipe Display Application Setup Workspace Setup Workspace - 5 STEPS Step #1: Setup a new workspace in Cloud9 Step #2: Copy the files & folder to the local repository (Cloud9) Step #3: Create

More information

Build an App From a SAP Web IDE Template. Page 1/26

Build an App From a SAP Web IDE Template. Page 1/26 Build an App From a SAP Web IDE Template Page 1/26 1. Click on Services Tab Click on the Services tab in the navigation bar. Page 2/26 2. Open SAP Web IDE Scroll down and then click the SAP Web IDE tile

More information

CST VMWare Documentation

CST VMWare Documentation Login to the vsphere Web Client using a web browser by navigating to https://cstvmware.ridgewater.edu/ui/. Chrome is the best for this, but others will work. You will see a page like this: Login with your

More information

Immersion Day. Getting Started with Amazon S3. January Rev

Immersion Day. Getting Started with Amazon S3. January Rev January 2016 Rev 2015-01-15 Table of Contents Overview... 3 Create a Bucket in S3... 4 Add an Object to a Bucket... 5 View an Object... 6 Move an Object... 7 Delete an Object and Bucket... 8 Conclusion...

More information

Using SourceTree on the Development Server

Using SourceTree on the Development Server Using SourceTree on the Development Server This content has been modified to exclude client information. Such omissions include the client name and details of the client s infrastructure, such as domain

More information

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen.

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen. ABSTRACT Mashups are used to integrate data from SAP's cloud solution with data provided by an online Web service or application. Users can access the content provided by these Web services and applications.

More information

Creating a Custom TinyWebDB service

Creating a Custom TinyWebDB service Creating a Custom TinyWebDB service 1. TinyWebDB is an App Inventor component that allows you to store data persistently in a database on the web. Because the data is stored on the web instead of a particular

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

Build Bluemix applications for WebSphere Commerce

Build Bluemix applications for WebSphere Commerce Build Bluemix applications for WebSphere Commerce Marco Deluca (madeluca@ca.ibm.com) Software Architect IBM 12 January 2015 David Finn Software Engineer Intern IBM Octavio Roscioli Software Engineer Intern

More information

EVALUATION ONLY. WA2097 WebSphere Application Server 8.5 Administration on Linux. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2097 WebSphere Application Server 8.5 Administration on Linux. Student Labs. Web Age Solutions Inc. WA2097 WebSphere Application Server 8.5 Administration on Linux Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Eclipse/Websphere. Page 1 Copyright 2004 GPL License. All rights reserved.

Eclipse/Websphere. Page 1 Copyright 2004 GPL License. All rights reserved. 1. Installing plugin with Eclipse's update manager If you are using Eclipse 3.0 or higher you can use the update manager to automatically download and install the QJ-Pro plugin. Start Eclipse, go to the

More information

SAP Global Track and Trace Onboarding Guide

SAP Global Track and Trace Onboarding Guide SAP Global Track and Trace Onboarding Guide Document Version: Cloud 2019.04a Implementation Guide PUBLIC TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Prerequisite... 3 1.2 Overview... 3 2 SET UP AN SAP CLOUD

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

Polarion Trial Installation 17.2

Polarion Trial Installation 17.2 SIEMENS Polarion Trial Installation 17.2 POL002 17.2 Contents About this guide...................................................... 1-1 Before you begin.....................................................

More information

Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-12-13 Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials

More information

10.1 Getting Started with Container and Cloud-based Development

10.1 Getting Started with Container and Cloud-based Development Red Hat JBoss Developer Studio 10.1 Getting Started with Container and Cloud-based Development Starting Development of Container and Cloud-based Applications Using Red Hat JBoss Developer Studio Misha

More information

Creating a Dashboard Prompt

Creating a Dashboard Prompt Creating a Dashboard Prompt This guide will cover: How to create a dashboard prompt which can be used for developing flexible dashboards for users to utilize when viewing an analysis on a dashboard. Step

More information

Configure Eclipse - Part 2 - Settings and XML

Configure Eclipse - Part 2 - Settings and XML Configure Eclipse - Part 2 - Settings and XML See also Installing Eclipse and Configure Eclipse - Part This is additional Eclipse configuration - particularly to get XML aspects of Eclipse working reasonably.

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.5.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