Orchestrator ver

Size: px
Start display at page:

Download "Orchestrator ver. 2.1.4"

Transcription

1 EPAM Cloud Infrastructure Orchestrator ver What s New December 2013 CI2WN-S3-5 Version 1.0

2 Content Content Overview New Features... 3 New Services... 3 Cloudify as a Service... 3 Zabbix Monitoring Service... 5 Default Monitoring... 6 Maestro Stacks... 8 Eight Amazon Regions... 9 Tag Usage Simplification Reporting Maestro Stack Notifications A New Type Of Reports Cloud Radar HealthCheck Page Orchestration Knowledge Base EPAM Orchestration Stacks User Feedback Processing Fixes and Improvements Version History EPAM SYSTEMS 2

3 1. Overview EPAM Orchestration Framework version was released on December 14 th, Our main goal is to provide our users with a high-quality product that can meet complicated requirements and be a reliable tool for implementing various projects. Struggling for the best EPAM Orchestration Service usability and functionality, in this release, we introduced a wide range of updates, improvements and new features that put our service on the new level of quality. We paid careful attention to your feedback and put our best efforts to make our service meet your expectations and needs. This document introduces you to major new features and improvements, detailed further below. 2. New Features Another portion of new features is out for you, so check them out and share our excitement of working hard to bring them to you. New Services EPAM Cloud Orchestrator ver release brings three new services intended to make your work more comfortable and to give you a range of new abilities. Cloudify as a Service In this release, we introduce a major and an important feature, the EPAM Cloudify Service: a PaaS decision that allows you to create your own Private Cloud inside EPAM Private Cloud. In contrast to DevOps tools that simply assist in installing your applications, the Cloudify Service, built on proven technology (our mission-critical high-performance elastic application platform GigaSpace XAP), provides a mechanism for managing the entire lifecycle of your application. The main idea of introducing Cloudify as a Service in EPAM Private Cloud was to provide every project, every employee with the ability to work with their OWN Cloud. Along with this, the Cloudify Service inherits all the EPAM Private Cloud features (permissions, quotas, multitenancy) for the Cloudify Service To start using the Cloudify Service, you should perform the following steps: Install EPAM Private Cloud Orchestrator CLI Activate your project in EPAM Orchestration Service Access the EPAM Private Cloud via EPAM Cloud Orchestrator CLI Using EPAM Private Cloud Orchestrator CLI, create a key for your project in the selected region. 3 EPAM SYSTEMS

4 The Cloudify Service can be started with only one command. We developed it in order to simplify you work and reduce the necessity to perform a number of operations that are now automated under a single call: or2-manage-service a s Cloudify p <project> -r <region> -k <key name> Here, -a stands for the activate option, -s property identifies the name of the service to be activated, and k property specifies the SSH key name. When executed, this command will: 1. Download Cloudify package with default recipes 2. Unpack it 3. Set your properties (user, project, region, key, EPAM Private Cloud Orchestrator url all of them will be taken from EPAM Private Cloud Orchestrator properties) 4. Run Cloudify CLI (only for Windows) After that all you need to do is just to start working with Cloudify as with an independent application. NB: It is recommended to use the Cloudify Service with the following images: CentOS6-template Ubuntu12.04-template NB: The Cloudify service is currently not available for EPAM-KZ1 and AWS-* regions NB: The Cloudify service is not currently supported for Win XP instances. Cloudify Commands The Cloudify service can be easily operated by the following commands: Command Description bootstrap-cloud <cloud name> Create a new Cloudify cloud. The command returns the IP of the created Cloudify Manager and connects the current CLI session to this manager. To work with EPAM Private Cloud you should use epam as a cloud name. Note: Only one Cloudify cloud per project in a region can be created inside EPAM Private Cloud If a Cloudify cloud has already been created for the project in the given region, the command returns the EPAM SYSTEMS 4

5 Command connect <Cloudify manager IP> install-application <application name> install-service <service name> uninstall-service <service name> uninstall-application <application name> shutdown-managers teardown-cloud Description corresponding Cloudify Manager IP, but CLI session is not connected to the manager. Connect to an existing Cloudify manager Install an application from your local recipes folder Install a service from your local recipes folder Uninstall the specified service Uninstall the specified application Remove all Cloudify data from Manager VM correctly Delete the specified cloud Changing the Credentials The credentials used to work with the Cloudify Service can easily be changed with three steps described below: 1. Run the shutdown-managers Cloudify command. It will remove all Cloudify data from Manager VM correctly. 2. Change the credentials on your local Cloudify CLI package 3. Perform bootstrap-cloud use-existing epam Cloudify command. It will find Cloudify Manager VM, install and run all required data and restore info about existing hosts, applications and services. Zabbix Monitoring Service In EPAM Orchestration release we provide you with an ability to monitor your Zabbix Server performance. When the Monitoring Service is set up, you can see the details about the server performance on the UI Monitoring page. The monitoring service can be started with the following steps: 1. Run or2-manage-service (or2ms) command with the following flags: or2-manage-service -p project -r region -s monitoring --activate Here, -s parameter specifies the name of the service to manage (monitoring), and --activate parameter indicates that the service should be activated (to stop the service, use the --deactivate parameter). Each project can have only one Zabbix server activated for it. If the server is already activated, you will get the respective command response: Execution error. code=20054, message='monitoring service already activated. If there is no Zabbix server activated for your project, a special stack will be run to launch a VM with all the corresponding Zabbix Server settings. The command response will give the ID of the executed stack. 5 EPAM SYSTEMS

