DataMan. version 3.5.1

Size: px
Start display at page:

Download "DataMan. version 3.5.1"

Transcription

1 DataMan version 3.5.1

2 Contents DataMan User Guide 1 Overview 1 Introduction 1 CycleServer 1 DataMan 1 Technical Specifications 2 Hardware Requirements 2 Software Requirements 2 Ports 2 Other Configuration 2 Data Encryption 2 DataMan Installation 3 Component Installation 3 License Installation 4 CLI Installation 4 Initialization 4 Store Storage Service Credentials 4 Configuration 4 Create Endpoints 5 REST API Specification 5 Command Line Client 6 Initialization 6 List Encryption Keys 6 Store Encryption Key 7 Create a Storage Endpoint 7 List Endpoints 7 Create and Upload a AWS Glacier Archive 7 List Archives 8

3 List Contents of an archive 8 Creating a Recurring transfer 8 Downloading an Archive 9 Searching for files 9 Job Status 9 Scaling DataMan 10 AWS S3 Operations 11 Server Side Encryption 11 Versioning Support 11

4

5 DataMan User Guide Overview The DataMan provides CycleServer plugins that allow managing archiving and retrieval of user data to Cloud Storage. DataMan makes it easy to manage backup, archival and transfer of data residing in various storage services and mediums. It supports Amazon's Glacier for archival and provides encryption for data archived using user provided keys. Customizable plugins compress and then encrypt the files before uploading them to Glacier. By default AES Encryption is performed using the key specified by the user. A REST API is provided to perform various operations on encryption keys that allow users to store and retrieve encryption keys and perform archival ans retrieval of folders residing on the local file system. Once the compressed archive is uploaded metadata about the archive such as the key used for encryption, source location and the location of a generated manifest file is stored in CycleServer. The manifest file contains file system specific information about all the files in the archive such as file ownership, permissions, various creation and/or modification timestamps etc as obtained from the underlying file system. A command line client utilizing the REST API is provided. Introduction This document serves as the user guide for the DataMan product versions 2.x and 3.x. The document also provides technical specifications of DataMan. CycleServer CycleServer at its core is a telemetry engine on top of a nosql datastore. It has a pluggable architecture and makes use of components to support various operations. It also provides a rich query interface and a rich alerts and reporting framework that can be used to create custom reports and alerts on the datastore information such as user actions, data transfer volumes etc. DataMan The DataMan component supports data transfer and management operations by operating on data transfer requests created by adding records to the CycleServer datastore. These records contain both user information and information needed to perform the data transfer. All operations performed by the DataMan component are also written to the datastore to provide an audit trail. This information is made available via a REST API and command line clients which will be detailed in later sections. 1

6 Technical Specifications Hardware Requirements We recommend running CycleServer with DataMan on a Linux machine with 4-8 cores, 8-16 GB of RAM and at least 500GB of free space for optimal performance. The amount of RAM required is proportional to the number of parallel streams used to transfer data. The recommended setup is for 8 parallel streams with a 64GB part size. Every additional stream needs an additional 1-2GB of RAM. The disk space required by DataMan is a function of the largest file size to upload/download. The amount of free scratch space is should be at least 3 times the largest file to upload/download. Software Requirements DataMan requires a Linux system capable of running Oracle Java 1.7. The required Java Runtime Environment is bundled with CycleServer. All RHEL 5.x and its clones, Ubuntu and SLES 11+ are supported platforms. Root access is required during installation for user creation and enabling automated startup. The cycle_server user and group must be created prior to installation if default user creation facilities of Linux are inadequate to create user accounts. Python 2.7 is needed for execution of the Client. Ports In order to communicate with clients CycleServer requires ports 8080 and 8443 to be open to machines on which clients are installed. For Amazon Glacier transfers outgoing traffic to the Amazon Glacier endpoints must be allowed and for S3 transfers outgoing traffic to S3 endpoints must be allowed. Other Configuration CycleServer must have read access to the filesystem from which files need to be uploaded to Glacier. In addition if data deletion on inventory is enabled write access is required. Special scripts required to query ACL values of files must adhere to ACL input format described in the user guide. Write access is needed to the filesystem to which data must be restored. Additionally any administrative privileges required to perform ACL changes are required to restore ACLs on downloaded files. Data Encryption DataMan encrypts each file to be archived post compression using strong AES 256-bit encryption. The Encryption is performed using the standard Java Cryptography Extensions (JCE) security libary provided with the Oracle Java Runtime Environment. The JCE library provide standards based, industry strength cryptographic methods providing tools for strong 2

