Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider

Size: px
Start display at page:

Download "Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider"

Transcription

1 Deply Yur First Clud Fundry App t Any Clud Fundry Service Prvider cludwrkshp.rg/cludfundry Presenter: Develper Advcate, Redis Oct 2015 dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 1

2 Table f Cntents: 1. ABOUT THIS WORKSHOP TARGET AUDIENCE PRE- REQUISITES... 3 Exercise 1: Deply Hell Clud app... 3 Exercise 2: Deply "Cntact Frm" with a database... 6 dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 2

3 1. Abut This Wrkshp: This wrkshp will teach anyne with basic IT understanding hw t deply his r her first Clud Fundry Web app. 2. Target Audience: Other than installing sftware and typing cmmands in a terminal, we dn t use any advanced tls, s IT prs, develpers, architects, and prject managers shuld be able t cmplete this wrkshp. 3. Pre-requisites: Fr this wrkshp, yu will need: Yur wn Windws, Mac, r Linux cmputer with internet access A Clud Fundry Service Prvider (CFSP): Pivtal Web Services r IBM Bluemix. Other Clud Fundry service prviders may be used, but these instructins have nt been tested with them: Pivtal Web Services: run.pivtal.i (30-day trial) IBM Bluemix: bluemix.net (30-day trial) Stackat (by ActiveState): activestate.cm/stackat/sandbx (30 day trial) HP Helin Dev Platfrm (cming sn) CenturyLink (cming sn) An address. Like many free Clud Cmputing services, Clud Fundry service prviders require that yu have a valid . Nte: Pivtal Web Services als requires that yu prvide an SMS-enabled phne number, t verify that yu are nt a bt. Exercise 1: Deply and Scale the Hell Clud app 1. Prepare yur applicatin: a. Dwnlad (r create) yur first applicatin Yu can dwnlad the Hell Clud app created fr this exercise frm Unzip the hellclud.zip archive int any directry yu want (such as c:/wrkshp (r ~/wrkshp). Navigate t the new hellclud app flder (such as c:/wrkshp/hellclud (r ~/wrkshp/hellclud). Mdify the text in the manifest.yml file as required t deply yur app. Change hst: prperty frm cf-nde-hellclud-dcn t a unique hstname with yur initials. Fr example, yu might change the last three letters t that f yur wn initials, such as xyz (such as cf-nde-hellclud-xyz). dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 3

4 Quiz: What happens if yu run this app cde n a server that is nt Clud Fundry? 2. Create yur accunt: a. Sign-up fr yur free trial: Pivtal Web Services, 60-day trial: IBM Bluemix, 30-day trial: b. Check yur . Click the link t verify yur address. Pivtal will als require that yu cnfirm yur mbile phne number via SMS text message. c. Create an rg, e.g., mydevteam. Nte: Bluemix will create an rg fr yu based n yur address. 3. Setup yur develpment space: a. Dwnlad the Clud Fundry CLI: Visit Scrll dwn t the "Dwnlads" sectin f the github page Dwnlad the apprpriate (stable) installer b. Install the Clud Fundry CLI: Fr Windws: Unzip the installer-windws.zip file yu dwnladed abve. Run the cf_installer.exe that was unzipped by the previus step This will create a flder: C:\Prgram Files (x86)\cludfundry Add the C:\Prgram Files (x86)\cludfundry t yur %PATH% variable Open the Cmmand app (cmd.exe) Type the fllwing cmmand t make sure the CLI was installed crrectly: Fr Mac: > cf help Open the Terminal applicatin. Type the fllwing cmmand t make sure the CLI was installed crrectly: $ cf help c. Run the fllwing cmmand t lg int yur Clud Fundry service prvider accunt: > cf lgin -a r > cf lgin -a When prmpted, enter the address and passwrd yu used t create yur Clud Fundry Service Prvider accunt. d. Run the fllwing cmmands t see details abut yur rg and space: dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 4

5 > cf apps > cf rgs > cf spaces > cf target - [rg] -s [space] example: > cf target - mydevteam -s develpment e. Push yur app (run this cmmand frm within yur hellclud app flder): > cf push f. Run the apps cmmand again and see yur new app listed: > cf apps g. Run the app cmmand t see health and status details abut a specific app: > cf app [app name] example: > cf app hellclud h. Run the scale cmmand t increase the number f instances running yur new app: > cf scale [app name] -i [# f instances] example: > cf scale hellclud i 2 i. Open yur Web brwser t the URL prvided by the utput f the cf push prcess. It shuld lk smething like this: Fr Pivtal Web Services: cf-nde-hellclud-<yur initials>.cfapps.i Fr IBM Bluemix: cf-nde-hellclud-<yur initials>.mybluemix.net j. Open the Web cnsle and view the dashbard fr yur app: See yur app listed within the develper space dashbard. Click n yur app t see the app s dashbard. Click the Plus (+) buttn tw mre times t add a cuple mre instances t yur app. View yur app in the Web brwser again t see the new instances in use. Yu may have t refresh the Web brwser a few times. k. G back t yur terminal and shut dwn yur app: Reduce the number f app instances t ne: > cf scale [app name] -i 1 Then stp yur instance, s yu dn t use up any mre f yur free trial hurs: > cf stp [app name] > cf apps Finally, delete yur instance, s yu dn t take up any space at all > cf delete [app name] dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 5

6 > cf apps l. View the lgs and events yu have generated s far: T view Events: > cf events [app name] T view Lgs: > cf lgs [app name] m. View ther infrmatin f interest, such as buildpacks and qutas: > cf buildpacks > cf qutas Exercise 2: Deply Cntact Frm and a Database Service 1. Prepare yur applicatin: a. Dwnlad (r create) yur applicatin ( Unzip it int c:/wrkshp/cntactfrm (r ~/wrkshp/cntactfrm). Navigate int this new app flder. Mdify the surce cde in the manifest.yml file. Change hst prperty frm cf-nde-cntactfrm t a unique hstname. Fr example, yu might add yur wn initials t cntactfrm t create a unique hstname, such as cntactfrm-dcn. b. (Optinal) Setup a runtime envirnment n yur cmputer and test yur app: Install Nde.js: Install MySQL: Install MySQL Wrkbench: c. Push yur app: > cf push d. Test yur app: Open yur Web brwser t the URL prvided by the utput f the push cmmand. It shuld lk smething like this: Fr Pivtal Web Services: cf-nde-cntactfrm-dcn.cfapps.i Fr IBM Bluemix: cf-nde-cntactfrm-dcn.mybluemix.net Enter any name, , and message int the frm fields. Press Enter t submit the Web frm. Yu will see an errr message. Can yu guess why? It s because yu dn t have a database setup fr yur app yet. dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 6

7 2. Add a database service t yur applicatin: a. View the list f marketplace services prvided by yur CFSP and add the ClearDB service. ClearDB is a highly available MySQL service which will be used by this cntact frm app. Cmmand line: > cf marketplace > cf marketplace s cleardb Web cnsle: Click Marketplace n the Web cnsle dashbard. b. Add a database service t yur app. There are three ways f cnsuming service instance credentials within yur applicatin: Aut-cnfiguratin, CFRuntime, and manual. We will use the manual prcess. Use the Web Cnsle t bind a ClearDB service t yur app: In yur web brwser, select the Develpment space n the menu n the left side f the screen. Select Add Service. Brwse the different services available. Sme f these may be hsted by yur CFSP, thers may be hsted utside f yur CFSP. Select ClearDB MySQL Database. Click Select this plan t select the free plan. Enter an Instance Name, e.g., cf-nde-cntactfrm-mysql-dcn. Bind the service t the app: Select yur app, e.g., cf-nde-cntactfrm-dcn. Click Add. Use the cmmand line: > cf start cf-nde-cntactfrm > cf create-service cleardb spark cleardb-mine > cf bind-service cf-nde-cntactfrm clear-db-mine c. Find the service variables: In yur terminal windw, type: > cf env [app name] example: > cf env cf-nde-cntactfrm Lk fr the fllwing ClearDB prperties: hstname: username: passwrd: name: dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 7

8 Find and replace these prperty values in the server.js file and replace them with the envirnmental variables frm abve: hstname -> hst username -> user passwrd -> passwrd name -> database Use MySQL Wrkbench r any ther tl yu are familiar with t cnnect t yur ClearDB database service. Then create a database table called cntact with the fllwing fields: name varchar(50) varchar(50) message text(50) 3. Re-pen yur Web brwser t the URL prvided by the utput f the cf push prcess. Use cf app [app name] t view the URL again. Enter yur name, , and message int the cntact frm. Press Enter t submit the frm. Yu will n lnger see an errr message because yur database nw wrks. Exercise 3: Registratin Frm with verificatin Cming sn Exercise 4: Registratin Frm with SMS verificatin Cming sn Fr mre infrmatin visit dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen 8

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

Webalo Pro Appliance Setup

Webalo Pro Appliance Setup Webal Pr Appliance Setup 1. Dwnlad the Webal virtual appliance apprpriate fr yur virtualizatin infrastructure, using the link yu were emailed. The virtual appliance is delivered as a.zip file that is n

More information

Ten Steps for an Easy Install of the eg Enterprise Suite

Ten Steps for an Easy Install of the eg Enterprise Suite Ten Steps fr an Easy Install f the eg Enterprise Suite (Acquire, Evaluate, and be mre Efficient!) Step 1: Dwnlad the eg Sftware; verify hardware and perating system pre-requisites Step 2: Obtain a valid

More information

X7500 Series, X4500 Scanner Series MFPs: LDAP Address Book and Authentication Configuration and Basic Troubleshooting Tips

X7500 Series, X4500 Scanner Series MFPs: LDAP Address Book and Authentication Configuration and Basic Troubleshooting Tips X7500 Series, X4500 Scanner Series MFPs: LDAP Address Bk and Authenticatin Cnfiguratin and Basic Trubleshting Tips Lexmark Internatinal 1 Prerequisite Infrm atin In rder t cnfigure a Lexmark MFP fr LDAP

More information

Email Setup Instructions Glion Online

Email Setup Instructions Glion Online Email Setup Instructins Glin Online Incming Server: POP3 r IMAP Server Name: my.campuscruiser.cm POP3 Prt: 110 SSL : 995 r IMAP Prt: 143 SSL : 993 User Name / Accunt: Name.lastname@student.glinnline.cm

More information

SoftLayer Development Lab

SoftLayer Development Lab SftLayer Develpment Lab Phil Jacksn, Chief Evangelist, SftLayer pjacksn@sftlayer.cm @underscrephil Brad DesAulniers, Sftware Engineer, Advanced Clud Slutins IBM GTS bradd@us.ibm.cm @cb_brad Angel Tmala-Reyes,

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

CenterPoint Accounting for Agriculture Network (Domain) Installation Instructions

CenterPoint Accounting for Agriculture Network (Domain) Installation Instructions CenterPint Accunting fr Agriculture Netwrk (Dmain) Installatin Instructins Dcument # Prduct Mdule Categry 2257 CenterPint CenterPint Installatin This dcument describes the dmain netwrk installatin prcess

More information

Cloud Services MDM. Windows 8 User Guide

Cloud Services MDM. Windows 8 User Guide Clud Services MDM Windws 8 User Guide 10/24/2014 CONTENTS Overview... 2 Supprted Devices... 2 System Capabilities... 2 Enrllment and Activatin... 3 Prcess Overview... 3 Verify Prerequisites... 3 Dwnlad

More information

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and ii Cpyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.cm/ We have attempted t make these dcuments cmplete, accurate, and useful, but we cannt guarantee them t be perfect. When we

More information

Email Server Settings

Email Server Settings Email Server Settings All email accunts we hst, regardless f the dmain name, will use the fllwing server settings. T use a secure cnnectin, use the settings marked "SSL." Incming Server Type: Server Name:

More information

CallRex 4.2 Installation Guide

CallRex 4.2 Installation Guide CallRex 4.2 Installatin Guide This dcument describes hw t install CallRex 4.2. It cvers the fllwing: CallRex 4.2 Cmpnents. Server Prerequisites. Perfrming the Installatin. Changing the Accunt Used by CallRex

More information

FAQ Frequently Asked Questions & Answers for using the online assessment platform of ΜanpowerGroup

FAQ Frequently Asked Questions & Answers for using the online assessment platform of ΜanpowerGroup FAQ Frequently Asked Questins & Answers fr using the nline assessment platfrm f ΜanpwerGrup Versin 1.0 Athens, July 2014 1 Frequently Asked Questins & Answers regarding the use f the nline assessment platfrm

More information

Setup O365 mailbox access on MACs

Setup O365 mailbox access on MACs Setup O365 mailbx access n MACs Yu can use a web brwser r an email prgram n yur cmputer t cnnect t yur email accunt. Web brwser access Yu cnnect yur Apple cmputer t yur email accunt by using a web brwser

More information

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE MIGRATION GUIDE Mathieu Schires Versin 1.0 Published 06/03/2015 This dcument describes the preparatin and steps t fllw t upgrade an OVD farm frm Inuvika OVD 0.9.x

More information

CSAT Account Management

CSAT Account Management CSAT Accunt Management User Guide March 2011 Versin 2.1 U.S. Department f Hmeland Security 1 CSAT Accunt Management User Guide Table f Cntents 1. Overview... 1 1.1 CSAT User Rles... 1 1.2 When t Update

More information

AP Capstone Digital Portfolio - Teacher User Guide

AP Capstone Digital Portfolio - Teacher User Guide AP Capstne Digital Prtfli - Teacher User Guide Digital Prtfli Access and Classrm Setup... 2 Initial Lgin New AP Capstne Teachers...2 Initial Lgin Prir Year AP Capstne Teachers...2 Set up Yur AP Capstne

More information

Towne Lake HOA Online File Storage

Towne Lake HOA Online File Storage Twne Lake HOA Online File Strage Purpse The purpse f this dcument is t describe the nline clud strage used by the Twne Lake HOA. The HOA utilizes the free Ggle Drive clud strage service which prvides a

More information

Getting started with Android

Getting started with Android Getting started with Andrid Befre we begin, there is a prerequisite, which is t plug the Andrid device int yur cmputer, and lad the drivers fr the OS. In writing this article, I was using Windws XP, 7

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

Pronestor Visitor. Module 11. Installation of additional modules Pronestor Visitor Page 11.0 11.6

Pronestor Visitor. Module 11. Installation of additional modules Pronestor Visitor Page 11.0 11.6 Prnestr Visitr Prnestr Visitr Mdule 11 Installatin f additinal mdules Prnestr Visitr Page 11.0 11.6 A guide t the installatin f additinal mdules in Prnestr Visitr. Hst imprt (AD integratin) Page 11.1 11.3

More information

Completing Contracts Online

Completing Contracts Online Cmpleting Cntracts Online Getting started using zipfrm Plus t cmplete cntracts nline quickly and efficiently The ziplgix Advantage Seamless prfessinal wrkflw Easy t use Reduced data entry Always accurate,

More information

1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM

1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM Web based Learning Platfrm Instructins 1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM In rder t access the sftware prgrams (e.g., ERDAS, ArcMap) needed t cmplete the lab assignments, yu will need t

More information

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public Intel Hybrid Clud Management Prtal Update FAQ Audience: Public Purpse: Prepare fr the launch f the Intel Hybrid Clud Platfrm multi-user/multi-tier update Versin: Final FAQs What s new in the Intel Hybrid

More information

A Beginner s Guide to Building Virtual Web Servers

A Beginner s Guide to Building Virtual Web Servers A Beginner s Guide t Building Virtual Web Servers Cntents Intrductin... 1 Why set up a web server?... 2 Installing Ubuntu 13.04... 2 Netwrk Set Up... 3 Installing Guest Additins... 4 Updating and Upgrading

More information

Remote Setup and Configuration of the Outlook Email Program Information Technology Group

Remote Setup and Configuration of the Outlook Email Program Information Technology Group Remte Setup and Cnfiguratin f the Outlk Email Prgram Infrmatin Technlgy Grup The fllwing instructins will help guide yu in the prper set up f yur Outlk Email Accunt. Please nte that these instructins are

More information

ISAM TO SQL MIGRATION IN SYSPRO

ISAM TO SQL MIGRATION IN SYSPRO 118 ISAM TO SQL MIGRATION IN SYSPRO This dcument is aimed at assisting yu in the migratin frm an ISAM data structure t an SQL database. This is nt a detailed technical dcument and assumes the reader has

More information

Email Setup PPD IT How-to Guides June 2010

Email Setup PPD IT How-to Guides June 2010 Email Setup Cntents Email Infrmatin... 2 IMAP and POP3 settings... 2 Cnfiguring Micrsft Outlk 2007... 2 Archiving mail... 3 Cnfiguring AutArchive in Micrsft Outlk 2007... 3 Access frm ff site... 4 Cnfiguring

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

How To Make A New System For A New Generation Of Computers In The European Republic

How To Make A New System For A New Generation Of Computers In The European Republic Clud Services Email Migratin Assisted Migratin Admin Guide 10/19/2014 ACCOUNT ACTIVATION AND DATA MIGRATION ASSISTED CLOUD MIGRATION Fr mre cmplex migratin prjects, ur Prfessinal Services persnnel migrate

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme Hyperin Translatin Manager Release 9.3.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 What is Translatin Manager 9.3.1?... 1 Cmpatible Sftware... 2 Supprted Internatinal Operating

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws 8 The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Lab 12A Configuring Single Sign On Service

Lab 12A Configuring Single Sign On Service Lab 12A Cnfiguring Single Sign On Service Intrductin In this lab exercise we will see hw t cnfigure the Single Sign On Service and cnfigure Individual and Grup Enterprise Applicatin Definitins. The lab

More information

Junos Pulse Instructions for Windows and Mac OS X

Junos Pulse Instructions for Windows and Mac OS X Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.

More information

Kaltura Video Solutions for Sharepoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Solutions for Sharepoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Slutins fr Sharepint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015

More information

HUSKYMONKEY WS Real Estate CRM Working with Advertisement Portals

HUSKYMONKEY WS Real Estate CRM Working with Advertisement Portals HUSKYMONKEY WS Real Estate CRM Wrking with Advertisement Prtals Yur destinatin fr prfessinal web slutins hm@huskymnkey.rg www.huskymnkey.rg huskymnkey Cpyright 2013. All rights reserved. Wrking with Prtals

More information

Adobe Sign. Enabling Single Sign-On with SAML Reference Guide

Adobe Sign. Enabling Single Sign-On with SAML Reference Guide Enabling Single Sign-On with SAML Reference Guide 2016 Adbe Systems Incrprated. All Rights Reserved. Prducts mentined in this dcument, such as the services f identity prviders Micrsft Active Directry Federatin,

More information

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Extensin fr SharePint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument

More information

Citrix XenServer from HP Getting Started Guide

Citrix XenServer from HP Getting Started Guide Citrix XenServer frm HP Getting Started Guide Overview This guide utlines the basic setup, installatin, and cnfiguratin steps required t begin using yur Citrix XenServer frm HP. A first time wizard-based

More information

AvePoint Perimeter Pro 1.6. Secured Share User Guide

AvePoint Perimeter Pro 1.6. Secured Share User Guide AvePint Perimeter Pr 1.6 Secured Share User Guide Issued May 2016 Table f Cntents What s New in this Guide... 4 Overview... 5 Internal Users... 6 Site Cllectin Administratrs... 7 External Prtal Users...

More information

Kurzweil 3000 Version 12 Web License

Kurzweil 3000 Version 12 Web License Kurzweil 3000 Versin 12 Web License Web Licensing: Instructinal Prcess Web Licensing (V12 with VPORT): Teachers can nw: Create Kurzweil 3000 Assignments and save t a central lcatin Publish and Assign wrk

More information

Regions File Transmission

Regions File Transmission Regins File Transmissin Getting Started with FTPS Regins Bank Member FDIC Revised 022113 It s time t expect mre. Table f Cntents Getting Started with FTPS Setting Up FTPS Cnnectin in FTP Client 3 4 9 Regins

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws XP The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Spamguard SPAM Filter

Spamguard SPAM Filter Spamguard SPAM Filter The ECU Spam Firewall (spamguard) is designed t blck r quarantine e-mail messages that are r lk like spam befre it reaches ur email servers. The spam firewall will NOT catch all f

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

Telelink 6. Installation Manual

Telelink 6. Installation Manual Telelink 6 Installatin Manual Table f cntents 1. SYSTEM REQUIREMENTS... 3 1.1. Hardware Requirements... 3 1.2. Sftware Requirements... 3 1.2.1. Platfrm... 3 1.2.1.1. Supprted Operating Systems... 3 1.2.1.2.

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console Installatin Guide Installatin Guide Marshal Reprting Cnsle Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 2 Sftware Prerequisites 3 Installatin Prcedures 3 Appendix: Enabling

More information

Job Aid for: Secure File Transfer Service (SFTS)

Job Aid for: Secure File Transfer Service (SFTS) Jb Aid fr: Secure File Transfer Service (SFTS) Page 1 f 13 Dcument Updates Date Descriptin Versin 11.10.2011 Jb Aid Secure File Transfer 1.0 04.12.2015 Revised Versin Incrprates changes related t MCR 1150

More information

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2. Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...

More information

Steps to fix the product is not properly fixed issue for international clients.

Steps to fix the product is not properly fixed issue for international clients. Axxya Systems supprt cntact details 1-800-709-2977 ext 9 within US 1-425-999-4350 ext 9 utside f US Email supprt@axxya.cm Technical FAQ -- www.nutritinistpr.cm/help-center/ Steps t fix the prduct is nt

More information

Service Desk Self Service Overview

Service Desk Self Service Overview Tday s Date: 08/28/2008 Effective Date: 09/01/2008 Systems Invlved: Audience: Tpics in this Jb Aid: Backgrund: Service Desk Service Desk Self Service Overview All Service Desk Self Service Overview Service

More information

PENNSYLVANIA SURPLUS LINES ASSOCIATION Electronic Filing System (EFS) Frequently Asked Questions and Answers

PENNSYLVANIA SURPLUS LINES ASSOCIATION Electronic Filing System (EFS) Frequently Asked Questions and Answers PENNSYLVANIA SURPLUS LINES ASSOCIATION Electrnic Filing System (EFS) Frequently Asked Questins and Answers 1 What changed in Release 2.0?...2 2 Why was my accunt disabled?...3 3 Hw d I inactivate an accunt?...4

More information

Creating automated reports using VBS AN 44

Creating automated reports using VBS AN 44 Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin

More information

E-Biz Web Hosting Control Panel

E-Biz Web Hosting Control Panel 1 f 38 E-Biz Web Hsting Cntrl Panel This dcument has been created t give yu a useful insight in t the Hsting Cntrl Panel available with E-Biz hsting services. Please nte: Optins available are dependent

More information

Pronestor Room & Catering

Pronestor Room & Catering Prnestr Rm Prnestr Rm & Catering Mdule 1 Technical requirements & installatin - Prnestr Rm & Catering Page 1.0 1.5 A guide t all the necessary server preparatins fr the installatin f Prnestr Rm & Catering.

More information

Treasury Gateway Getting Started Guide

Treasury Gateway Getting Started Guide Treasury Gateway Getting Started Guide Treasury Gateway is a premier single sign-n and security prtal which allws yu access t multiple services simultaneusly thrugh the same sessin, prvides cnvenient access

More information

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

NEC CLOUD STORAGE. User Guide. Version: R03.1

NEC CLOUD STORAGE. User Guide. Version: R03.1 NEC CLOUD STORAGE User Guide Versin: R03.1 2013 1 INTRODUCTION... 5 1.1 GOALS OF THIS DOCUMENT... 5 1.2 TERMS, ACRONYMS AND ABBREVIATIONS... 5 2 INTRODUCTION TO NEC CLOUD STORAGE... 6 2.1 WHAT IS NEEDED

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

How to join an iconnect web conferencing session (using the Blackboard web-based program)

How to join an iconnect web conferencing session (using the Blackboard web-based program) Hw t jin an icnnect web cnferencing sessin (using the Blackbard web-based prgram) T participate in a web cnference yu will require Internet access, headset and micrphne (web cam is ptinal) r at least a

More information

Create a Non-Catalog Requisition

Create a Non-Catalog Requisition Create a Nn-Catalg Requisitin Jb Aid This jb aid describes hw t create a standard nn-catalg (i.e., nn-ibuynu) purchase request. REFER TO ADDITIONAL TRAINING GUIDES If yu need t create a special requisitin

More information

Getting Started Guide

Getting Started Guide AnswerDash Resurces http://answerdash.cm Cntextual help fr sales and supprt Getting Started Guide AnswerDash is cmmitted t helping yu achieve yur larger business gals. The utlined pre-launch cnsideratins

More information

BASIC TECHNICAL FEATURE DESCRIPTION

BASIC TECHNICAL FEATURE DESCRIPTION BASIC TECHNICAL FEATURE DESCRIPTION AUDRIGA EMAIL AND GROUPWARE MIGRATION SERVICE Versin 1.3 Datum 20.09.2013 Kntakt Hans-Jörg Happel (happel@audriga.cm) TECHNICAL FEATURE DESCRIPTION This is a basic technical

More information

STANLEY Healthcare University Training & Certification Portal. Student Quick Reference Guide

STANLEY Healthcare University Training & Certification Portal. Student Quick Reference Guide STANLEY Healthcare University Training & Certificatin Prtal Student Quick Reference Guide Table f Cntents Registering fr a STANLEY Healthcare University Site User Accunt... 3 Lgging int the STANLEY Healthcare

More information

Archiving IVTVision Video (Linux)

Archiving IVTVision Video (Linux) Archiving IVTVisin Vide (Linux) 1 Intrductin Because IVTVisin Server recrds vide using a straightfrward perating system file structure, archiving vide shuld be simple fr any IT prfessinal. This dcument

More information

Email Subscription Training Contents

Email Subscription Training Contents Email Subscriptin Training Cntents Email Subscriptin Training...1 Email Subscriptin Training Tpics...2 Hw d visitrs subscribe t a list?...2 Hw d visitrs unsubscribe frm a list?...3 Hw t Send an Email Ntificatin?...4

More information

AvePoint Privacy Impact Assessment 1

AvePoint Privacy Impact Assessment 1 AvePint Privacy Impact Assessment 1 User Guide Cumulative Update 2 Revisin E Issued February 2015 Table f Cntents Table f Cntents... 2 Abut AvePint Privacy Impact Assessment... 5 Submitting Dcumentatin

More information

Backing Up and Restoring Your MySQL Database From the command prompt

Backing Up and Restoring Your MySQL Database From the command prompt Backing Up and Restring Yur MySQL Database Frm the cmmand prmpt In this article, it will utline tw easy ways f backing up and restring databases in MySQL. The easiest way t backup yur database wuld be

More information

Title: How Do You Handle Exchange Mailboxes for Employees Who Are No Longer With the Company

Title: How Do You Handle Exchange Mailboxes for Employees Who Are No Longer With the Company Dean Suzuki Blg Title: Hw D Yu Handle Exchange Mailbxes fr Emplyees Wh Are N Lnger With the Cmpany Created: 1/21/2013 Descriptin: I asked by ne f my custmers, hw d yu handle mailbxes fr emplyees wh are

More information

Application Advisories for Data Integrator for Non- EDI location

Application Advisories for Data Integrator for Non- EDI location Applicatin Advisries fr Data Integratr fr Nn- EDI lcatin It is a standalne Windws based applicatin that will be installed at every Cmmissinerate. Applicatin will be used fr filling Bill f Entry and Shipping

More information

3. Change the Incoming Mail (POP3) information to the POP3 or Incoming Mail Server Name provided when your account is setup.

3. Change the Incoming Mail (POP3) information to the POP3 or Incoming Mail Server Name provided when your account is setup. AT&T Business Internet Mail Setup fr AT&T DSL Cnfigure yur Email Client After yur AT&T E-Mail accunt has been activated, fllw the steps utlined belw t cnfigure yur POP3-cmpliant email client t retrieve

More information

Configuring Microsoft Outlook Email Accounts. Island Barn Reservoir Sailing Club May 2010

Configuring Microsoft Outlook Email Accounts. Island Barn Reservoir Sailing Club May 2010 Cnfiguring Micrsft Outlk Email Accunts Island Barn Reservir Sailing Club May 2010 Intrductin The fllwing article explains hw t dwnlad mail frm Island Barn s email hsting accunt using Micrsft Outlk. The

More information

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server Instructins fr Cnfiguring a SAFARI Mntage Managed Hme Access Expansin Server ~ Please read these instructins in their entirety befre yu begin. ~ These instructins explain hw t add a SAFARI Mntage Managed

More information

Staff and Student VPN User Documentation

Staff and Student VPN User Documentation Staff and Student VPN User Dcumentatin This dcument is brken dwn int the fllwing sectins fr yur cnvenience. Quick installatin guide Installing the VPN sftware (detailed versin) System Requirements Cnnecting

More information

Durango Merchant Services QuickBooks SyncPay

Durango Merchant Services QuickBooks SyncPay Durang Merchant Services QuickBks SyncPay Gateway Plug-In Dcumentatin April 2011 Durang-Direct.cm 866-415-2636-1 - QuickBks Gateway Plug-In Dcumentatin... - 3 - Installatin... - 3 - Initial Setup... -

More information

MPDS Configuration Sheet Windows 2000

MPDS Configuration Sheet Windows 2000 MPDS Cnfiguratin Sheet Windws 2000 Cnnecting t the Internet via a Mbile Packet Data service terminal Setting up a Windws 2000 mdem device The PC cmmunicates with the MPDS terminal as if it were a mdem.

More information

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool Cnfiguring BMC AREA LDAP Using AD dmain credentials fr the BMC Windws User Tl Versin 1.0 Cnfiguring the BMC AREA LDAP Plugin fr Dmain Username and Passwrds Intrductin...3 LDAP Basics...4 What is LDAP and

More information

HR Management Information (HRS)

HR Management Information (HRS) HR Management Infrmatin (HRS) Fact Sheet N 10. Managing Access t Claims Online T give access t ther departmental staff yu must be a Site Leader ie a Principal r Preschl Directr. If yu are nt a site leader

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

Employee Self Service (ESS) Quick Reference Guide ESS User

Employee Self Service (ESS) Quick Reference Guide ESS User Emplyee Self Service (ESS) Quick Reference Guide ESS User Cntents Emplyee Self Service (ESS) User Quick Reference Guide 5 Intrductin t ESS 5 Getting Started 6 Prerequisites 6 Accunt Activatin 7 Hw t activate

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console INSTALLATION GUIDE Marshal Reprting Cnsle Installatin Guide Marshal Reprting Cnsle March, 2009 Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 3 Sftware Prerequisites 3 Installatin

More information

Citrix Client (PN Agent) Upgrade Citrix Receiver 3.3

Citrix Client (PN Agent) Upgrade Citrix Receiver 3.3 1 P a g e February, 2013 Citrix Client (PN Agent) Upgrade Citrix Receiver 3.3 OCFS is in the prcess f upgrading the Citrix Server Envirnment, which requires an update t the Citrix Client (PN Agent). The

More information

Using the 3M Cloud Library: Kindle Fire

Using the 3M Cloud Library: Kindle Fire Chse frm nearly 3,000 different ebk titles in the Oak Park Public Library s cllectin, including the latest bestsellers, using yur Kindle Fire and the 3M Clud Library. Please nte: Installatin is a special

More information

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament.

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament. NASP Pr Turnament Instructins Updated 11/4/13 - NASP Pr Turnament Step by Step It is HIGHLY recmmended that yu read and fllw these instructins. Als, print these instructins and have them available at yur

More information

ATL: Atlas Transformation Language. ATL Installation Guide

ATL: Atlas Transformation Language. ATL Installation Guide ATL: Atlas Transfrmatin Language ATL Installatin Guide - versin 0.1 - Nvember 2005 by ATLAS grup LINA & INRIA Nantes Cntent 1 Intrductin... 3 2 Installing ADT frm binaries... 3 2.1 Installing Eclipse and

More information

Network Intrusion Detection

Network Intrusion Detection Netwrk Intrusin Detectin Best f Breed Prtectin with SNORT Implementing Snrt Snrt can be readily implemented with the help f a special Linux distributin named Sentinix (http://www.sentinix.rg). Wait a minute,

More information

Simmons GMAIL Client Setup

Simmons GMAIL Client Setup Simmns GMAIL Client Setup Supprted IMAP client list: Belw is a list f mail clients and mbile devices yu can synchrnize with yur Gmail. Mail Clients Outlk Express (Windws) Outlk 2003 (Windws) Outlk 2007/2010

More information

GETTING STARTED With the Control Panel Table of Contents

GETTING STARTED With the Control Panel Table of Contents With the Cntrl Panel Table f Cntents Cntrl Panel Desktp... 2 Left Menu... 3 Infrmatin... 3 Plan Change... 3 Dmains... 3 Statistics... 4 Ttal Traffic... 4 Disk Quta... 4 Quick Access Desktp... 4 MAIN...

More information

AvePoint High Speed Migration Supplementary Tools

AvePoint High Speed Migration Supplementary Tools AvePint High Speed Migratin Supplementary Tls User Guide Issued April 2016 1 Table f Cntents Intrductin... 3 MD5 Value Generatr Tl... 3 Azure Data Uplad Tl... 3 Dwnlading and Unpacking the Tl... 4 Using

More information