6 2. When the Zabbix server is launched, run the or2-start-monitoring command giving the ID of the instance to be monitored: or2-start-monitoring p project r region i instanceid After that, on the UI Monitoring page, Zabbix information on the specified instance will be available. Figure 1 - Zabbix graph for network traffic For the correct Zabbix Monitoring service performance, it is recommended to add the custom image based instances to the monitoring list (or2-start-monitoring command) only after they come to the running state. Otherwise, the custom image can be indicated incorrectly and will be monitored as a Linux image (regardless of its real type). NB: Zabbix Monitoring service is currently not available for EPAM-KZ1 and AWS-* regions NB: Zabbix Monitoring service service is not currently supported for Win XP instances. Default Monitoring For your convenience, we also introduced a default monitoring service based on Chef Server statistics. This service is also available on the UI Monitoring page and does not need to be set up manually. Figure 2 - Chef Server graph for incoming traffic EPAM SYSTEMS 6

7 This is a passive service that does not load the system and uses standard tools of your operating system. NB: The Default Monitoring service is currently not available for EPAM-KZ1 and AWS-* regions NB: The Default Monitoring service is not currently supported for Win XP instances. The table below gives the information on the metrics methods involved into the default monitoring service: Name Description Command used to retrieve the data: Traffic_in (Linux) Traffic_out (Linux) Data from iptables counters. iptables -L -n -v -x grep INPUT awk '{print $7}' Data from iptables counters. iptables -L -n -v -x grep OUTPUT awk '{print $7} Iops (Linux) Data from iostat utility. iostat -d -x 1 1 awk '{print $1" "$6" Traffic_in (Windows) Traffic_out (Windows) Iops (Windows) Data from system counters. Data from system counters. Data from system counters. "$7}' grep -v Linux grep -v dm Get-Counter -Counter "\\$vmname\network interface($adapter)\bytes received/sec" Select-Object -ExpandProperty CounterSamples Select-Object - ExpandProperty CookedValue Get-Counter -Counter "\\$vmname\network interface($adapter)\bytes sent/sec" Select-Object -ExpandProperty CounterSamples Select-Object - ExpandProperty CookedValue Get-Counter '\Process(_total)\IO Data Operations/sec' Select-Object - ExpandProperty CounterSamples Select-Object -ExpandProperty CookedValue 7 EPAM SYSTEMS

8 Maestro Stacks This release introduces maestro stacks which allow to aggregate a set of CLI commands into one script and run them all using only one command. The main advantage of maestro stacks usage is the appearing ability to automate the flow with CLI commands, thus automating timeand effort-consuming infrastructure creation routine. The Maestro Stack file can be launched from your computer or previously uploaded to the Orchestrator server with the or2-upload-file (or2uf) command. In both cases, you can launch the stack with the or2-run-stack (or2rstack) command followed by respective flags. Below is given an example of a.json stack configuration file: { context: { timeout:30, checktime:1 }, flow:[ { command:"runinstance", input:{imageid:"centos6-template", shape:"medium"}, set:["instanceid"], next:[{ command:"waitinstance", for:{field: "state",required:"running",current:"starting"}, next:[{ command:"createandattachvolume", input:{sizegb:2}, set:["volumeid"], next:[{ command:"waitvolume", for:{field:"state",required:"ready",current:"creating"} }] }] } ] } }] The pattern described in this file is equal to the following sequential commands calls: or2run r region p progect i CentOS6-template s medium or2addattvol -s 2 -p region -r project i <CentOS6-template image ID> -s 2 Wait* and Check* commands have no analogues among CLI and are intended to take some functions of context-dependent user control. When you run a Maestro Stack, you can get the information about the stack performance by using the following command: or2audit -p <project> -r <region> -s <stackid> EPAM SYSTEMS 8

9 Here, <stackid> stands for a StackID value assigned to the stack at the stack run. You can see the StackID at the or2rstack or or2dstack command output. When the stack execution is finished, the user receives a corresponding notification informing on the execution success or failure. As we can see, using maestro stacks may prove useful when it is needed to perform iterative and time-consuming sets of actions. Special commands allow to take account of the context and ensure the complete and correct execution of the whole stack Eight Amazon Regions In this release, all Amazon regions that were not supported earlier, are available. The table below give the full list of the Amazon regions that are supported from now on: Region Code ap-northeast-1 ap-southeast-1 ap-southeast-2 eu-west-1 sa-east-1 us-east-1 us-west-1 us-west-2 Region Name Asia Pacific (Tokyo) Region Asia Pacific (Singapore) Region Asia Pacific (Sydney) Region EU (Ireland) Region South America (Sao Paulo) Region US East (Northern Virginia) Region US West (Northern California) Region US West (Oregon) Region Tag Usage Simplification Being guided by the idea of simplifying your work with EPAM Orchestrator, we added an additional option to the or2-set-tag (or2settag) command. The --override (-o) option used with a tag applied to an instance makes this tag be also applied to all the objects related to this instance. For example, the following command: or2settag -p TRESTPRO -r TESTR -i EVBYMINSD3432T1 -t test1 applied to an instance with an attached volume and a checkpoint will set the test1 tag not only to the target instance, but also to both volume and checkpoint assigned to it. An example of the corresponding commands output is given in the screenshot below: Figure 3 or2dtag response for a volume 9 EPAM SYSTEMS

