BioSense 2.0. User Community Extension Project. Getting Started With The Data Lockers. Information Contributed by:

Size: px
Start display at page:

Download "BioSense 2.0. User Community Extension Project. Getting Started With The Data Lockers. Information Contributed by:"

Transcription

1 BioSense 2.0 User Community Extension Project Getting Started With The Data Lockers Information Contributed by: Harold Gil, County of San Diego, Public Health Services Edward Castagna, Maine Centers for Disease Control and Prevention Robby Beum, Denver Health and Hospital Authority 1

2 Contents Purpose..3 Background...4 Introducing The Data Lockers..6 Raw Data Locker..6 Binned Data Locker..6 Binning Algorithm...6 Getting Access To The Data Lockers...8 Exporting Data From The Lockers.. 10 phpmyadmin...10 Front End.17 RStudio Server. 20 R Script Examples Data Quality Metrics...31 Mapping Syndromes to Select Fields..33 Automating R Script Runs..34 2

3 Purpose Our intention in writing this guide is to empower our colleagues with the information necessary to smooth the transition from BioSense technical novice to expert, enhancing their capacity to solve BioSense-related problems with solutions that will benefit many jurisdictions. 3

4 Background The BioSense 2.0 Program is a nationwide collaborative system with the aim of protecting and improving population health by providing timely information for better decision-making. BioSense supports this aim by improving situational-awareness of syndromes within and across jurisdictions. A core component of BioSense is a cloud-enabled, web-based platform that provides several surveillance capabilities. BioSense is continually evolving to meet the needs of public health officials. Several public health agencies (PHAs) are already participating in BioSense. The rate at which PHAs are joining the BioSense community is rapidly increasing. We can expect that in the near future, BioSense will become even more valuable in supporting syndromic surveillance activities across the nation. As the BioSense community grows, more syndromic surveillance obstacles will arise that will require a strongly skilled and informed user-base in order to effectively tackle. This guide contains essential information to improve users abilities to conceive and implement solutions to BioSense-related problems. A focus of this guide is on the implementation of solutions with a statistical web application installed on the BioSense servers, RStudio Server. The decision to use emphasize the utility of the RStudio Server application was not trivial. The overwhelming majority of PHAs employ Statistical Analysis System (SAS) for their surveillance operations. SAS solution implementations would, therefore, be much easier and faster for PHAs to adopt. However, the technical features of the BioSense lockers are such that connection to the lockers is not possible using a local installation of any analytics application (SAS, SPSS, Stata, R, etc) on a Windows or Macintosh operating system (OS) machine. Connection to the BioSense lockers from a local machine can only be achieved if that machine has a Linux OS. The BioSense Redesign Team provides a way for users to circumvent this issue by accessing and connecting to the lockers via the phpmyadmin and RStudio Server applications, both of which are installed on the BioSense servers. However, only with RStudio Server can users set up an automated process by which to export data from the lockers. 4