7 encryption and avoiding the pitfalls of using weak encryption keys. The JCE SecureRandom class ensures that cryptographically secure random keys are generated and used for encryption of data. Users can generate or import encryption keys and use them to encrypt data when uploading to Amazon Web Services Glacier or S3. In order to improve security due to encryption it is possible create a key family and specify the key family name during encryption. Specifying a key family to be used results in a new key to be generated for each transfer request using that key family. Recurring syncs, for example, can use a key family causing a new key to be generated and used each time the sync is scheduled to run. When uploading data, encryption is performed in parallel on fixed size chunks of data. The encryption keys are seeded with a platform dependent random number generator. On Linux based systems /dev/urandom is used to obtain the random bytes for use in generating the encryption keys and on Microsoft Windows the Microsoft Crypto API is used to request random numbers. The random numbers on both Linux and Windows are generated using entropy from various sources on the system such as clock ticks, network and disk I/O, key strokes if applicable, thermal variations of hardware components etc. The system blocks until enough entropy is available before returning the next set of random bytes, thus ensuring high quality random data. This ensures that the random numbers are impossible to reproduce without physical access to the system and knowledge of the numerous physical events that went into generation of the random data. The JCE libraries also provide flexibility to replace the built in implementation of the Random number generator with an implementation that makes use of hardware randomization if available. DataMan provides a way to export the encryption keys out of DataMan for backup purposes. Administrative users can specify a key backup script that can be run at scheduled intervals to backup keys provided to it as a json file to a secure location. The cycle_server account and the key backup script must be secured in such a way that they cannot be tampered with leading to a security breach. DataMan Installation Install CycleServer by unpacking the compressed archive provided and execute the install.sh script on Linux and install.cmd on Windows. On Linux the install script must be executed as root. The DataMan toolkit is currently supported on Linux, Windows and Mac OS X platforms. If DataMan is installed from a prepackaged DataMan installation proceed to License Installation. If the components are provided separately proceed to the component installation step before configuring the CycleServer installation from the web interface. Component Installation 3