10 Figure 4 or2dtag response for a checkpoint You can use a.cmd script to set tags to each of your instances and the objects assigned to them. An example of such script is given below. The resulting tags will match the IDs of the corresponding instances: set ppp=g360-odc set rrr=epam-msq call or2-describe-instances -p %ppp% -r %rrr% > /F "delims= skip=6" %%i IN (or2-describe-instances.%ppp%.%rrr%) "%%i" LSS "-" or2settag -p %ppp% -r %rrr% -i %%i -t %%i -o 3. Reporting There is also a set of reporting and support updates that allow you to keep abreast of your infrastructure performance more effectively. Maestro Stack Notifications From now on, EPAM Orchestrator sends you a notification when a Maestro Stack execution is finished. The notification contains the information about the Stack execution success or fail. You can also get the extended stack performance information by using the or2-audit (or2audit) command. A New Type Of Reports EPAM Orchestrator monitors the state of the project. Now, when a project becomes inactive, a corresponding report is created. Cloud Radar We implemented a new tool, the Cloud Radar, which allows to get the cloud utilization statistics. This feature is currently available for EPAM managers only. However, in future, we will adapt it so that it will be available for project coordinators use also. EPAM SYSTEMS 10

11 HealthCheck Page To make your EPAM Cloud Service usage more comfortable and the Service performance clearer, we implemented the Orchestration Healthcheck page. It gives real-time detailed information on each of the Orchestrator regions performance (except for EPAM-MSQ) and indicates which regions are unavailable at the moment. 4. Orchestration Knowledge Base We carefully considered all your feedback on our Knowledge Base, and being guided by the goal to make it as full and comprehensible, as well as easy to use, we significantly updated and restructured several sections. We simplified and updated the Documentation page, so that it is easier to navigate through the available docs. We updated the references within the documents, so now each document has links to all the related files, and you can find any necessary information within the shortest period of time. We updated the Learn page, and following your requests and suggestions, added the Quick Start section that gives the new users a brief and practical introduction to the EPAM Cloud Orchestration Service and helps to start using it within the shortest time. We reviewed and updated the existing FAQ section and added a range of new questions there. Keeping your feedback and the most frequent issues in mind, we also developed the default troubleshooting flow, documented it and added as one of the FAQ sections. 5. EPAM Orchestration Stacks This release introduces Maestro Stacks which allow to aggregate a set of API commands into one script and run them all using only one command. The main advantage of maestro stacks usage is the appearing ability to automate the flow with API commands, thus automating timeand effort-consuming infrastructure creation routine. The Maestro Stack file can be launched from your computer or previously uploaded to the Orchestrator server with the or2-upload-script (or2ups) command. In both cases, you can launch the stack with the or2-run-stack (or2rstack) command followed by respective flags: For local Maestro Stacks: or2rstack p <project> -r <region> -m s "stack-name" c < absolute path to maestro-stack script> For Maestro Stacks stored on Server: 11 EPAM SYSTEMS

12 or2rstack p <project> -r <region> -m s <stack name> -t <template name> Below is given an example of a.json stack configuration file: { context: { timeout:30, checktime:1 }, flow:[ { command:"runinstance", input:{imageid:"centos6-template", shape:"medium"}, set:["instanceid"], next:[{ command:"waitinstance", for:{field: "state",required:"running",current:"starting"}, next:[{ command:"createandattachvolume", input:{sizegb:2}, set:["volumeid"], next:[{ command:"waitvolume", for:{field:"state",required:"ready",current:"creating"} }] }] }] } ] } The pattern described in this file is equal to the following sequential commands calls: or2run r region p progect i CentOS6-template s medium or2addattvol -s 2 -p region -r project i <CentOS6-template image ID> -s 2 Wait* and Check* commands have no analogues among API commands and are intended to take some functions of context-dependent user control. The successful execution of the given stack results into the following API output: When you run a Maestro Stack, you can get the information about the stack performance by using the or2-audit (or2audit) command. When a Maestro Stack execution is finished, you get an notification informing about the execution success or failure. EPAM SYSTEMS 12