5 This guide will teach R routines necessary for working with the BioSense lockers. Users looking to further their R expertise can check out the resources below. SAS is not covered in this guide since most users are already familiar with it or have local resources for it available at their respective PHAs. It is likely that most PHAs will begin designing and implementing hybrid solutions employing both RStudio Server and SAS. R Learning Resources Data Camp ( Take the free Introduction to R lessons. Data Camp s courses are deployed on a unique platform that provide lesson information alongside R s command line interface so that you can learn by doing. No previous programming experience is necessary for Introduction to R. Follow-up Introduction to R with Data Camp s Data Analysis and Statistical Inference labs. Coursera s R Programming ( Another free introductory course for R. Quick R ( This site serves as a great resource once you are familiar with R (beyond Data Camp s Introduction to R lessons). Snippets of R code for all sorts of data management or analysis tasks are organized here. 5

6 Introducing The Data Lockers The BioSense lockers are MySQL databases hosted on the Amazon GovCloud servers. The BioSense servers are actually Amazon GovCloud servers. Each BioSense locker contains one or many MySQL database tables. There are several BioSense lockers, but the two most popular are: the raw data locker and the binned data locker. Raw Data Locker The raw data locker contains data that has been submitted to BioSense and been filtered before making into this locker. The raw locker is a valuable source of information, in large part because one of the tables in this database possesses a chief complaint field (a data field that is commonly mined by PHAs). The raw locker contains two tables: the raw data table and the exceptions table. The former contains the raw data records that have passed the filter criteria, the latter contains descriptions of records that have not passed through the filter. Binned Data Locker The binned data locker is populated by records from the raw data locker that have undergone additional processing. As mentioned above, raw data records possess a chief complaint field. The binned data records, on the other hand, possess a field called binvalue. The binvalue field is the syndrome/sub-syndrome category that one or more raw data records fell into based on the information from four raw data fields: diagnosis code, diagnosis text, procedure code, and chief complaint. A raw record might be assigned a binned record with no binvalue at all. Multiple raw records within a 48 hour period that fall under a single syndrome/sub-syndrome will show up as a single binned record in the binned data locker. The Binning Algorithm Note: You MUST first log in through the BioSense main page, before you can access the BioSense binning algorithm 6

7 webpage below. The binning algorithm is described in detail on this webpage: For more information regarding the BioSense lockers (architecture and function), please see the excellent webinar hosted by the BioSense Redesign Team, Understanding the BioSense 2.0 Fat Pipe Architecture ( You should watch the webinar now and then again after reading the Exporting Data From The Lockers section. 7

8 Getting Access To The Data Lockers Obtaining access to data in your jurisdiction s BioSense lockers is a quick and simple routine. Before we discuss how to obtain access, please note that there are two access account types: jurisdiction account and personal account. The jurisdiction account was the first account type to be offered. Previously, when a jurisdiction would begin participating in BioSense, a BioSense data steward role and a jurisdiction account were assigned to someone at the jurisdiction s PHA. Surveillance practitioners at this jurisdiction would share the same jurisdiction account. The jurisdiction account was the norm, however, the assigning of personal accounts to individual users is now becoming common as it follows best practice for security. If you do not have a personal account (or a jurisdiction account), we recommend that you contact the BioSense Redesign Team per the directions below to obtain one. Send an to the BioSense Redesign Team (info@biosen.se) with the following message: Hello, My name is [name] and I serve as [role] for [jurisdiction]. I would like to obtain access to all of my jurisdiction s BioSense lockers. [Signature] You will then receive this access in the form of login credentials within 2 business days. Now you should have access to your jurisdiction s BioSense lockers. This immediately affords you access through phpmyadmin (to be discussed next). Now you will want to obtain access to the RStudio Server application installed on the BioSense servers per the directions below. 8

9 Send an to the BioSense Redesign Team with the following message: Hello, My name is [name] and I serve as [role] for [jurisdiction]. I would like to obtain access to the RStudio Server application on the BioSense servers. [Signature] You will then receive this access in the form of additional login credentials within 2 business days. Please note that we are specifically referring to the RStudio Server application installed on the BioSense servers. We are not referring to a local installation of R or RStudio that can be accomplished by downloading these applications yourself from the web. As mentioned previously, these local installations cannot connect to the BioSense data lockers due to an incompatibility of technical features. 9

10 Exporting Data From The Lockers phpmyadmin The BioSense lockers for individual jurisdictions can be accessed at: This interface is typically referred to as the back-end (in contrast to the front-end which will be discussed in the next section). 10

11 Login using your jurisdictional or personal username/password combination. You will need to choose which locker you want to view. The raw data locker is data3.biosen.se The binned data locker is adm2.biosen.se In this example we will login to the raw data locker, data3.biosen.se. Successfully logging in displays: 11

12 The raw data locker has two tables. Raw_Data_Table contains the raw data records Exceptions_Table contains the exception data You can click on either of these to view that specific table. 12

13 There is a button you can click on to query this multi-table database. 13

14 A query window will pop up. You can perform any valid SQL query by submitting the query through this window. 14

15 For instance, to export all data with Admit_Date_Time values that correspond to the month of August in the year 2010, I enter the following query into the query window: select * from Raw_Data_Table where Admit_Date_Time>=' :00:00' and Admit_Date_Time<=' :59:59' Note: Your jurisdiction s raw data table will not be named Raw_Data_Table. You will have to substitute Raw_Data_Table in the query above with your jurisdiction s corresponding raw data table name. For other queries, please consult a local staff resource that is experienced with SQL or resources available online. Note: Unfortunately, phpmyadmin has a 5 minute logout associated with it. Thus, if the query takes more than 5 minutes (and many times they do for a number of reasons) and you have not interacted with the phpmyadmin application within the logout time, you will be logged out, your query will terminate, and you will have to start over. Even if your query finishes, if you have not carried out the export process before being logged out, you will lose your query results and have to start over again. Due to these issues, we recommend using RStudio Server to export data. With RStudio Server, your logout time is much longer, and even if you do get logged out, your query will continue to run and the results will be saved for when you return later. 15

16 An available option after completion of the query is to export the retrieved query result. After clicking on the Export button, you are presented with a set of export options. To create a CSV file, click on CSV from the Format drop-down menu. 16

17 Then press the Go button to download the data from this query as a CSV file. 17

18 Front-End The front-end application can be accessed at: The front-end is a user-friendly interface for performing analytics and exporting line-level data. The catch with the front-end is that it only works with binned data and not raw data. Nevertheless, the front-end can be a very useful tool for situational awareness depending on the quality of the data that goes into your lockers. Since the front-end application is highly intuitive, this section will only show screenshots of what the application looks like. The login page is shown below. 18

19 After logging in, the user will be able to search a standard BioSense 2.0 syndrome by jurisdiction and date range. The jurisdictions that a user can view data for is limited by the sharing permissions that the jurisdiction s BioSense 2.0 data steward has enabled. Advanced search options are also available. 19

20 After pressing the GO button, the search parameters will be processed and graph of incident numbers will be plotted by If you have been allowed line level data access by your data steward, you ll get the green Export Line Level Data button on your screen which will allow you to export the data from the front-end matching your search parameters. 20

21 RStudio Server The RStudio Server application installed on the BioSense servers can be accessed at: Note: The RStudio Server application is limited to work only on the Google Chrome or Firefox browsers (Internet Explorer is not supported). 21

22 Both the raw and binned data lockers can be accessed through this application. The major drawback, however, is that RStudio Server employs a command line interface as opposed to a graphical user interface. This means that to execute commands with this application, the user needs to enter the appropriate code (specifically R code) in the command prompt and cannot simply point-and-click to accomplish most tasks. Note: R code is entered in the command prompt (last > on the left side of the screen) 22

23 The good news, however, is that scripts to accomplish certain common tasks have already been developed and are freely available in the UCEP s Useful R Scripts Google folder: g. Among these is a script called BioSense_Data_Export_Script.R. Download this script as we will now demonstrate how to run it within the RStudio Server application. These directions for running a script in RStudio Server will actually work for any script. 23

24 Note: You might want to take a look at the other scripts in the UCEP s Useful R Scripts folder as they could carry out important tasks that you are interested in (data quality metrics, linking raw and binned records, etc.). Now that you have downloaded BioSense_Data_Export_Script.R and saved it in some directory on your computer, go back to the RStudio Server application. You will now upload the script to your RStudio Server workspace. Click on the Upload button in the RStudio Server application. Click Choose File and find the script in the directory in which you had saved it, open it. 24

25 You will notice that the name of the script is next to the Choose File button. At this point, click on the OK button. The script is now uploaded to the RStudio Server application. You will see it in the Files window in the lower right corner. There are a few ways to run this script now that it is uploaded. We ll demonstrate one of them. Click on BioSense_Data_Export_Script.R. 25

26 The contents of the file will now be displayed in the upper left corner. Scroll down through the top of the file. You will see directions on how to enter some necessary parameters (for instance, your BioSense login username, password, and the number of previous days of data you want to export). 26

27 Follow these directions carefully and enter your parameters. After you ve entered your parameters. Click on the Source on Save checkbox and then on the Save button (floppy disk icon). 27

28 The script will now run with the parameters you ve specified. The script will take quite a while to run depending on how much data you re exporting (around the order of a few hours). However, a benefit of using RStudio Server to export data is that your script will continue to run to completion even if you close the application. 28

29 When the script has finished running, your data file will be available in the Files window. To export this data file (or any file in the Files window), click on the checkbox next to it. Then click on More which will reveal more options. 29

30 The additional options under the More dropdown menu will include an Export option. You will be prompted regarding your export action. Click on the Download button to save the file to your computer. 30

31 Note: If you ever want to run a script that has already been uploaded, you can simply click on the script, which should be in the Files window. Then, after the file opens up in a new sub-window in the upper left corner of the screen, click on the Source button (not Run ) at the top right of the sub-window. R Script Examples In this section, you will learn how to obtain some preliminary and pre-defined information regarding the quality of the data in your jurisdiction s lockers. We will apply two R scripts that have been developed for this purpose. Similar to the R script we applied in the previous section ( BioSense_Data_Export_Script.R ), these two data quality scripts are freely available in the UCEP s Useful R Scripts Google folder: g. These data quality scripts are named UCEP-BioSense_DQ-5_12_14.R and Syndrome_Mapping-5_12_14.R. This section will explain how these scripts work and what the information in the script output means. The information that is discussed in this section is covered in much greater detail in a BioSense 2.0 webinar, hosted by ISDS and the BioSense Redesign Team, titled Data Quality Checks and Assurance :

32 webinar-dataquality. Note that the video for this webinar unsyncs from the audio during the second portion of the webinar. Data Quality Metrics The UCEP-BioSense_DQ-5_12_14.R script was designed to provide the user with measures of completeness for data. The file is also simple to use, requiring only the user s username, password, and the number of previous days of data to take into account (the parameter is optional and may not work anyway because of spam blockers). Run the file in RStudio Server. After the script is finished running, it will produce an HTML file and an image file. When you open the HTML file, the image file will be embedded within the HTML file. The HTML file will display measures of completeness and other important information for your jurisdiction s lockers. A screenshot of this HTML file (and embedded image) is displayed below. 32

33 In greater detail, the information shown on the HTML file conveys: Date-time range used in the analysis (time frame) Total number of raw records with unique patient id s Total number and percentage of raw records with unique patient id s that were assigned a binned record with a non-missing binvalue Percentage of complete data for a set of variables and by hospital facility Most recent date for which a raw record was created in your locker for a hospital facility High-level overview of how the script works: A copy of all data in both the raw and binned lockers from the past X days is made. The raw and binned records are deduplicated on unique patient id. Raw records are matched with their corresponding 33

34 binned records when both the raw and binned record share the same unique patient id and visit date. A list of every binned record that matches with each raw record is created. This list is used to calculate the number and percentage of raw records that were assigned a non-missing binvalue. The data is then stratified by hospital and the percentage of raw records with complete entries for each of a set of variables is calculated. This script (and the following one) can be modified and expanded fairly easily by anyone who is familiar with the R programming language to encapsulate more features. Mapping Syndromes to Select Fields The Syndrome_Mapping-DQ-5_12_14.R script was designed to show users what BioSense syndromes (or binvalues ) their raw records were assigned (according to the BioSense binning algorithm). The file requires the user to input only their username, password, and the number of previous days of data to take into account (the parameter is optional and may not work anyway because of spam blockers). After the file is finished running, a CSV file named Syndrome_Mapping.csv is created. The CSV file lists by row the raw record information used in the binning process (chief complaint, diagnosis code, diagnosis text, procedure code) and the assigned BioSense syndrome from the associated binned record. The information is sorted alphabetically by binvalue 34

35 (rows with missing binvalues, i.e. binvalue=na, appear last). A screenshot of the top portion of this CSV file is displayed below. High-level overview of how the script works: A copy of all data in both the raw and binned lockers from the past X days is made. The raw and binned records are deduplicated on unique patient id. Raw records are matched with their corresponding binned records when both the raw and binned record share the same unique patient id and visit date. A list of every binned record that matches with each raw record is created. A CSV file named Syndrome_Mapping.csv, showing the raw record information used in the binning process (chief complaint, diagnosis code, diagnosis text, procedure code) and the assigned BioSense syndrome from the associated binned record, is created. Automating R Script Runs This part gets tricky and can be difficult to understand and unless you re technically savvy. It might be best if you work with your IT personal to help you set this up. Since the BioSense servers are Unix-based, in order to start automating the previous R jobs to run at a scheduled/designated time, you ll need to set-up SSH public-key authentication that lets you use one identity (i.e. one password) to connect to the BioSense SSH server. 35

36 You do this by setting up and sending the BioSense team a public-key for authentication after generating an SSH key pair. Directions can be found here: The Putty Configuration screen shots can be found below. This allows the connection to the BioSense unix servers using the SSH Key Pair to access the BioSense Unix environment and set up/schedule the CRON job to automatically run the R programs at the designated times. Open putty.exe and save a session that points to the adm.biosense.se server. Set the path to where the SSH key has been placed. Since BioSense has the key and you have the key, the two systems can safely communicate to each other. 36

37 Once signed in, you will create the program that contains the code to run the three R jobs. 1. vi your_new_program_name.txt ( vi is the command in unix to open the unix editor) 2. Type/copy the following into the vi editor. The mailto and the directory structure path will be different per individual. MAILTO=your. @address.org * * * Rscript /home/username/r/sourcecode/pull_binned_data.r * * * Rscript /home/username/r/sourcecode/pull_exceptions_data.r * * * Rscript /home/username/r/sourcecode/pull_raw_data.r 3. The previous code does the following: s the individual when it runs the three jobs and then runs the jobs where the first 2 numbers represent the run time [minutes-(45) and hour-(15)]. In other words, the first R program runs at 3:45PM EST, the second at 3:55PM EST and the third at 4:05PM EST. You might need to play with the times. 37

38 Example of vi editor for the file called DH_rjob.txt Download Output to Your Local Site As was done in the previous step (i.e. Schedule Jobs Using SSH Keys, Unix Commands and Cron), you ll need to set-up another SSH public-key authentication that lets you use one identity (i.e. one password) to connect to the BioSense SSH server. Once this second set of SSH keys are set up you can continue on to setting up the sftp code. Add the next line of code to run the program that takes the output created from the running of the three R jobs and sftps the output to the desired location. 38

39 Below is an example code for DH_SFTP_Script.sh. Of course the directory paths and server information will be different for each site. #!/bin/bash user="cdc_biosense_adm" host="xxx.x.xxx.xx" datetime=$(date +%y %m %d %H.%M.%S) thedate=$(date +%y %m %d) ##cd to directory containing files to download ##copy *.csv to upload echo $datetime ": Copying files to upload directory" cp ~/R/Output/*.csv ~/upload; ##check if files were copied if ls ~/upload/* > /dev/null ; then##transfer files echo $datetime ": Successfully copied files to upload directory" cd ~/upload echo $datetime ": connecting to remote server. Will try to upload files on successful connection." 39

40 EOF sftp put *.csv ls bye echo $datetime ": Moving files to archive at " ~/archive/$thedate mkdir ~/archive/$thedate mv b ~/upload/*.csv ~/archive/$thedate/ if ls ~/archive/$thedate/* > /dev/null ; then echo $datetime ": Successfully moved files to archive at " ~/archive/$thedate echo $datetime ": Cleaning ~/R/Output/ folder" rm ~/R/Output/*.csv if ls ~/R/Output/*.csv > /dev/null ; then echo $datetime ": Failed to delete ~/R/Output/*.csv" else echo $datetime ": Successfully deleted ~/R/Output/*.csv" fi else fi echo $datetime ": Failed to move files to archive at " ~/archive/$thedate else echo $datetime ": No files in ~/R/Output/*.csv to upload " fi echo $datetime ": Sending to your. @address.org " echo " " #mail s "Biosense cloud file tranfer: "$datetime " your. @address.org " < ~/Logs/out$(date +%y %m %d).log mail s "Biosense cloud file tranfer: "$datetime " your. @address.org " < ~/Logs/out.log cat ~/Logs/out.log >> ~/Logs/out$(date +%y %m %d).log 40

CASHNet Secure File Transfer Instructions

CASHNet Secure File Transfer Instructions CASHNet Secure File Transfer Instructions Copyright 2009, 2010 Higher One Payments, Inc. CASHNet, CASHNet Business Office, CASHNet Commerce Center, CASHNet SMARTPAY and all related logos and designs are

More information

Tutorial Guide to the IS Unix Service

Tutorial Guide to the IS Unix Service Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular

More information

CONTRACT MANAGEMENT SYSTEM USER S GUIDE VERSION 2.7 (REVISED JULY 2012)

CONTRACT MANAGEMENT SYSTEM USER S GUIDE VERSION 2.7 (REVISED JULY 2012) CONTRACT MANAGEMENT SYSTEM USER S GUIDE VERSION 2.7 (REVISED JULY 2012) VERSION 2.6 (REVISED APRIL 2012)... I INTRODUCTION... 5 Helpful Hints... 5 Pop-Up Blockers... 5 Users... 6 CPUC Staff Administrator...

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Quick Start Guide MySQL Quick Start Guide SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers

More information

Virtual Computing Lab: Using SPSS

Virtual Computing Lab: Using SPSS Virtual Computing Lab: Using SPSS SPSS is one of the most widely used programs for statistical analysis in social science. The Virtual Computer Lab (VCL) allows faculty and students to use software applications

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,

More information

Extending Remote Desktop for Large Installations. Distributed Package Installs

Extending Remote Desktop for Large Installations. Distributed Package Installs Extending Remote Desktop for Large Installations This article describes four ways Remote Desktop can be extended for large installations. The four ways are: Distributed Package Installs, List Sharing,

More information

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited

More information

TeamViewer 9 Manual Management Console

TeamViewer 9 Manual Management Console TeamViewer 9 Manual Management Console Rev 9.2-07/2014 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of Contents 1 About the TeamViewer Management Console... 4 1.1 About the

More information

Publishing Reports in Tableau

Publishing Reports in Tableau Requesting Tableau System Access... 2 Terms and Definitions... 2 License Levels... 2 User Rights... 2 Permissions... 2 Viewer... 3 Interactor... 3 Editor... 3 Publisher... 3 Project Leader... 4 Custom...

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Hallpass Instructions for Connecting to Mac with a Mac

Hallpass Instructions for Connecting to Mac with a Mac Hallpass Instructions for Connecting to Mac with a Mac The following instructions explain how to enable screen sharing with your Macintosh computer using another Macintosh computer. Note: You must leave

More information

ProjectPier v0.8.8. Getting Started Guide

ProjectPier v0.8.8. Getting Started Guide ProjectPier v0.8.8 Getting Started Guide Updated October 2014 Contents Contents... 2 Overview... 4 License... 4 Installation... 4 Who should perform the installation?... 4 Requirements... 5 Enabling InnoDB

More information

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities DNS name: turing.cs.montclair.edu -This server is the Departmental Server

More information

VPN: Virtual Private Network Setup Instructions

VPN: Virtual Private Network Setup Instructions VPN: Virtual Private Network Setup Instructions Virtual Private Network (VPN): For e-journals and web-based databases, plus applications like EndNote's Online Search (formerly "Connect") and business systems.

More information

Accessing the FTP Server - User Manual

Accessing the FTP Server - User Manual CENTRAL BANK OF CYPRUS Accessing the FTP Server - User Manual IT Department, CENTRAL BANK OF CYPRUS TABLE OF CONTENTS 1 EXECUTIVE SUMMARY... 1 1.1 AUDIENCE... 1 1.2 SCOPE... 1 2 CHANGES FROM THE OLD FTP

More information

SSH and Basic Commands

SSH and Basic Commands SSH and Basic Commands In this tutorial we'll introduce you to SSH - a tool that allows you to send remote commands to your Web server - and show you some simple UNIX commands to help you manage your website.

More information

Mobile Labs Plugin for IBM Urban Code Deploy

Mobile Labs Plugin for IBM Urban Code Deploy Mobile Labs Plugin for IBM Urban Code Deploy Thank you for deciding to use the Mobile Labs plugin to IBM Urban Code Deploy. With the plugin, you will be able to automate the processes of installing or

More information

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008 macrobatix GUIDEWIRE august 2008 Introduction to Using WebMail Learn how to: Manage Your Inbox Compose a Message Activate Spam Filter Modify Spam Settings Check Held Messages *To download the complete

More information

Creating your personal website. Installing necessary programs Creating a website Publishing a website

Creating your personal website. Installing necessary programs Creating a website Publishing a website Creating your personal website Installing necessary programs Creating a website Publishing a website The objective of these instructions is to aid in the production of a personal website published on

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Chapter 9 PUBLIC CLOUD LABORATORY. Sucha Smanchat, PhD. Faculty of Information Technology. King Mongkut s University of Technology North Bangkok

Chapter 9 PUBLIC CLOUD LABORATORY. Sucha Smanchat, PhD. Faculty of Information Technology. King Mongkut s University of Technology North Bangkok CLOUD COMPUTING PRACTICE 82 Chapter 9 PUBLIC CLOUD LABORATORY Hand on laboratory based on AWS Sucha Smanchat, PhD Faculty of Information Technology King Mongkut s University of Technology North Bangkok

More information

Lab 1 Beginning C Program

Lab 1 Beginning C Program Lab 1 Beginning C Program Overview This lab covers the basics of compiling a basic C application program from a command line. Basic functions including printf() and scanf() are used. Simple command line

More information

Eucalyptus 3.4.2 User Console Guide

Eucalyptus 3.4.2 User Console Guide Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Fasthosts Customer Support MySQL Quick Start Guide This guide will help you: Add a MySQL database to your account. Find your database. Add additional users. Use the MySQL command-line tools through ssh.

More information

CPE111 COMPUTER EXPLORATION

CPE111 COMPUTER EXPLORATION CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

USER GUIDE WEB HOSTING SERVICE

USER GUIDE WEB HOSTING SERVICE USER GUIDE WEB HOSTING SERVICE v.1.0 Table of Content Table of Content...2 1. Introduction...3 2. Your user name and password...4 3. Creating your web page...5 4. Send and receive email...7 5. Viewing

More information

Hamline University Administrative Computing Page 1

Hamline University Administrative Computing Page 1 User Guide Banner Handout: BUSINESS OBJECTS ENTERPRISE (InfoView) Document: boxi31sp3-infoview.docx Created: 5/11/2011 1:24 PM by Chris Berry; Last Modified: 8/31/2011 1:53 PM Purpose:... 2 Introduction:...

More information

Cloudwords Drupal Module. Quick Start Guide

Cloudwords Drupal Module. Quick Start Guide Cloudwords Drupal Module Quick Start Guide 1 Contents INTRO... 3 HOW IT WORKS... 3 BEFORE YOU INSTALL... 4 In Cloudwords... 4 In Drupal... 4 INSTALLING THE CLOUDWORDS DRUPAL MODULE... 5 OPTION ONE: Install

More information

File Space / Web Space / Database Space - Self-Service Allocation August 2009

File Space / Web Space / Database Space - Self-Service Allocation August 2009 File Space / Web Space / Database Space - Self-Service Allocation August 2009 All Purchase students can use this self-service application to obtain file space, web publishing space, and database space.

More information

MSSQL quick start guide

MSSQL quick start guide C u s t o m e r S u p p o r t MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional users. Set your user permissions Upload your database

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

Download and Install the Citrix Receiver for Mac/Linux

Download and Install the Citrix Receiver for Mac/Linux Download and Install the Citrix Receiver for Mac/Linux NOTE: WOW can only be used with Internet Explorer for Windows. To accommodate WOW customers using Mac or Linux computers, a Citrix solution was developed

More information

The Einstein Depot server

The Einstein Depot server The Einstein Depot server Have you ever needed a way to transfer large files to colleagues? Or allow a colleague to send large files to you? Do you need to transfer files that are too big to be sent as

More information

WinSCP PuTTY as an alternative to F-Secure July 11, 2006

WinSCP PuTTY as an alternative to F-Secure July 11, 2006 WinSCP PuTTY as an alternative to F-Secure July 11, 2006 Brief Summary of this Document F-Secure SSH Client 5.4 Build 34 is currently the Berkeley Lab s standard SSH client. It consists of three integrated

More information

Erie 1 BOCES/WNYRIC. Secure File Transfer. Upload/Download Wizard

Erie 1 BOCES/WNYRIC. Secure File Transfer. Upload/Download Wizard Erie 1 BOCES/WNYRIC Secure File Transfer Upload/Download Wizard Revised June 3, 2014 These instructions were created using Internet Explorer Version 11. If you are a using a Firefox or Chrome browser you

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816.

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816. RingStor User Manual Version 2.1 Last Update on September 17th, 2015 RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816 Page 1 Table of Contents 1 Overview... 5 1.1 RingStor Data Protection...

More information

Cloud Storage Service

Cloud Storage Service Cloud Storage Service User Guide (Web Interface, Android App) Table of Content System Requirements...4 1.1Web Browser... 4 1.2Mobile Apps... 4 Accessing Cloud Storage using a Web Browser... 4 The Web Home

More information

Secure Data Transfer

Secure Data Transfer Secure Data Transfer INSTRUCTIONS 3 Options to SECURELY TRANSMIT DATA 1. FTP 2. WinZip 3. Password Protection Version 2.0 Page 1 Table of Contents Acronyms & Abbreviations...1 Option 1: File Transfer Protocol

More information

The Citrix service is now available to faculty and staff at Cypress College.

The Citrix service is now available to faculty and staff at Cypress College. Hello Everyone, The Citrix service is now available to faculty and staff at Cypress College. The Citrix product will allow you to run Microsoft Windows applications through the web as if you were running

More information

Renderbot Tutorial. Intro to AWS

Renderbot Tutorial. Intro to AWS Renderbot Tutorial Thanks for choosing to render your Blender projects in the cloud using Renderbot. This guide will introduce Amazon AWS, walk you through the setup process, and help you render your first

More information

Inventory Computers Using TechAtlas for Libraries

Inventory Computers Using TechAtlas for Libraries Inventory Computers Using TechAtlas for Libraries WebJunction.org 9/11/2008 Table of Contents Introduction... 3 Additional Resources... 3 Your Computer Login... 3 TechAtlas Login... 3 Browser Options...

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

Using MailStore to Archive MDaemon Email

Using MailStore to Archive MDaemon Email Using MailStore to Archive MDaemon Email This guide details how to archive all inbound and outbound email using MailStore, as well as archiving any emails currently found in the users accounts in MDaemon.

More information

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

More information

the barricademx end user interface documentation for barricademx users

the barricademx end user interface documentation for barricademx users the barricademx end user interface documentation for barricademx users BarricadeMX Plus The End User Interface This short document will show you how to use the end user web interface for the BarricadeMX

More information

Install MSU Google Drive on your Computer

Install MSU Google Drive on your Computer 416 Agriculture Hall Michigan State University 517-355-3776 http://support.anr.msu.edu support@anr.msu.edu Install MSU Google Drive on your Computer Document # - 168 Creation/Revision Date 4/2013 Revision

More information

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com info@1and1.com August 2015 Copyright 2015 1&1

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

Using Webmail. Document Updated: 11/10. Technical Manual: User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header

Using Webmail. Document Updated: 11/10. Technical Manual: User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header Using Webmail Technical Manual: User Guide Webmail is supported in the following browsers: Windows Internet Explorer 6, Internet Explorer 7, Firefox 2, and Firefox 3 Mac OSX Safari 2, Safari 3, Firefox

More information

ImportManager 5 Installation Manual

ImportManager 5 Installation Manual ImportManager 5 Installation Manual Installation and setup The installation guide comes in two versions, a short version that simply describes the overall steps you need to go through to install ImportManager

More information

Evoko Room Manager. System Administrator s Guide and Manual

Evoko Room Manager. System Administrator s Guide and Manual Evoko Room Manager System Administrator s Guide and Manual 1 1. Contents 1. Contents... 2 2. Read this first! Introduction to this Guide... 6 3. User Guide... 6 4. System Architecture Overview... 8 ----

More information

Cloud Backup Express

Cloud Backup Express Cloud Backup Express Table of Contents Installation and Configuration Workflow for RFCBx... 3 Cloud Management Console Installation Guide for Windows... 4 1: Run the Installer... 4 2: Choose Your Language...

More information

Hadoop Basics with InfoSphere BigInsights

Hadoop Basics with InfoSphere BigInsights An IBM Proof of Technology Hadoop Basics with InfoSphere BigInsights Part: 1 Exploring Hadoop Distributed File System An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government

More information

Sophos UTM Web Application Firewall for Microsoft Exchange connectivity

Sophos UTM Web Application Firewall for Microsoft Exchange connectivity How to configure Sophos UTM Web Application Firewall for Microsoft Exchange connectivity This article explains how to configure your Sophos UTM 9.2 to allow access to the relevant Microsoft Exchange services

More information

USM Web Content Management System

USM Web Content Management System University of Southern Maine USM Web Content Management System USM Web CMS Technical Development Group 4/26/2011 Content o Introduction o Login o User Roles o Group Member o Group Publisher o Group Admin

More information

EURECOM VPN SSL for students User s guide

EURECOM VPN SSL for students User s guide EURECOM VPN SSL for students User s guide Table of Contents Introduction... 2 Login process... 2 Portail main page... 2 Prerequisite... 2 RSA SecurId software token... 3 First usage of RSA SecurID token...

More information

Ajera 7 Installation Guide

Ajera 7 Installation Guide Ajera 7 Installation Guide Ajera 7 Installation Guide NOTICE This documentation and the Axium software programs may only be used in accordance with the accompanying Axium Software License and Services

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

AVG Business SSO Partner Getting Started Guide

AVG Business SSO Partner Getting Started Guide AVG Business SSO Partner Getting Started Guide Table of Contents Overview... 2 Getting Started... 3 Web and OS requirements... 3 Supported web and device browsers... 3 Initial Login... 4 Navigation in

More information

Creating a Website with Publisher 2013

Creating a Website with Publisher 2013 Creating a Website with Publisher 2013 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2015 KSU Division of University Information Technology

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault EVault for Data Protection Manager Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab...

More information

Welcome To Your New Web Hosting Account!

Welcome To Your New Web Hosting Account! Welcome To Your New Web Hosting Account! We are focused on providing you the very best web hosting service, including all the tools necessary to establish and maintain a successful website. This document

More information

SelectSurvey.NET Basic Training Class 1

SelectSurvey.NET Basic Training Class 1 SelectSurvey.NET Basic Training Class 1 3 Hour Course Updated for v.4.143.001 6/2015 Page 1 of 57 SelectSurvey.NET Basic Training In this video course, students will learn all of the basic functionality

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Installation Instructions

Installation Instructions Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3

More information

TIMETABLE ADMINISTRATOR S MANUAL

TIMETABLE ADMINISTRATOR S MANUAL 2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP

More information

Getting the most out of your new Aalto workstation An Aalto IT guide for personnel migrating to the new Aalto workstation environment

Getting the most out of your new Aalto workstation An Aalto IT guide for personnel migrating to the new Aalto workstation environment Getting the most out of your new Aalto workstation An Aalto IT guide for personnel migrating to the new Aalto workstation environment What services do I use with the old TKK password, and what do I use

More information

Edwin Analytics Getting Started Guide

Edwin Analytics Getting Started Guide Edwin Analytics Getting Started Guide This guide provides assistance for accessing and using Edwin Analytics, the Department of Elementary and Secondary Education s (ESE) online tool for expanding data

More information

Obelisk: Summoning Minions on a HPC Cluster

Obelisk: Summoning Minions on a HPC Cluster Obelisk: Summoning Minions on a HPC Cluster Abstract In scientific research, having the ability to perform rigorous calculations in a bearable amount of time is an invaluable asset. Fortunately, the growing

More information

Parallels. for your Linux or Windows Server. Small Business Panel. Getting Started Guide. Parallels Small Business Panel // Linux & Windows Server

Parallels. for your Linux or Windows Server. Small Business Panel. Getting Started Guide. Parallels Small Business Panel // Linux & Windows Server Getting Started Guide Parallels Small Business Panel for your Linux or Windows Server Getting Started Guide Page 1 Getting Started Guide: Parallels Small Business Panel, Linux & Windows Server Version

More information

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Cloud Server powered by Mac OS X Getting Started Guide Page 1 Getting Started Guide: Cloud Server powered by Mac OS X Version 1.0 (02.16.10) Copyright 2010 GoDaddy.com Software, Inc.

More information

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org SFTP Server User Login Instructions Open Internet explorer and enter the following url: https://sftp.sae.org You will be prompted for a user id and password as such. Please enter your account id and password.

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Pentagon Message Exchange Setup Guide: All Devices

Pentagon Message Exchange Setup Guide: All Devices Pentagon Message Exchange Setup Guide: All Devices This guide has been sent to you to help you set up Pentagon Message Exchange on your equipment. In this guide, you will find the details required for

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? Enterprise Computing & Service Management How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

SSH Secure Client (Telnet & SFTP) Installing & Using SSH Secure Shell for Windows Operation Systems

SSH Secure Client (Telnet & SFTP) Installing & Using SSH Secure Shell for Windows Operation Systems SSH Secure Client (Telnet & SFTP) Installing & Using SSH Secure Shell for Windows Operation Systems What is SSH?: SSH is an application that protects the TCP/IP connections between two computers. The software

More information

MATLAB on EC2 Instructions Guide

MATLAB on EC2 Instructions Guide MATLAB on EC2 Instructions Guide Contents Welcome to MATLAB on EC2...3 What You Need to Do...3 Requirements...3 1. MathWorks Account...4 1.1. Create a MathWorks Account...4 1.2. Associate License...4 2.

More information

Web Hosting Getting Started Guide

Web Hosting Getting Started Guide Web Hosting Getting Started Guide This guide describes: - Hosting Terms and Definitions - How to sync a domain with your hosting account - How to change your domain s nameservers - How to use FTP to upload

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Introduction to Google Docs

Introduction to Google Docs Introduction to Google Docs If you do not have a Google account please see the instructor about setting up an account before the class begins. If you do not want to set up an account you can follow along

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

ARGUS SUPPORT: INSTALLATION AND CONFIGURATION GUIDE FOR BEST PRACTICE

ARGUS SUPPORT: INSTALLATION AND CONFIGURATION GUIDE FOR BEST PRACTICE ARGUS SUPPORT: (03) 5335 2221 or support@argusconnect.com.au INSTALLATION AND CONFIGURATION GUIDE FOR BEST PRACTICE VERSION 1.6.1.x ArgusConnect Pty Ltd: Phone: (03) 5335 2220 Support: (03) 5335 2221 Email:

More information

VoIP Quick Start Guide

VoIP Quick Start Guide VoIP Quick Start Guide VoIP is made up of three elements: The Phone The Software (optional) The Web Version of the software (optional) Your new voice mail can be accessed by calling (971-722) 8988. Or,

More information

CDOT Workflow ProjectWise Web Access Operations

CDOT Workflow ProjectWise Web Access Operations CDOT Workflow ProjectWise Web Access Operations ProjectWise offers a Web-based method for accessing project data from existing CDOT datasources. This document includes instructions for configuring Internet

More information

Lesson 7 - Website Administration

Lesson 7 - Website Administration Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their

More information

MINISTRY MOBILIZER. Paperless Risk Management Solution. Client Manual

MINISTRY MOBILIZER. Paperless Risk Management Solution. Client Manual MINISTRY MOBILIZER Paperless Risk Management Solution Client Manual April 2015 Ministry Mobilizer Paperless Risk Management Solution Ministry Mobilizer requires no technical expertise. If you can use the

More information