8 If DataMan is being installed on a preexisting CycleServer installation, then follow this step to install DataMan. Copy the file_sync component zip file provided to the $CS_HOME/components directory. Finish CycleServer installation by pointing your browser to the CycleServer web interface as provided at the end of the CycleServer installation. By default this is host>:8080 or After creating the user click through the installation wizards to accept defaults. Once this is done install the DataMan component by placing the component zip file provided in the $CS_HOME/components directory. License Installation Open the CycleServer GUI URL and navigate to /datamanager/rest. If a license is not installed you will be redirected to the Apps page. On the apps page, if you already have a license, paste the license text in the text box provided under the License tab. If you do not already have a license, copy the nodeid shown and it to sales@cyclecomputing.com to receive a license. Upon receiving the license, paste the license text in the space provided on this page. CLI Installation Unzip the CLI bundle to the location of your choice. Place the dataman binary found in the bin folder on your PATH for convenient access to dataman commands. Initialization Intialize dataman using the dataman initialize command. Provide your username and password when prompted: $ dataman initialize Welcome to DataMan! CycleServer URL: [ CycleServer username: [akulshrestha] admin CycleServer password: Generating CycleServer key... DataMan configuration stored in /Users/akulshrestha/.cycle/config.ini Store Storage Service Credentials Use the storeawscredentials to store the Glacier AWS secret key and access key to be used by CycleServer: dataman storeawscreds -a <accesskey> -s <secretkey> Configuration 4

9 Use the dataman config command to configure dataman network settings and notification settings. The Web interface should be used in preference to this command. Answer the questions on the prompts and finish configuration: $ dataman config list for archive status notification: @demo.com Dataman application settings configured. Local Endpoint Created. Advanced configuration options can be invoked by using the dataman config all command. Use this to specify the number of upload streams, size of each upload chunk, command to be executed to gather additional file attributed etc. Create Endpoints The dataman createendpoint command is used to create Endpoints for AWS Glacier vaults and AWS S3 buckets. To configure DataMan to use a AWS Glacier vault as an endpoint: $./dataman createendpoint -t Glacier Endpoint Name: test AWS Glacier Region: us-east-1 AWS Glacier Vault Name: test DataMan Endpoint Created. For S3 buckets: $./dataman createendpoint -t S3 Endpoint Name: s3test AWS S3 Bucket: com.mybucket.bucketname DataMan Endpoint Created. Dataman is now configured and ready to use. REST API Specification DataMan provides a RESTful interface for configuration, key management and data transfer operations. The configuration operations interact with the CycleServer datastore to store configuration items used by DataMan to perform data transfers. The data transfer operations store transfer requests in the datastore which are then scheduled for execution. Key Management List Keys GET /ads/datamanager.encryptionkey&format=json Store Key Autogenerated Key: GET /datamanager/rest?o=store&keyname=name 5

10 Specified Key: GET /datamanager/rest?o=store&keyname=name&key=bda12deadbeef431 Archive Operations List Archives GET /ads/datamanager.archive List Archive Contents GET /glacier/rest?o=listarchive&a=archivename Upload an archive GET /glacier/rest?o=upload&k=keyname&a=archivename&v=vault&p=/upload/from&t=tags Download an archive or a file from an archive GET /glacier/rest?o=download&k=keyname&a=archivename&v=vault&d=/download/to GET /glacier/rest?o=download&k=keyname&a=archivename&v=vault&d=/download/to&f=file Command Line Client Users will interact with DataMan using the command line client called dataman. A help screen is provided by invoking dataman help which lists the various commands and their options. (Note: On Windows \ must be escaped in paths - C:\\manifests): $ dataman help Initialization The initialize command is used to perform one time configuration of the command line client enabling it to securely communicate with the CycleServer instance hosting the Cycle DataMan REST API.: $ dataman initialize List Encryption Keys 6

11 The listencryptionkeys command shows all keys stored in CycleServer.: $ dataman listencryptionkeys KeyName:Symmetric Key examplekey _1: c d8a476f203a0772c7185eb7b6a1795bf3586ac3d5d Store Encryption Key The storeencryptionkeys command allows users to store a key into CycleServer to encrypt and decrypt files with. If no key is provided then a key is automatically generated and stored. The keyname is used as a handle to identify the key to be used with other commands.: $ dataman storeencryptionkeys <keyname> [key] Create a Storage Endpoint Storage endpoints refer to data sources and destinations which may include traditional file systems, file storage services, archival services etc.: $ dataman createendpoint -t Glacier Endpoint Name: glacier AWS Glacier Region: us-east-1 AWS Glacier Vault Name: examplevault1 DataMan Endpoint Created. $ dataman createendpoint -t S3 Endpoint Name: s3example AWS S3 Bucket: com.cyclecomputing.software DataMan Endpoint Created. List Endpoints Lists all available endpoints.: $ dataman listendpoints Glacier Name : Vault : Region glacier : examplevault1 : us-east-1 $ dataman listendpoints S3 Name : Bucket s3example : com.cyclecomputing.software Create and Upload a AWS Glacier Archive 7

12 The upload command creates a compressed and encrypted archive and uploads it to Amazon Glacier.: $ dataman upload -c vaultname -k keyname -d /path/to/upload -t "tag1=value1,tag2=value2" archivename List Archives The listarchives command is used to query CycleServer for the archives that have been uploaded to Glacier.: $ dataman listarchives examplevault1 Name : Status : Key Used examplearchive _6 : Inventoried : testkey-1 examplearchive _5 : Inventoried : testkey-1 examplearchive _7 : Inventoried : testkey-1 List Contents of an archive To see the contents of an archive: $ dataman listarchive arch _1 Wed Mar 6 13:00: arch _3.manifest Mon Feb 4 22:48: b6e480a a5-c17e2b manifest Wed Mar 6 16:47: arch _9.manifest Mon Feb 4 21:21: file1.dat Mon Feb 4 21:36: file3.dat Fri Feb 15 12:45: arch _1.manifest Mon Feb 4 22:13: e7a38c79-275a b b manifest Mon Feb 4 21:37: file4.dat Tue Feb 26 12:51: arch _4.manifest Mon Feb 4 21:35: file2.dat Fri Mar 8 12:19: arch _1.manifest Tue Feb 5 00:13: arch _1.manifest Wed Mar 6 13:55: arch _6.manifest total Creating a Recurring transfer A recurring sync can be created to backup new or changed files to glacier. MD5 checksums of files are used to determine if they are changed. The -s option can be used to specify an interval in seconds or a Quartz cron schedule string: $ dataman createrecurringsync -n sync1 -s 60 -e glacier -a winsync1 -k wintest1 -d "C:\testData" 8

13 Schedule strings are of the format "ss mm hh dd mon dayofweek". Examples of schedule strings. 1. Every 20 seconds: "0/20 * * * *?" 2. Every other minute, starting at 15 seconds past the minute: "15 0/2 * * *?" 3. Every other minute, between 8am and 5pm: "0 0/ * *?" 4. At 10am on the 1st and 15th days of the month: "0 0 10am 1,15 *?" 5. Every 30 seconds on Weekends (Saturday and Sunday): "0,30 * *? * SAT,SUN" Downloading an Archive The download command requests an archive to be downloaded, downloads it when the request has been fulfilled by Amazon Glacier, decrypts, uncompress and explodes it to the provided location. Only inventoried archives from inventoried vaults can be downloaded.: $ dataman download -c vaultname -k keyname -d /path/to/explode/to archivename $ dataman download -c vaultname -k keyname -d /path/to/explode/to -f filename archivename Searching for files The dataman search command can be used to locate files within archives or archives with specified tags.: $ dataman search -f file1.dat arch_unenc_nomd5_512parts8mb_ _5#11: file1.dat arch_unenc_nomd5_256parts_ _4#10: file1.dat arch_unenc_nomd5_64parts_ _2#9: file1.dat arch_unenc_nomd5_64parts_ _1#8: file1.dat arch_unenc_32parts_ _4#7: file1.dat arch_unenc_ _3#6: file1.dat arch _3#5: file1.dat arch _1#3: file1.dat= $ dataman search -t project=demo arch_unenc_nomd5_256parts_ _4#10: project=demo,owner=demouser Job Status To show the status of a download request or an inventory request: $ dataman jobstatus arch _1 : archivedownload : COMPLETED : J0VEbh68gKA_AD 9

14 --- : inventory : COMPLETED : LbDi-mSHh8V56L --- : inventory : COMPLETED : E8gP3B_sHdte6n --- : inventory : EXPIRED : 6c5qHIGBaaHeJU arch _1 : archivedownload : COMPLETED : wptsffd7xtiirs Scaling DataMan If the aggregate bandwidth available for Glacier uploads is greater than the sustained bandwidth usage of a single DataMan node, multiple nodes should be used. In order to determine the bandwidth usage efficiency the following factors must be taken into consideration. Data Preprocessing When dealing with large volumes of data, it must often be pre-processed to package and optionally compress the data. This can be a time consuming process and the throughput depends on resources available on the node that pre-processes the data. For compression of large files, parallel compression tools such as pigz are recommended on multi-core machines. If the upload speed to Glacier is faster than the aggregate bandwidth of the preprocessing pipeline, it is recommended that more than one node be used to preprocess data to be presented for upload to DataMan. The goal of the pre-process pipeline should be to always have one additional dataset available for upload before the previous upload finishes. Upload Bandwidth Single DataMan nodes will often peak out below the net available bandwidth to the Archival Service endpoint. This can be due to various reasons, such as interface speeds, limited number of cores on the node or limited I/O bandwidth. If MD5 checksum computation is enabled, additional time is needed to compute the checksum, before data is uploaded. Due to the nature of the checksum algorithm, it runs on a single core and is not parallelized. Hence for large files this becomes a bottleneck and reduces the net upload bandwidth to Glacier. If prepackaging of data creates a few large files, the checksum computation is a significant overhead. In this case, multiple DataMan nodes must be used to make best use of the bandwidth. In the perfect scenario at least one of the nodes must be uploading data while the other is computing checksums or waiting on data to become available from the pre-processing pipeline. The DataMan nodes should be individually tuned to determine the right upload part size and concurrency required to achieve the highest upload speeds possible for that node. If the peak bandwidth is less than 80% of the total bandwidth available to the archival 10

15 service endpoint, then additional DataMan nodes are needed to make full use of the available bandwidth. Please note that this is only valid on a congestion free network. For a network with substantial traffic adding more DataMan nodes may not offer any benefit. On congested networks the network traffic patterns must be evaluated before making any recommendation. Additional DataMan nodes can also be used to maximize bandwidth use if the MD5 checksum computation takes more than half the time required to upload the dataset. When adding another node it is beneficial to start the next upload on the new DataMan node once the first node has started uploading data to the archival service. When data sets are of similar or comparable size, this can be done by putting the uploads on a schedule that allows one node to be computing the checksum while the other is uploading data. AWS S3 Operations DataMan supports various operations on Amazon S3 Endpoints, such as copying data from the DataMan host to a S3 bucket, downloading objects from a S3 bucket, copying obects between S3 buckets and updating metadata attributes on existing objects. Some of the specific features that can be enabled via the DataMan GUI are: Server Side Encryption Server side encryption can currently be enabled globally which affects all objects created after the setting is turned on. To enable Server side encryption, navigate to the Settings page by clicking on User menu in the top right corner and select settings. Double click on DataMan to bring up the settings pane and use the Server Side Encryption checkbox to enable or disable SSE for new objects. Note that turning on or off SSE will not modify existing obects in the bucket. Versioning Support Enabling versioning support from the DataMan settings dialog allows displaying all verisons of objects in versioning enabled buckets. Copying and downloading of versioned S3 objects is also possible just like regular objects once versioning is enabled. Once versioning is enabled the S3 Object name is followed by the Version Id so that the various versions can be seen in the GUI. 11

DataMan. version 3.7.0

DataMan. version 3.7.0 DataMan version 3.7.0 Contents DataMan User Guide 1 Overview 1 Introduction 1 DataMan 1 Technical Specifications 1 Hardware Requirements 1 Software Requirements 2 Ports 2 Other Configuration 2 Data Encryption

More information

DataMan. version 4.9.9

DataMan. version 4.9.9 DataMan version 4.9.9 Contents DataMan User Guide 1 Overview 1 Introduction 1 DataMan 1 Technical Specifications 1 Hardware Requirements 1 Software Requirements 2 Ports 2 Other Configuration 2 Data Encryption

More information

DataMan. version 5.5.7

DataMan. version 5.5.7 DataMan version 5.5.7 Contents DataMan User Guide 1 Introduction 1 DataMan 1 Technical Specifications 2 Hardware Requirements 2 Software Requirements 2 Ports 2 Other Configuration 2 DataMan Installation

More information

DataMan. version 6.5.4

DataMan. version 6.5.4 DataMan version 6.5.4 Contents DataMan User Guide 1 Introduction 1 DataMan 1 Technical Specifications 1 Hardware Requirements 1 Software Requirements 2 Ports 2 DataMan Installation 2 Component Installation

More information

Amazon S3 Glacier. Developer Guide API Version

Amazon S3 Glacier. Developer Guide API Version Amazon S3 Glacier Developer Guide Amazon S3 Glacier: Developer Guide Table of Contents What Is Amazon S3 Glacier?... 1 Are You a First-Time Glacier User?... 1 Data Model... 2 Vault... 2 Archive... 3 Job...

More information

Managing the Cisco APIC-EM and Applications

Managing the Cisco APIC-EM and Applications Managing Cisco APIC-EM Using the GUI, page 1 Cisco APIC-EM Application Separation, page 1 Information about Backing Up and Restoring the Cisco APIC-EM, page 4 Updating the Cisco APIC-EM Software, page

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation and User's Guide SC27-2809-03 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation

More information

Online Backup Client User Manual

Online Backup Client User Manual Software version 3.21 For Mac OS X September 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation and User's Guide SC27-2809-04 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation

More information

Backup and Restore. About Backup and Restore

Backup and Restore. About Backup and Restore About, page 1 Back Up DNA Center, page 2 Restore DNA Center, page 4 Schedule a Backup, page 5 About The backup and restore procedures for DNA Center can be used for the following purposes: To create backup

More information

Configuring the Cisco APIC-EM Settings

Configuring the Cisco APIC-EM Settings Logging into the Cisco APIC-EM, page 1 Quick Tour of the APIC-EM Graphical User Interface (GUI), page 2 Configuring the Prime Infrastructure Settings, page 3 Discovery Credentials, page 4 Security, page

More information

Zadara Enterprise Storage in

Zadara Enterprise Storage in Zadara Enterprise Storage in Google Cloud Platform (GCP) Deployment Guide March 2017 Revision A 2011 2017 ZADARA Storage, Inc. All rights reserved. Zadara Storage / GCP - Deployment Guide Page 1 Contents

More information

EDB Postgres Enterprise Manager EDB Ark Management Features Guide

EDB Postgres Enterprise Manager EDB Ark Management Features Guide EDB Postgres Enterprise Manager EDB Ark Management Features Guide Version 7.4 August 28, 2018 by EnterpriseDB Corporation Copyright 2013-2018 EnterpriseDB Corporation. All rights reserved. EnterpriseDB

More information

Cloud Compute. Backup Portal User Guide

Cloud Compute. Backup Portal User Guide Cloud Compute Backup Portal User Guide Contents Service Overview... 4 Gaining Access... 5 Operational Guide... 6 Landing Page... 6 Profile View... 6 Detailed View... 8 Overview... 8 Cloud Backup... 8

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

ZENworks 2017 Audit Management Reference. December 2016

ZENworks 2017 Audit Management Reference. December 2016 ZENworks 2017 Audit Management Reference December 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Backup App V7. Quick Start Guide for Windows

Backup App V7. Quick Start Guide for Windows Backup App V7 Quick Start Guide for Windows Revision History Date Descriptions Type of modification 30 Jun 2016 First Draft New 25 Nov 2016 Added Restore Options to Ch 8 Restoring Data; Combined Technical

More information

DASH COPY GUIDE. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 31

DASH COPY GUIDE. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 31 DASH COPY GUIDE Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 31 DASH Copy Guide TABLE OF CONTENTS OVERVIEW GETTING STARTED ADVANCED BEST PRACTICES FAQ TROUBLESHOOTING DASH COPY PERFORMANCE TUNING

More information

EDB Postgres Enterprise Manager EDB Ark Management Features Guide

EDB Postgres Enterprise Manager EDB Ark Management Features Guide EDB Postgres Enterprise Manager EDB Ark Management Features Guide Version 7.6 January 9, 2019 by EnterpriseDB Corporation Copyright 2013-2019 EnterpriseDB Corporation. All rights reserved. EnterpriseDB

More information

Amazon Glacier. Developer Guide API Version

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

More information

Using BlueStep Backup

Using BlueStep Backup Using BlueStep Backup BlueStep Backup Your data is an invaluable resource. To protect and store critical digital documents and files, BlueStep Technologies offers the ideal technological solution - BlueStep

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Carbon Black QRadar App User Guide

Carbon Black QRadar App User Guide Carbon Black QRadar App User Guide Table of Contents Carbon Black QRadar App User Guide... 1 Cb Event Forwarder... 2 Overview...2 Requirements...2 Install Cb Event Forwarder RPM...2 Configure Cb Event

More information

OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems

OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems April 2017 215-12035_C0 doccomments@netapp.com Table of Contents 3 Contents Before you create ONTAP Cloud systems... 5 Logging in

More information

Administration 1. DLM Administration. Date of Publish:

Administration 1. DLM Administration. Date of Publish: 1 DLM Administration Date of Publish: 2018-07-03 http://docs.hortonworks.com Contents ii Contents Replication Concepts... 4 HDFS cloud replication...4 Hive cloud replication... 4 Cloud replication guidelines

More information

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide You can find the most up-to-date technical

More information

Pass4test Certification IT garanti, The Easy Way!

Pass4test Certification IT garanti, The Easy Way! Pass4test Certification IT garanti, The Easy Way! http://www.pass4test.fr Service de mise à jour gratuit pendant un an Exam : SOA-C01 Title : AWS Certified SysOps Administrator - Associate Vendor : Amazon

More information

Read the following information carefully, before you begin an upgrade.

Read the following information carefully, before you begin an upgrade. Read the following information carefully, before you begin an upgrade. Review Supported Upgrade Paths, page 1 Review Time Taken for Upgrade, page 1 Review Available Cisco APIC-EM Ports, page 2 Securing

More information

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3 ForeScout CounterACT Hybrid Cloud Module: Amazon Web Services (AWS) Plugin Version 1.3 Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic

More information

Backup Solution. User Guide. Issue 01 Date

Backup Solution. User Guide. Issue 01 Date Issue 01 Date 2017-08-30 Contents Contents 1 Introduction... 1 1.1 What Is the Backup Solution?... 1 1.2 Why Choose the Backup Solution?... 2 1.3 Concepts and Principles...3 1.3.1 Basic OBS Concepts...3

More information

Restoring data from a backup

Restoring data from a backup Restoring data from a backup The following topics explain how to find a backup to restore and then perform a restore: Finding a backup to restore on page 98 Restoring to the original location on page 101

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders.

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders. Backup & Restore 0. Introduction..2 1. On-demand. Manual Backups..3 1.1 Full Backup...3 1.2 Custom Backup 5 1.2.1 Store Your Data Only...5 1.2.2 Exclude Folders.6 1.3 Restore Your Backup..7 2. On Schedule.

More information

Moving data to the cloud using the MoveToCloud script

Moving data to the cloud using the MoveToCloud script What this tutorial is about IBM dashdb's movetocloud script provides an easy way of getting your data to the cloud in either SoftLayer Swift object storage or Amazon S3. The script is ideal for uploading

More information

Ciphermail Webmail Messenger Administration Guide

Ciphermail Webmail Messenger Administration Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Webmail Messenger Administration Guide October 27, 2017, Rev: 8630 Copyright 2013-2017, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Admin login

More information

Ricoh Managed File Transfer (MFT) User Guide

Ricoh Managed File Transfer (MFT) User Guide Ricoh Managed File Transfer (MFT) User Guide -- TABLE OF CONTENTS 1 ACCESSING THE SITE... 3 1.1. WHAT IS RICOH MFT... 3 1.2. SUPPORTED BROWSERS... 3 1.3. LOG IN... 3 1.4. NAVIGATION... 4 1.5. FORGOTTEN

More information

Upgrading the Cisco APIC-EM Deployment

Upgrading the Cisco APIC-EM Deployment Review the following sections in this chapter for information about upgrading to the latest Cisco APIC-EM version and verification. Using the GUI to Upgrade Cisco APIC-EM, page 1 Using the CLI to Upgrade

More information

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

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

More information

WebsitePanel User Guide

WebsitePanel User Guide WebsitePanel User Guide User role in WebsitePanel is the last security level in roles hierarchy. Users are created by reseller and they are consumers of hosting services. Users are able to create and manage

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3 About, on page 1 Supported Procedures, on page 3 Back Up Automation Data Using the GUI, on page 4 Restore Automation Data Using the GUI, on page 6 Schedule a Backup of Automation Data Using the GUI, on

More information

StreamSets Control Hub Installation Guide

StreamSets Control Hub Installation Guide StreamSets Control Hub Installation Guide Version 3.2.1 2018, StreamSets, Inc. All rights reserved. Table of Contents 2 Table of Contents Chapter 1: What's New...1 What's New in 3.2.1... 2 What's New in

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.2.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite 1100

More information

QuickStart Guide for Managing Computers. Version 9.73

QuickStart Guide for Managing Computers. Version 9.73 QuickStart Guide for Managing Computers Version 9.73 JAMF Software, LLC 2015 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Aamazon Glacier & SNS

Aamazon Glacier & SNS Aamazon Glacier & SNS Login to your AWS -> Identity and Access Management -> Users -> Create new Users-> Input Name Record Access Key ID & Secret Access Key: Access Key ID:AKIAJALZB73VKJ7UUSVQ Secret Access

More information

QuickStart Guide for Managing Computers. Version 9.32

QuickStart Guide for Managing Computers. Version 9.32 QuickStart Guide for Managing Computers Version 9.32 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

ForeScout Amazon Web Services (AWS) Plugin

ForeScout Amazon Web Services (AWS) Plugin ForeScout Amazon Web Services (AWS) Plugin Version 1.1.1 and above Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic Segmentation

More information

Getting Started and System Guide. Version

Getting Started and System Guide. Version Version 1.0.29 2016 Waterford Technologies. All Rights Reserved. Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Backup App v7. Quick Start Guide for Windows

Backup App v7. Quick Start Guide for Windows Backup App v7 Quick Start Guide for Windows Revision History Date Descriptions Type of modification 30 Jun 2016 First Draft New 25 Nov 2016 Added Restore Options to Ch 8 Restore Data; Combined Technical

More information

Documentation. This PDF was generated for your convenience. For the latest documentation, always see

Documentation. This PDF was generated for your convenience. For the latest documentation, always see Management Pack for AWS 1.50 Table of Contents Home... 1 Release Notes... 3 What's New in Release 1.50... 4 Known Problems and Workarounds... 5 Get started... 7 Key concepts... 8 Install... 10 Installation

More information

Configuring Commvault VirtualServer Protection to backup to Igneous

Configuring Commvault VirtualServer Protection to backup to Igneous Configuring Commvault VirtualServer Protection to backup to Igneous Introduction Commvault Virtual Server Protection (VSP) is a third-party enterprise backup software suite, allowing companies to backup

More information

Casper Suite Release Notes. Version 9.0

Casper Suite Release Notes. Version 9.0 Casper Suite Release Notes Version 9.0 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 301 4th Ave

More information

SUREedge Migrator Installation Guide for Amazon AWS

SUREedge Migrator Installation Guide for Amazon AWS SUREedge Migrator Installation Guide for Amazon AWS Contents 1. Introduction... 3 1.1 SUREedge Migrator Deployment Scenarios... 3 1.2 Installation Overview... 4 2. Obtaining Software and Documentation...

More information

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Information Studio Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Information

More information

Smart Install in LMS CHAPTER

Smart Install in LMS CHAPTER CHAPTER 6 Smart Install (SI) is a plug-and-play configuration and image management feature that provides zero-touch deployment for new switches. You can configure SI on a switch which will then be the

More information

Netwrix Auditor for Active Directory

Netwrix Auditor for Active Directory Netwrix Auditor for Active Directory Quick-Start Guide Version: 8.0 4/22/2016 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

VMware vfabric Data Director 2.5 EVALUATION GUIDE

VMware vfabric Data Director 2.5 EVALUATION GUIDE VMware vfabric Data Director 2.5 EVALUATION GUIDE Introduction... 2 Pre- requisites for completing the basic and advanced scenarios... 3 Basic Scenarios... 4 Install Data Director using Express Install...

More information

FileCatalyst HotFolder Quickstart

FileCatalyst HotFolder Quickstart FileCatalyst HotFolder Quickstart Contents 1 Installation... 2 1.1 Verify Java Version... 2 1.2 Perform Installation... 3 1.2.1 Windows... 3 1.2.2 Mac OSX... 3 1.2.3 Linux, Solaris, *nix... 3 1.3 Enable

More information

Alliance Key Manager AKM for AWS Quick Start Guide. Software version: Documentation version:

Alliance Key Manager AKM for AWS Quick Start Guide. Software version: Documentation version: Alliance Key Manager AKM for AWS Quick Start Guide Software version: 4.0.0 Documentation version: 4.0.0.002 Townsend Security www.townsendsecurity.com 800.357.1019 +1 360.359.4400 Alliance Key Manager

More information

Nextiva Drive The Setup Process Mobility & Storage Option

Nextiva Drive The Setup Process Mobility & Storage Option Nextiva Drive The Setup Process The Setup Process Adding Users 1. Login to your account and click on the Account icon at the top of the page (this is only visible to the administrator). 2. Click Create

More information

NexentaStor VVOL

NexentaStor VVOL NexentaStor 5.1.1 VVOL Admin Guide Date: January, 2018 Software Version: NexentaStor 5.1.1 VVOL Part Number: 3000-VVOL-5.1.1-000065-A Table of Contents Preface... 3 Intended Audience 3 References 3 Document

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

VPN Console: Monitoring Menu

VPN Console: Monitoring Menu CHAPTER 8 This chapter provides an explanation of collection tasks and reports categorized under the Monitoring menu option, as follows: Collect Router Configuration Files, page 8-2 Collect VPN Accounting

More information

Akana API Platform: Upgrade Guide

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

More information

Avalanche Remote Control User Guide. Version 4.1

Avalanche Remote Control User Guide. Version 4.1 Avalanche Remote Control User Guide Version 4.1 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

AWS Elemental MediaStore. User Guide

AWS Elemental MediaStore. User Guide AWS Elemental MediaStore User Guide AWS Elemental MediaStore: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31 JAMF Software Server Installation and Configuration Guide for Linux Version 9.31 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Zmanda Cloud Backup FAQ

Zmanda Cloud Backup FAQ Zmanda Cloud Backup 2.0.1 FAQ The first sections of this document cover general questions regarding features, cloud, and support; the last section lists error messages and what to do about them. Terminology

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

vsphere Replication for Disaster Recovery to Cloud vsphere Replication 8.1

vsphere Replication for Disaster Recovery to Cloud vsphere Replication 8.1 vsphere Replication for Disaster Recovery to Cloud vsphere Replication 8.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Guides SDL Server Documentation Document current as of 04/06/ :35 PM.

Guides SDL Server Documentation Document current as of 04/06/ :35 PM. Guides SDL Server Documentation Document current as of 04/06/2018 02:35 PM. Overview This document provides the information for creating and integrating the SmartDeviceLink (SDL) server component with

More information

Setting Up the DR Series System on Veeam

Setting Up the DR Series System on Veeam Setting Up the DR Series System on Veeam Quest Engineering June 2017 A Quest Technical White Paper Revisions Date January 2014 May 2014 July 2014 April 2015 June 2015 November 2015 April 2016 Description

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1 Aspera Connect 2.6.3 Windows XP, 2003, Vista, 2008, 7 Document Version: 1 2 Contents Contents Introduction... 3 Setting Up... 4 Upgrading from a Previous Version...4 Installation... 4 Set Up Network Environment...

More information

SpaceShuttle User guide v3

SpaceShuttle User guide v3 SpaceShuttle User guide v3 1.Get Started with SpaceShuttle p2 1.1 For Windows p2 How to download and install Aspera Connect p2 1.2 For Mac p4 How to download and install Aspera Connect p4 2. Accessing

More information

SUREedge DR Installation Guide for Windows Hyper-V

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

More information

Launch and Configure SafeNet ProtectV in AWS Marketplace

Launch and Configure SafeNet ProtectV in AWS Marketplace ProtectV TECHNICAL INSTRUCTIONS Launch and Configure SafeNet ProtectV in AWS Marketplace Contents Overview... 2 Prerequisites... 2 Configure KeySecure... 3 Configure the Firewall (for Linux Clients Only)...

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

dbx MNT AWS Setup Guide

dbx MNT AWS Setup Guide dbx MNT AWS Setup Guide Rev 4.0 June 2018 XtremeData, Inc. 999 Plaza Dr., Ste. 570 Schaumburg, IL 60173 www.xtremedata.com 1. Overview... 3 1.1 Architectural Diagram... 4 1.2 Architectural Elements...

More information

File Protection using rsync. Setup guide

File Protection using rsync. Setup guide File Protection using rsync Setup guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Rsync technology... 3 Terminology... 3 Implementation... 3 3. Rsync data hosts...

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

vsphere Replication for Disaster Recovery to Cloud

vsphere Replication for Disaster Recovery to Cloud vsphere Replication for Disaster Recovery to Cloud vsphere Replication 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Splashtop Enterprise for IoT Devices - Quick Start Guide v1.0

Splashtop Enterprise for IoT Devices - Quick Start Guide v1.0 Introduction For information about different deployment choices, please see chapter 3 of the full Splashtop Center Administrator s Guide. Splashtop Enterprise for IoT Devices is comprised of three components:

More information

Remote Support Web Rep Console

Remote Support Web Rep Console Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.1 Data Protection Guide For VMs and Datastores using the SnapCenter Plug-in for VMware vsphere September 2018 215-13399_B0 doccomments@netapp.com Table of Contents 3 Contents Deciding

More information

Perform Backup and Restore

Perform Backup and Restore This section explains the following:, page 1 You can schedule periodic backups using the Cisco Prime Collaboration Assurance user interface. Cisco Prime Collaboration Analytics data is backed up on a remote

More information

ForeScout Extended Module for IBM BigFix

ForeScout Extended Module for IBM BigFix ForeScout Extended Module for IBM BigFix Version 1.0.0 Table of Contents About this Integration... 4 Use Cases... 4 Additional BigFix Documentation... 4 About this Module... 4 Concepts, Components, Considerations...

More information

BACKUP APP V7 CLOUUD FILE BACKUP & RESTORE GUIDE FOR WINDOWS

BACKUP APP V7 CLOUUD FILE BACKUP & RESTORE GUIDE FOR WINDOWS V7 CLOUUD FILE BACKUP & RESTORE GUIDE FOR WINDOWS Table of Contents 1 Overview... 1 1.1 About This Document... 7 2 Preparing for Backup and Restore... 8 2.1 Hardware Requirement... 8 2.2 Software Requirement...

More information

VMware AirWatch Cloud Connector Guide ACC Installation and Integration

VMware AirWatch Cloud Connector Guide ACC Installation and Integration VMware AirWatch Cloud Connector Guide ACC Installation and Integration Workspace ONE UEM v1810 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

ForeScout Open Integration Module: Data Exchange Plugin

ForeScout Open Integration Module: Data Exchange Plugin ForeScout Open Integration Module: Data Exchange Plugin Version 3.2.0 Table of Contents About the Data Exchange Plugin... 4 Requirements... 4 CounterACT Software Requirements... 4 Connectivity Requirements...

More information

Configuring EMC Isilon

Configuring EMC Isilon This chapter contains the following sections: System, page 1 Configuring SMB Shares, page 3 Creating an NFS Export, page 5 Configuring Quotas, page 6 Creating a Group for the Isilon Cluster, page 8 Creating

More information

Datathon 2018 Connecting to MicroStrategy on AWS Cloud

Datathon 2018 Connecting to MicroStrategy on AWS Cloud Datathon 2018 Connecting to MicroStrategy on AWS Cloud Introduction This document describes how to connect to MicroStrategy on AWS cloud. The first part will show screenshots and introduction to the MicroStrategy

More information

Managing Software Images Using Software Management

Managing Software Images Using Software Management CHAPTER 8 Managing Software Images Using Software Management Manually upgrading your devices to the latest software version can be an error-prone, and time-consuming process. To ensure rapid, reliable

More information

2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0) Fax

2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0) Fax Release 7 rev.388 2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0)3 9549-1122 Fax 9549-1199 http://www.catapultsoft.com 1 Table of contents 1 Table of contents... 2 2 About

More information