13 As we can see, using maestro stacks may prove useful when it is needed to perform iterative and time-consuming sets of actions. Special commands allow to take account of the context and ensure the complete and correct execution of the whole stack. 6. User Feedback Processing Your input has turned out to be invaluable for Orchestrator quality assurance efforts. We carefully consider each of your suggestions and complaints and try to find the best solutions. We would like to thank the following users for providing their feedback: Anton Basharin: Downloaded packages should be verified within the auto-configuration Aliaksandr Kuzikau: Failed to generate aggregation report for a single 31 st day Andrei Davidouski: or2access command text message needs updating Andrei Paulau: or2-refresh-projects command switches the existing instances to missing state Ivan Kassubov: EPAM-KZ1 item is missing in Cost Estimator availability region Pavel Ziankevich: No permission to invoke the operation describeprojects for users with READ permission group mapping for project Sasha Kazlouski: Unexpected error when user enters an incorrect password for 5 times EPAM Orchestrator maintenance mode per regions on\off is needed Vladimir Kovalchuk: Audit messages related to the target instance are not shown for personal projects. Document order on Orchestration web page should be reviewed We highly appreciate your participation in making our product better. From now on, you can keep track of your issues and suggestions via Jira Public tickets. NB: Jira Public Tickets are accessed via the following link: %20%3D%20thanks Here, you can find and keep track of your feedback cases taken into production. There are both issues and improvement suggestions tickets. These tickets are also open for voting. In case an issue gets many votes, its priority can be raised, thus speeding up the implementation. 13 EPAM SYSTEMS

14 7. Fixes and Improvements Guided by our main goals detailed in the Overview section herein, we put our finest efforts into improving the existing features and fixing issues related to performance and usability. We updated the User Interface so that now it became more stable and user friendly. The reporting system was updated in several points. Our engineers fixed a range of auto configuration issues, including issues with Chef Server and several image-connected problems. A huge number of CLI issues was also solved, we paid careful attention to the performance of CLI commands, especially those dealing with audit messages and tags processing. Having fixed several issues, found by our quality assurance team, as well as reported by most dedicated EPAM Private Сloud users by contacting EPAM Cloud Consulting Team, we can notice the significant reduction of concerns and unsolved issues. However, as there is always room for improvements and feature requests, we keep testing our product and gathering you feedback. The full list of changes and brief description of fixed issues bugs can be found in the Release Notes document accompanying this paper. EPAM SYSTEMS 14

15 Version History Version Date Summary 1.0 December 14, 2013 Initial version is published 15 EPAM SYSTEMS

16 Global 41 University Drive Suite 202, Newtown (PA), 18940, USA Phone: Fax: EU Corvin Offices I. Futó st Budapest, H-1082, Hungary Phone: Fax: CIS 9th Radialnaya Street, Building 2 Moscow, , Russia Phone: Fax: EPAM Systems. All Rights Reserved.

Cloud Orchestration. Analytics. User Guide. March 2015 CIUG-14. Version 1.65

Cloud Orchestration. Analytics. User Guide. March 2015 CIUG-14. Version 1.65 Cloud Orchestration Analytics User Guide March 2015 CIUG-14 Version 1.65 Contents Preface... 4 About this Guide... 4 Audience... 4 The structure of the Guide... 4 Documentation References... 5 1 Cloud

More information

Using Amazon EMR and Hunk to explore, analyze and visualize machine data

Using Amazon EMR and Hunk to explore, analyze and visualize machine data Using Amazon EMR and Hunk to explore, analyze and visualize machine data Machine data can take many forms and comes from a variety of sources; system logs, application logs, service and system metrics,

More information

EPAM Cloud. Auto Configuration Services. Quick Reference Guide. August 2015 CIRG-4. Version 1.5

EPAM Cloud. Auto Configuration Services. Quick Reference Guide. August 2015 CIRG-4. Version 1.5 EPAM Cloud Auto Configuration Services Quick Reference Guide August 2015 CIRG-4 Version 1.5 Contents Contents... 2 Preface... 4 About this Guide... 4 Audience... 4 The structure of the Guide... 4 Documentation

More information

Cloud Training Portal. Trainings. Process Guide. October 2012 ECPG-3. Version 1.2

Cloud Training Portal. Trainings. Process Guide. October 2012 ECPG-3. Version 1.2 Cloud Training Portal Trainings Process Guide October 2012 ECPG-3 Version 1.2 Content Content... 2 1. PREFACE... 3 1.1. About this Guide... 3 1.2. Trainers and Contacts... 3 1.3. Audience... 3 1.4. Typographic

More information

Using The Hortonworks Virtual Sandbox

Using The Hortonworks Virtual Sandbox Using The Hortonworks Virtual Sandbox Powered By Apache Hadoop This work by Hortonworks, Inc. is licensed under a Creative Commons Attribution- ShareAlike3.0 Unported License. Legal Notice Copyright 2012

More information

CREATING AN INTERNAL CLOUD: EPAM DEVELOPS A CUSTOM SOLUTION. Time-consuming infrastructure configuration and maintenance

CREATING AN INTERNAL CLOUD: EPAM DEVELOPS A CUSTOM SOLUTION. Time-consuming infrastructure configuration and maintenance Creating An Internal Cloud: EPAM Develops A Custom Solution 1 CASE STUDY CREATING AN INTERNAL CLOUD: EPAM DEVELOPS A CUSTOM SOLUTION Many enterprise businesses face the same problem: Rapid expansion that

More information

Using ArcGIS for Server in the Amazon Cloud

Using ArcGIS for Server in the Amazon Cloud Using ArcGIS for Server in the Amazon Cloud Randall Williams, Esri Subrat Bora, Esri Esri UC 2014 Technical Workshop Agenda What is ArcGIS for Server on Amazon Web Services Sounds good! How much does it

More information

Amazon Web Services. 18.11.2015 Yu Xiao

Amazon Web Services. 18.11.2015 Yu Xiao Amazon Web Services 18.11.2015 Yu Xiao Agenda Introduction to Amazon Web Services(AWS) 7 Steps to Select the Right Architecture for Your Web Applications Private, Public or Hybrid Cloud? AWS Case Study

More information

Cloud Computing. AWS a practical example. Hugo Pérez UPC. Mayo 2012

Cloud Computing. AWS a practical example. Hugo Pérez UPC. Mayo 2012 Cloud Computing AWS a practical example Mayo 2012 Hugo Pérez UPC -2- Index Introduction Infraestructure Development and Results Conclusions Introduction In order to know deeper about AWS services, mapreduce

More information

19.10.11. Amazon Elastic Beanstalk

19.10.11. Amazon Elastic Beanstalk 19.10.11 Amazon Elastic Beanstalk A Short History of AWS Amazon started as an ECommerce startup Original architecture was restructured to be more scalable and easier to maintain Competitive pressure for

More information

AWS CodePipeline. User Guide API Version 2015-07-09

AWS CodePipeline. User Guide API Version 2015-07-09 AWS CodePipeline User Guide AWS CodePipeline: User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information

Build Your Own Performance Test Lab in the Cloud. Leslie Segal Testware Associate, Inc. leslie.segal@testwareinc.com

Build Your Own Performance Test Lab in the Cloud. Leslie Segal Testware Associate, Inc. leslie.segal@testwareinc.com Build Your Own Performance Test Lab in the Cloud Leslie Segal Testware Associate, Inc. leslie.segal@testwareinc.com Problem(s) I was trying to Solve Need more VUs Don t have Tool Times up reschedule test

More information

EPAM Cloud Orchestration. EPAM CLOUD Support. May 2012 ECPG-1

EPAM Cloud Orchestration. EPAM CLOUD Support. May 2012 ECPG-1 EPAM Cloud Orchestration EPAM CLOUD Support May 2012 ECPG-1 Content Content... 2 1. Introduction... 3 1.1. EPAM CLOUD Support Structure Overview... 3 1.2. Support Responsibilities Overview... 3 1.3. High-level

More information

AWS Service Catalog. User Guide

AWS Service Catalog. User Guide AWS Service Catalog User Guide AWS Service Catalog: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in

More information

Amazon EC2 Container Service. Developer Guide API Version 2014-11-13

Amazon EC2 Container Service. Developer Guide API Version 2014-11-13 Amazon EC2 Container Service Developer Guide Amazon EC2 Container Service: Developer Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade

More information

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida Amazon Web Services Primer William Strickland COP 6938 Fall 2012 University of Central Florida AWS Overview Amazon Web Services (AWS) is a collection of varying remote computing provided by Amazon.com.

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

unisys Unisys Stealth(cloud) for Amazon Web Services Deployment Guide Release 1.0 January 2016 8205 5658-001

unisys Unisys Stealth(cloud) for Amazon Web Services Deployment Guide Release 1.0 January 2016 8205 5658-001 unisys Unisys Stealth(cloud) for Amazon Web Services Deployment Guide Release 1.0 January 2016 8205 5658-001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information

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

Simple Storage Service (S3)

Simple Storage Service (S3) Simple Storage Service (S3) Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers. Amazon S3 provides a simple web services interface that can be used

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Amazon EFS (Preview) User Guide

Amazon EFS (Preview) User Guide Amazon EFS (Preview) User Guide Amazon EFS (Preview): User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used

More information

SERVER CLOUD DISASTER RECOVERY. User Manual

SERVER CLOUD DISASTER RECOVERY. User Manual SERVER CLOUD DISASTER RECOVERY User Manual 1 Table of Contents 1. INTRODUCTION... 3 2. ACCOUNT SETUP OVERVIEW... 3 3. GETTING STARTED... 6 3.1 Sign up... 6 4. ACCOUNT SETUP... 8 4.1 AWS Cloud Formation

More information

AWS Database Migration Service. User Guide Version API Version 2016-01-01

AWS Database Migration Service. User Guide Version API Version 2016-01-01 AWS Database Migration Service User Guide AWS Database Migration Service: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress

More information

vrealize Operations Manager Customization and Administration Guide

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.0.1 This document supports the version of each product listed and supports all subsequent versions until

More information

Elastic Detector on Amazon Web Services (AWS) User Guide v5

Elastic Detector on Amazon Web Services (AWS) User Guide v5 Elastic Detector on Amazon Web Services (AWS) User Guide v5 This guide is intended for Elastic Detector users on AWS. Elastic Detector is available as SaaS or deployed as a virtual appliance through an

More information

Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE

Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE Continuous Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed, in whole or in part, without prior written

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Introduction to DevOps on AWS

Introduction to DevOps on AWS Introduction to DevOps on AWS David Chapman December 2014 Contents Contents Abstract Introduction Agile Evolution to DevOps Infrastructure as Code AWS CloudFormation AWS AMI Continuous Deployment AWS CodeDeploy

More information

IceWarp Server. Log Analyzer. Version 10

IceWarp Server. Log Analyzer. Version 10 IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...

More information

FAQ. How does the new Big Bend Backup (powered by Keepit) work?

FAQ. How does the new Big Bend Backup (powered by Keepit) work? FAQ How does the new Big Bend Backup (powered by Keepit) work? Once you establish which of the folders on your hard drive you ll be backing up, you ll log into myaccount.bigbend.net and from your control

More information

CA Spectrum and CA Service Desk

CA Spectrum and CA Service Desk CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

APS Package Certification Guide

APS Package Certification Guide APS Package Certification Guide Revision 1.0.15 Copyright 1999-2012 by Parallels Holdings Ltd. and its affiliates. rights reserved. All Contents Feedback If you have found a mistake in this guide, or if

More information

Workflow Automation Support and troubleshooting guide

Workflow Automation Support and troubleshooting guide NETAPP INTERNAL DOCUMENT Workflow Automation Support and troubleshooting guide Yaron Haimsohn, NetApp June 2011 DRAFT v 1.1 TABLE OF CONTENTS 1 PURPOSE... 3 2 GENERAL... 3 2.1 references... 3 2.2 Revisions...

More information

Chef Integration. Chef Integration. with IDERA s Uptime Cloud Monitor. Simple, Smart, Seamless May 10, 2013 IDERA

Chef Integration. Chef Integration. with IDERA s Uptime Cloud Monitor. Simple, Smart, Seamless May 10, 2013 IDERA Chef Integration Chef Integration with IDERA s Uptime Cloud Monitor Simple, Smart, Seamless May 10, 2013 IDERA 1 Contents Preface Part I Chef + Uptime Cloud Monitor Infographic Part II Integrating Chef

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises)

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information

More information

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

OnCommand Unified Manager

OnCommand Unified Manager OnCommand Unified Manager Operations Manager Administration Guide For Use with Core Package 5.2 NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1(408) 822-6000 Fax: +1(408) 822-4501

More information

Talari Virtual Appliance CT800. Getting Started Guide

Talari Virtual Appliance CT800. Getting Started Guide Talari Virtual Appliance CT800 Getting Started Guide March 18, 2015 Table of Contents About This Guide... 2 References... 2 Request for Comments... 2 Requirements... 3 AWS Resources... 3 Software License...

More information

Installing and Administering VMware vsphere Update Manager

Installing and Administering VMware vsphere Update Manager Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

WE RUN SEVERAL ON AWS BECAUSE WE CRITICAL APPLICATIONS CAN SCALE AND USE THE INFRASTRUCTURE EFFICIENTLY.

WE RUN SEVERAL ON AWS BECAUSE WE CRITICAL APPLICATIONS CAN SCALE AND USE THE INFRASTRUCTURE EFFICIENTLY. WE RUN SEVERAL CRITICAL APPLICATIONS ON AWS BECAUSE WE CAN SCALE AND USE THE INFRASTRUCTURE EFFICIENTLY. - Murari Gopalan Director, Technology Expedia Expedia, a leading online travel company for leisure

More information

How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2

How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2 BANDWIDTH METER FOR HYPER-V NEW FEATURES OF 2.0 The Bandwidth Meter is an active application now, not just a passive observer. It can send email notifications if some bandwidth threshold reached, run scripts

More information

Flight Workflow User's Guide. Release 12.0.0

Flight Workflow User's Guide. Release 12.0.0 Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration

More information

Real Time Big Data Processing

Real Time Big Data Processing Real Time Big Data Processing Cloud Expo 2014 Ian Meyers Amazon Web Services Global Infrastructure Deployment & Administration App Services Analytics Compute Storage Database Networking AWS Global Infrastructure

More information

Legal Notices. Warranty

Legal Notices. Warranty Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting

More information

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011 Version 1.7 Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide Last updated October 2011 1 Introduction and Overview... 1 2 The Case for Email monitoring... 2 3 Installation

More information

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Advanced Configuration Steps

Advanced Configuration Steps Advanced Configuration Steps After you have downloaded a trial, you can perform the following from the Setup menu in the MaaS360 portal: Configure additional services Configure device enrollment settings

More information

Log Analyzer Reference

Log Analyzer Reference IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...

More information

Tutorial: Packaging your server build

Tutorial: Packaging your server build Tutorial: Packaging your server build This tutorial walks you through the steps to prepare a game server folder or package containing all the files necessary for your game server to run in Amazon GameLift.

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

WELCOME TO CITUS CLOUD LOAD TEST

WELCOME TO CITUS CLOUD LOAD TEST USER S GUIDE CONTENTS Contents... 2 Chapter 1: Welcome to Citus Cloud Load Test... 3 1. What is Citus Cloud Load Test?... 3 2. Why Citus Cloud Load Test?... 3 3. Before using this guide... 3 Chapter 2:

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

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already

More information

BUNGEE Quick Start Guide for AWS EC2 based elastic clouds

BUNGEE Quick Start Guide for AWS EC2 based elastic clouds BUNGEE Quick Start Guide for AWS EC2 based elastic clouds Felix Rauh (felix.rauh@stud-mail.uni-wuerzburg.de) and Nikolas Herbst (nikolas.herbst@uni-wuerzburg.de) At the Department of Computer Science Chair

More information

CS15-319 / 15-619 Cloud Computing. Recitation 2 September 2 & 4, 2014

CS15-319 / 15-619 Cloud Computing. Recitation 2 September 2 & 4, 2014 CS15-319 / 15-619 Cloud Computing Recitation 2 September 2 & 4, 2014 Administrative Issues Overview --TA hours, Piazza posts guidelines Last Week s Reflection --Project Primer, Module 1 This Week s Schedule

More information

What s New Guide: Version 5.6

What s New Guide: Version 5.6 What s New Guide: Version 5.6 A QUEST SOFTWARE COMPANY 1. 8 0 0. 4 2 4. 9 4 1 1 w w w. s c r i p t l o g i c. c o m WHAT S NEW IN ACTIVE ADMINISTRATOR 5.6? Contents...3 Active Administrator Product Overview...3

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

AWS Lambda. Developer Guide

AWS Lambda. Developer Guide AWS Lambda Developer Guide AWS Lambda: Developer Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information

McAfee Web Gateway Administration Intel Security Education Services Administration Course Training

McAfee Web Gateway Administration Intel Security Education Services Administration Course Training McAfee Web Gateway Administration Intel Security Education Services Administration Course Training The McAfee Web Gateway Administration course from Education Services provides an in-depth introduction

More information

Deploying for Success on the Cloud: EBS on Amazon VPC. Phani Kottapalli Pavan Vallabhaneni AST Corporation August 17, 2012

Deploying for Success on the Cloud: EBS on Amazon VPC. Phani Kottapalli Pavan Vallabhaneni AST Corporation August 17, 2012 Deploying for Success on the Cloud: EBS on Amazon VPC Phani Kottapalli Pavan Vallabhaneni AST Corporation August 17, 2012 Agenda Amazon AWS Global Infrastructure AWS VirtualPrivateCloud(VPC) Architecture

More information

Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES WHITE PAPER

Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES WHITE PAPER Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES TABLE OF CONTENTS Introduction... 3 Overview: Delphix Virtual Data Platform... 4 Delphix for AWS... 5 Decrease the

More information

IaaS Configuration for Cloud Platforms

IaaS Configuration for Cloud Platforms vrealize Automation 6.2.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Guide to the LBaaS plugin ver. 1.0.2 for Fuel

Guide to the LBaaS plugin ver. 1.0.2 for Fuel Guide to the LBaaS plugin ver. 1.0.2 for Fuel Load Balancing plugin for Fuel LBaaS (Load Balancing as a Service) is currently an advanced service of Neutron that provides load balancing for Neutron multi

More information

VMUnify EC2 Gateway Guide

VMUnify EC2 Gateway Guide VMUnify EC2 Gateway Guide Version 2.8.1 Copyright Information This document is the exclusive property of Mindtree limited (Mindtree); the recipient agrees that they may not copy, transmit, use or disclose

More information

Installation Manual for Catalog Infinite Scroll extension

Installation Manual for Catalog Infinite Scroll extension Installation Manual for Catalog Infinite Scroll extension This manual describes the installation, configuration and usage of the Catalog Infinite Scroll extension for Magento 2. Release Date: May 22, 2016

More information

The steps will take about 4 hours to fully execute, with only about 60 minutes of user intervention. Each of the steps is discussed below.

The steps will take about 4 hours to fully execute, with only about 60 minutes of user intervention. Each of the steps is discussed below. Setup Guide for the XenApp on AWS CloudFormation Template This document walks you through the steps of using the Citrix XenApp on AWS CloudFormation template (v 4.1.5) available here to create a fully

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

With Eversync s cloud data tiering, the customer can tier data protection as follows:

With Eversync s cloud data tiering, the customer can tier data protection as follows: APPLICATION NOTE: CLOUD DATA TIERING Eversync has developed a hybrid model for cloud-based data protection in which all of the elements of data protection are tiered between an on-premise appliance (software

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

Remote Application Server Version 14. Last updated: 25-02-15

Remote Application Server Version 14. Last updated: 25-02-15 Remote Application Server Version 14 Last updated: 25-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

Sonian Getting Started Guide October 2008

Sonian Getting Started Guide October 2008 Sonian Getting Started Guide October 2008 Sonian, Inc. For Authorized Use Only 1 Create your new archiving account 3 Configure your firewall for IMAP collections 4 (Skip this step if you will be using

More information

NetApp Storage System Plug-In 12.1.0.1.0 for Oracle Enterprise Manager 12c Installation and Administration Guide

NetApp Storage System Plug-In 12.1.0.1.0 for Oracle Enterprise Manager 12c Installation and Administration Guide NetApp Storage System Plug-In 12.1.0.1.0 for Oracle Enterprise Manager 12c Installation and Administration Guide Sachin Maheshwari, Anand Ranganathan, NetApp October 2012 Abstract This document provides

More information

Tenable for CyberArk

Tenable for CyberArk HOW-TO GUIDE Tenable for CyberArk Introduction This document describes how to deploy Tenable SecurityCenter and Nessus for integration with CyberArk Enterprise Password Vault. Please email any comments

More information

How To Set Up Wiremock In Anhtml.Com On A Testnet On A Linux Server On A Microsoft Powerbook 2.5 (Powerbook) On A Powerbook 1.5 On A Macbook 2 (Powerbooks)

How To Set Up Wiremock In Anhtml.Com On A Testnet On A Linux Server On A Microsoft Powerbook 2.5 (Powerbook) On A Powerbook 1.5 On A Macbook 2 (Powerbooks) The Journey of Testing with Stubs and Proxies in AWS Lucy Chang lucy_chang@intuit.com Abstract Intuit, a leader in small business and accountants software, is a strong AWS(Amazon Web Services) partner

More information

Web Application Firewall

Web Application Firewall Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks

More information

Server Account Management

Server Account Management Server Account Management Setup Guide Contents: About Server Account Management Setting Up and Running a Server Access Scan Addressing Server Access Findings View Server Access Scan Findings Act on Server

More information

CA API Management SaaS

CA API Management SaaS SaaS Listing CA API Management SaaS 1. Introduction This document provides standards and features that apply to the CA API Management SaaS offering ( Service ) provided to the Customer and defines the

More information

ColdFusion 10 in the Amazon AWS Cloud. Sven Ramuschkat tecracer GmbH

ColdFusion 10 in the Amazon AWS Cloud. Sven Ramuschkat tecracer GmbH ColdFusion 10 in the Amazon AWS Cloud Sven Ramuschkat tecracer GmbH Sven Ramuschkat Focus on Web-Projects - Adobe ColdFusion - Adobe Flash Media Server - Adobe LiveCycle - Adobe Flex, Connect - Java, HTML5,

More information

Automate Your BI Administration to Save Millions with Command Manager and System Manager

Automate Your BI Administration to Save Millions with Command Manager and System Manager Automate Your BI Administration to Save Millions with Command Manager and System Manager Presented by: Dennis Liao Sr. Sales Engineer Date: 27 th January, 2015 Session 2 This Session is Part of MicroStrategy

More information

Amazon EC2 Product Details Page 1 of 5

Amazon EC2 Product Details Page 1 of 5 Amazon EC2 Product Details Page 1 of 5 Amazon EC2 Functionality Amazon EC2 presents a true virtual computing environment, allowing you to use web service interfaces to launch instances with a variety of

More information

AWS Storage: Minimizing Costs While Retaining Functionality

AWS Storage: Minimizing Costs While Retaining Functionality AWS Storage: Minimizing Costs While Retaining Functionality This whitepaper, the second in our Cost Series, discusses persistent storage with Amazon Web Services. It will focus upon Elastic Block Store

More information

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca. OpenTOSCA Release v1.1 Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.de NOTICE This work has been supported by the Federal Ministry of Economics

More information

Amazon Glacier. Developer Guide API Version 2012-06-01

Amazon Glacier. Developer Guide API Version 2012-06-01 Amazon Glacier Developer Guide Amazon Glacier: Developer Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER ADMINISTRATOR S GUIDE Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

In order to upload a VM you need to have a VM image in one of the following formats:

In order to upload a VM you need to have a VM image in one of the following formats: What is VM Upload? 1. VM Upload allows you to import your own VM and add it to your environment running on CloudShare. This provides a convenient way to upload VMs and appliances which were already built.

More information

Zend Server Amazon AMI Quick Start Guide

Zend Server Amazon AMI Quick Start Guide Zend Server Amazon AMI Quick Start Guide By Zend Technologies www.zend.com Disclaimer This is the Quick Start Guide for The Zend Server Zend Server Amazon Machine Image The information in this document

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information

NETWRIX USER ACTIVITY VIDEO REPORTER

NETWRIX USER ACTIVITY VIDEO REPORTER NETWRIX USER ACTIVITY VIDEO REPORTER ADMINISTRATOR S GUIDE Product Version: 1.0 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

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 Backup and Restore a VM using Veeam

How to Backup and Restore a VM using Veeam How to Backup and Restore a VM using Veeam Table of Contents Introduction... 3 Assumptions... 3 Add ESXi Server... 4 Backup a VM... 6 Restore Full VM... 12 Appendix A: Install Veeam Backup & Replication

More information

File Protection Using Rsync User Guide

File Protection Using Rsync User Guide File Protection Using Rsync User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s

More information

Installation Guide ARGUS Symphony 1.6 and Business App Toolkit. 6/13/2014 2014 ARGUS Software, Inc.

Installation Guide ARGUS Symphony 1.6 and Business App Toolkit. 6/13/2014 2014 ARGUS Software, Inc. ARGUS Symphony 1.6 and Business App Toolkit 6/13/2014 2014 ARGUS Software, Inc. Installation Guide for ARGUS Symphony 1.600.0 6/13/2014 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite

More information