Sandbox Setup Guide for HDP 2.2 and VMware

Size: px
Start display at page:

Download "Sandbox Setup Guide for HDP 2.2 and VMware"

Transcription

1 Waterline Data Inventory Sandbox Setup Guide for HDP 2.2 and VMware Product Version 2.0 Document Version Waterline Data, Inc. All rights reserved. All other trademarks are the property of their respective owners.

2 Overview Table of Contents Overview... 2 Related Documents... 3 System requirements... 3 Setting up the sandbox... 4 Opening Waterline Data Inventory in a browser... 5 Running Waterline Data Inventory... 5 Exploring the sample cluster... 6 Shutting down the cluster... 8 Accessing the Hadoop cluster using SSH... 9 Loading data into HDFS... 9 Running Waterline Data Inventory jobs Monitoring Waterline Data Inventory jobs Configuring additional Waterline Data Inventory functionality Accessing Hive tables Overview Waterline Data Inventory reveals information about the metadata and data quality of files in a Apache Hadoop cluster so the users of the data can identify the files they need for analysis and downstream processing. The application installs on an edge node in the cluster and runs MapReduce jobs to collect data and metadata from files in HDFS and Hive. It then discovers relationships and patterns in the profiled data and stores the results in its metadata repository. A browser application lets users search, browse, and tag HDFS files and Hive tables using the benefits of the collected metadata and Data Inventory s discovered relationships. This document describes setting up Waterline Data Inventory in a virtual machine image that is pre-configured with the Waterline Data Inventory application and sample cluster data. The image is built from Hortonworks HDP 2.2 sandbox on VMWare Player or VMWare Fusion Waterline Data, Inc. All rights reserved. 2

3 Related Documents Related Documents Waterline Data Inventory User Guide (also available from the menu in the browser application) For the most recent documentation and product tutorials, sign into Waterline Data Inventory support (support.waterlinedata.com) and go to "Product Downloads, Documentation, and Tutorials": System requirements Waterline Data Inventory sandbox is available inside the Hortonworks HDP 2.2 sandbox. The system requirements and installation instructions are the same as Hortonworks describes: hortonworks.com/products/hortonworks-sandbox/#install The Waterline Data Inventory sandbox is configured with 10 GB of physical RAM rather than the default of 4 GB. The basic requirements are as follows For your host computer: At least 10 GB of RAM 64-bit computer that supports virtualization. VMware describes the unlikely cases where your hardware may not be compatible with 64-bit virtualization: kb.vmware.com/kb/ Waterline Data, Inc. All rights reserved. 3

4 Setting up the sandbox Operating system supported by VMWare Player, including Microsoft Windows (XP and later) or VMWare Fusion, including Apple Mac OS X. VMWare virtualization application for your operating system. Download the latest version from here: Player (Windows): Fusion (Mac): Waterline Data Inventory VM image built on Hortonworks HDP 2.2 sandbox, VMWare version. Browser compatibility Microsoft Internet Explorer 10 and later (not supported on Mac OS) Chrome 36 or later Safari 6 or later Firefox 31 or later Setting up the sandbox 1. Install VMware Player or Fusion. 2. Download the Waterline Data Inventory VM (.ova file). 3. Open the.ova file with VMware (double-click the file). 4. Click Import to accept the default settings for the VM. This will take a few minutes to expand the archive and create the guest environment. 5. (Optional) Configure a way to easily move files between the host and guest. Some options are: Configure a shared directory between the host and guest. (Settings > Sharing: Enable Shared Folders and identify the host folder to share) From the guest computer, you can access the shared folder at /media/sf_<shared folder name>). Setup copy and paste. (Settings > Isolation: check Enable Copy and Paste) 6. Start the VM. It will take a few minutes for Hadoop and its components startup. 7. Note the IP address used for SSH access, such as so that you can log into the guest machine through SSH as waterlinedata/waterlinedata Waterline Data, Inc. All rights reserved. 4

5 Opening Waterline Data Inventory in a browser Opening Waterline Data Inventory in a browser The sandbox includes pre-profiled data so you can see the functionality of Waterline Data Inventory before you load your own data. 1. Open a browser to the Waterline Data Inventory application: or address from step 7>: Sign into Waterline Data Inventory as "waterlinedata", password waterlinedata. Running Waterline Data Inventory If for some reason the browser application did not appear, you may need to sign into the guest and start Waterline Data Inventory manually. If so, follow these steps: 1. Start an SSH session. (Mac OSX) Open a terminal or command prompt on the host and connect to the guest using the guest IP address (from step 7 above): $ ssh waterlinedata@ Enter the password when prompted ("waterlinedata"). (Windows) Start an SSH client such as PuTTY and identify the connection parameters: Host Name: the guest IP address (from step 7 above). Protocol: SSH Log in using username waterlinedata and password waterlinedata. 2. You may be prompted to continue connecting though the authenticity of the host cannot be established. Enter yes. 3. Start the embedded metadata repository database, Derby. $ cd /opt/waterlinedata $ bin/derbystart You'll see a response that ends with "...started and ready to accept connections on port 4444". Type Enter to return to the shell prompt. 3. Start the embedded web server, Jetty. $ bin/jettystart The console fills with status messages from Jetty. Only messages identified by "ERROR" or "exception" indicate problems. You are now ready to use the application and its sample data Waterline Data, Inc. All rights reserved. 5

6 Exploring the sample cluster Exploring the sample cluster The Waterline Data Inventory sandbox is pre-populated with public data to simulate a set of users analyzing and manipulating the data. As you might expect among a group of users, there are multiple copies of the same data, standards for file and field names are not consistent, and data is not always wrangled into forms that are immediately useful for analysis. In other words, the data is intended to reflect reality. Here are some entry points to help you use this sample data to explore the capabilities of Waterline Data Inventory: Tags Tags help you identify data that you may want to use for analysis. When you place tags on fields, Waterline Data Inventory looks for similar data across the profiled files in the cluster and suggests your tags for other fields. Use the tags you enter and automatically suggested tags in searches and search filtering with facets. In the sample data, look for tags for "Food Service" data Waterline Data, Inc. All rights reserved. 6

7 Exploring the sample cluster Lineage relationships, landings, and origins Waterline Data Inventory uses file metadata and data to identify cluster files that are related to each other. It finds copies of the same data, joins between files, and horizontal and vertical subsets of files. If you mark the places where data comes into the cluster with "Landing" labels, Waterline Data Inventory propagates this information through the lineage relationships to show the origin of the data. In the sample data, look for origins for "data.gov," "Twitter," and "Restaurant Inspections." Waterline Data, Inc. All rights reserved. 7

8 Shutting down the cluster Searching with facets Use the Global Search text box on the top of the page to do keyword searches across your cluster metadata, including searching on file and field names, tags and tag descriptions, 50 examples of the most frequent data in each field. Waterline Data Inventory also provides search facets on common file and field properties, such as file size and data density. Some of the most powerful facets are those for tags and origins. Use the facet lists on the Advance Search page to identify what kind of data you want to find. Then use facets in the left pane to refine the search results further. In the sample data, use "Food Service" tags in the Advance Search page, then filter the results by origin, such as "Restaurant Inspections". Shutting down the cluster To make sure you can restart the cluster cleanly, follow these steps to shut it down: 1. In a terminal window on the guest (or your SSH connection), stop the Jetty web server and the Derby repository database server: $ /opt/waterlinedata/bin/jettystop $ /opt/waterlinedata/bin/derbystop 2. Shut down the cluster. Choose Virtual Machine > Shut Down. If you don't see this option, press the Option key while opening the menu Waterline Data, Inc. All rights reserved. 8

9 Accessing the Hadoop cluster using SSH Accessing the Hadoop cluster using SSH To run Waterline Data Inventory jobs and to upload files in bulk to HDFS, you will want to access the guest machine using a command prompt or terminal on your host computer through a Secure Shell (SSH) connection. Alternatively, you can use the terminal in the guest VMware window, but that can be awkward. 1. Start an SSH session. (Mac OSX) In a terminal window, start an SSH session using the IP address provided for the guest instance (step 7 on page 4) and the username waterlinedata, all lower case: $ ssh waterlinedata@<guest IP address> or $ ssh waterlinedata@localhost (Windows) Start an SSH client such as PuTTY and identify the connection parameters: Host Name: the guest IP address (step 7 on page 4). Protocol: SSH Log in using username waterlinedata and password waterlinedata. 2. You may be prompted to continue connecting though the authenticity of the host cannot be established. Enter yes. Loading data into HDFS Loading data into HDFS is a two stage process: first you load data from its source such as your local computer or a public website to the guest file system. Then you copy the data from the guest file system into HDFS. For a small number of files, the Hadoop utility Hue makes this process very easy by allowing you to select files from the host computer and copy them directly into HDFS. For larger files or large numbers of files, you may decide to use a combination of an SSH client (to move files to the guest machine) and a command-line operation (to move files from the guest file system to HDFS). If you have a shared directory configured between the host and guest, you can access the files directly from the guest. Using Hue to load files into HDFS To access Hue from a browser on the host computer: IP address>:<hue port></filebrowser/ For example, Sign in to Hue as hue with the password Waterline Data, Inc. All rights reserved. 9

10 Loading data into HDFS The following controls on the Hue File Browser page may be useful: Control Home New > Directory Upload > Files Move to Trash > Delete Forever Description Home in Hue is /user/hue. Use the navigation controls to go to other user directories. Create a new directory inside the current directory. Feel free to create additional /user directories. Note: Avoid adding directories above /user because it complicates accessing these locations from the Linux command line. Hue allows you to use your local file system to select and upload files. Note: Avoid uploading zip files unless you are familiar with uncompressing these files from inside HDFS. Trash is just another directory in HDFS, so moving files to trash does not remove them from HDFS. Loading files into HDFS from a command line Copying files to HDFS is a two-step process requiring an SSH connection: 1. Make the data accessible from guest machine. There are several ways to do this: Use an SSH client such as PuTTY, FileZilla, or CyberDuck. Use secure copy (scp). Configure a shared directory in the VMware settings for the VM image. 2. From inside an SSH connection, use the Hadoop file system command copyfromlocal to move files from the guest file system into HDFS. The following steps describe using scp to copy files into the guest. Skip to step 5 if you chose to use a GUI SSH client to copy the files. These instructions have you use separate terminal windows or command prompts to access the guest machine using two methods: (Guest) indicates the terminal window or command prompt with an open SSH connection. (Host) indicates the terminal window or command prompt that uses scp directly Waterline Data, Inc. All rights reserved. 10

11 Loading data into HDFS To copy files from the host computer to HDFS on the guest: 1. (Guest) Open an SSH connection to the guest. See Accessing the Hadoop cluster using SSH. 2. (Guest) Create a staging location for your data on the guest file system. The SSH connection working directory is /home/waterlinedata. From here, create a directory for your staged data: $ mkdir /data 3. (Guest) If needed, create HDFS directories into which you will copy the files. Create the directories using Hue or using the following command inside an SSH connection: $ hadoop fs -mkdir <HDFS path> For example, to create a new directory in the Landing directory: $ hadoop fs -mkdir /user/waterlinedata/newstagingarea 4. (Host) In a separate terminal window or command prompt, copy directories or files from host to guest. Navigate to the location of the data to copy on the host and run the scp command: $ scp -r./<directory or file> waterlinedata@<cluster IP address>:<linux destination> For example (all on one line): $ scp -r./newdata waterlinedata@localhost:/home/waterlinedata/data -p2222 $ scp -r./newdata waterlinedata@ :/home/waterlinedata/data 5. (Guest) Back in the SSH terminal window or command prompt, copy the files from guest file system to the cluster using the HDFS command copyfromlocal. Navigate to the location of the data files you copied in step 4 and copy the files into HDFS using the following command: $ hadoop fs -copyfromlocal <localdir> <HDFS dir> For example (all on one line): $ hadoop fs -copyfromlocal /home/waterlinedata/data/ /user/waterlinedata/newstagingarea/ Waterline Data, Inc. All rights reserved. 11

12 Running Waterline Data Inventory jobs Running Waterline Data Inventory jobs Waterline Data Inventory format discovery and profiling and tag propagation jobs are MapReduce jobs run in Hadoop. These jobs populate the Waterline Data Inventory repository with file format and schema information, sample data, and data quality metrics for files in HDFS and Hive. Lineage discovery, collection discovery, and origin propagation jobs are jobs run on the edge node where Waterline Data Inventory is installed. These jobs use data from the repository to suggest relationships among files, to suggest additional tag associations, and to propagate origin information. Waterline Data Inventory jobs are run on a command line on the computer on which Waterline Data Inventory is installed. The jobs are started using scripts located in the bin subdirectory in the installation location. For the VM, the installation location is /opt/waterlinedata. If you are running Waterline Data Inventory jobs in a development environment, consider opening two separate command windows: one for the Jetty console output and a second to run Waterline Data Inventory jobs Waterline Data, Inc. All rights reserved. 12

13 Running Waterline Data Inventory jobs Command Full HDFS Processing $ waterline profile <HDFS dir> HDFS Profiling $ waterline profileonly <HDFS dir> Full Hive Processing $ profilehive default /user/waterlinedata/.hivetmp Hive Profiling $ profilehiveonly default /user/waterlinedata/.hivetmp Tag Propagation $ waterline tag Lineage Discovery $ waterline runlineage Description Performs the initial profile of your cluster or on a regular interval to profile new and updated files. This command triggers profiling as well as the discovery processes that use profiling data. Use the directory you specify here to set the scope of the profiling job. When you ve profiled the entire cluster (or enough to provide enough profiling information), you are ready to run the lineage discovery command. Profiles cluster content. Use this command after you ve added files to the cluster but you aren t ready to have Data Inventory suggest tags for the data. Example: $ waterline profileonly /user/waterlinedata/landing Full profile and discovery of the tables in the indicated Hive databases ( default in the case of the sandbox). Indicate more than one database with a commaseparated list. To specify individual tables, user the property waterlinedata.profile.hivenamefilter with a regular expression as an override. Profiling of the tables in the indicated Hive databases ( default in the case of the sandbox). No discovery processes are run. Propagates tags across the cluster. Use this command when you know that you haven t added new files since the last profile but you have tags and tag associations that you want Data Inventory to consider for propagation. Discovers lineage relationships and propagates origin information. Use this command when you have marked folders or files with origin labels and want that information propagated through the cluster. Include this command after the full profile for regular cluster profiling Waterline Data, Inc. All rights reserved. 13

14 Monitoring Waterline Data Inventory jobs Monitoring Waterline Data Inventory jobs Waterline Data Inventory provides a record of job history in the Dashboard of the browser application. In addition, you can follow detailed progress of each job on the console where you run the command. Monitoring Hadoop jobs When you run the profile command, you ll see an initial job for format discovery followed by one or more profiling jobs. There will be at least one profiling job running in parallel for each file type Data Inventory identifies in the format discovery pass. The console output includes a link to the job log for the running job. For example: :17:27,048 INFO [WaterlineData Format Discovery Workflow V2] mapreduce.job (Job.java:submit(1289)) - The url to track the job: Waterline Data, Inc. All rights reserved. 14

15 Monitoring Waterline Data Inventory jobs While the job is running, you can follow this link to see the progress of the MapReduce activity. Alternatively, you can monitor the progress of these jobs using Hue in a browser: IP address>:8000/jobbrowser You ll need to specify the waterlinedata user. Monitoring local jobs After the Hadoop jobs complete, Waterline Data Inventory runs local jobs to process the data collected in the repository. You can follow the progress of these jobs by watching console output in the command window in which you started the job. Debugging information There are multiple sources of debugging information available for Data Inventory. If you encounter a problem, collect the following information for Waterline Data support. Job messages on the console Waterline Data Inventory generates console output for jobs run at the command prompt. If the job encounters problems, you would review the console output for clues to the problem. To report errors to Waterline Data support, you would copy this output into a text file or to help us follow what occurred: /opt/waterlinedata/bin/waterline profile <HDFS directory> These messages appear on the console but are collected in a log file with debug logging level: /var/log/waterline/wdi-inventory.log Web server console output The embedded web server, Jetty, produces output corresponding to user interactions with the browser application. These messages appear on the console but are collected in a log file with debug logging level: /var/log/waterline/waterlinedata.log Use tail to see the most recent entries in the log: tail -f /var/log/waterline/wdi-ui.log Advanced Search results From inside Waterline Data Inventory, use the Advance Search to identify files that failed to profile. Choose the profile status you are interested in from the Profile Status search facet Waterline Data, Inc. All rights reserved. 15

16 Configuring additional Waterline Data Inventory functionality Configuring additional Waterline Data Inventory functionality Waterline Data Inventory provides a number of configuration settings and integration interfaces to enable extended functionality. Refer to Waterline Data Inventory Installation and Administration Guide for details: support.waterlinedata.com/hc/en-us/articles/ waterline-data- Inventory-v2-0-Documents Accessing Hive tables Waterline Data Inventory makes it easy to create Hive tables from files in your cluster. You can access the Hive instance on the guest through Hue or by connecting to Hive from other third-party query or analysis tools. Viewing Hive tables in Hue You can access the Hive tables in your cluster through Hue using the Beeswax query tool: IP address>:8000/beeswax Connecting to the Hive datastore To access Hive tables from Tableau, Qlik Sense, or other analysis tool, you ll need to configure a connection to the Hive datastore on the cluster. For a Waterline Datasupplied cluster, use the following connection information: Parameter Value Server Use the same server IP address as you use for Waterline Data Inventory Port Server Type HiveServer2 Authentication Username and Password Username hive Password hive Waterline Data, Inc. All rights reserved. 16

How to Hadoop effortlessly with Waterline Data Inventory

How to Hadoop effortlessly with Waterline Data Inventory Waterline Data Inventory gives users of Hadoop data a wealth of information for files, table, and fields to help them identify just the right data. It provides tools to help describe and easily return

More information

Reset the Admin Password with the ExtraHop Rescue CD

Reset the Admin Password with the ExtraHop Rescue CD Reset the Admin Password with the ExtraHop Rescue CD Published: 2018-01-19 This guide explains how to reset the administration password on physical and virtual ExtraHop appliances with the ExtraHop Rescue

More information

Accessing clusters 2. Accessing Clusters. Date of Publish:

Accessing clusters 2. Accessing Clusters. Date of Publish: 2 Accessing Clusters Date of Publish: 2018-09-14 http://docs.hortonworks.com Contents Cloudbreak user accounts... 3 Finding cluster information in the web UI... 3 Cluster summary... 4 Cluster information...

More information

Bitnami Apache Solr for Huawei Enterprise Cloud

Bitnami Apache Solr for Huawei Enterprise Cloud Bitnami Apache Solr for Huawei Enterprise Cloud Description Apache Solr is an open source enterprise search platform from the Apache Lucene project. It includes powerful full-text search, highlighting,

More information

Easy Setup Guide. Cisco FindIT Network Probe. You can easily set up your FindIT Network Probe in this step-by-step guide.

Easy Setup Guide. Cisco FindIT Network Probe. You can easily set up your FindIT Network Probe in this step-by-step guide. Cisco FindIT Network Probe Easy Setup Guide You can easily set up your FindIT Network Probe in this step-by-step guide. 1 5 System Requirements Installing Probe Configuring Probe Using Probe Connecting

More information

WA2503 Hadoop Programming on the. Hortonworks Data Platform. Lab Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2503 Hadoop Programming on the. Hortonworks Data Platform. Lab Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2503 Hadoop Programming on the Hortonworks Data Platform Lab Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Workflow Management (August 31, 2017) docs.hortonworks.com Hortonworks Data Platform: Workflow Management Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. The Hortonworks

More information

Bitnami MEAN for Huawei Enterprise Cloud

Bitnami MEAN for Huawei Enterprise Cloud Bitnami MEAN for Huawei Enterprise Cloud Description Bitnami MEAN Stack provides a complete development environment for mongodb and Node.js that can be deployed in one click. It includes the latest stable

More information

VMware vsphere Big Data Extensions Administrator's and User's Guide

VMware vsphere Big Data Extensions Administrator's and User's Guide VMware vsphere Big Data Extensions Administrator's and User's Guide vsphere Big Data Extensions 1.1 This document supports the version of each product listed and supports all subsequent versions until

More information

Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Windows

Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Windows Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Windows Getting Ready to install on Windows using Oracle VirtualBox Use this section to prepare for your installation. Prerequisites

More information

Cloudamize vcenter Agent Installer

Cloudamize vcenter Agent Installer Cloudamize vcenter Agent Installer Summary Cloudamize vcenter Agent Installer can be used by vcenter administrators intending to install Cloudamize's agent on their Virtual Machines. Traditionally the

More information

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Overview The Map Visualization Component is a development toolkit packaged with Oracle Spatial and Graph for incorporating interactive

More information

Installing or Upgrading ANM Virtual Appliance

Installing or Upgrading ANM Virtual Appliance CHAPTER 2 This chapter describes how to deploy Cisco ANM Virtual Appliance 4.3 (new installation) and how to upgrade from ANM software version 4.1 or 4.2 to software version 4.3. This chapter includes

More information

Quick Start Guide ViPR Controller & ViPR SolutionPack

Quick Start Guide ViPR Controller & ViPR SolutionPack ViPR Quick Start Guide Quick Start Guide ViPR Controller & ViPR SolutionPack Abstract This is a Quick Start Guide containing the main installation steps for the ViPR Controller and ViPR SolutionPack. For

More information

Hands-on Exercise Hadoop

Hands-on Exercise Hadoop Department of Economics and Business Administration Chair of Business Information Systems I Prof. Dr. Barbara Dinter Big Data Management Hands-on Exercise Hadoop Building and Testing a Hadoop Cluster by

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

WA2342 NoSQL Systems Comparison. Lab Server VM Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2342 NoSQL Systems Comparison. Lab Server VM Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2342 NoSQL Systems Comparison Lab Server VM Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

Bitnami JRuby for Huawei Enterprise Cloud

Bitnami JRuby for Huawei Enterprise Cloud Bitnami JRuby for Huawei Enterprise Cloud Description JRuby is a 100% Java implementation of the Ruby programming language. It is Ruby for the JVM. JRuby provides a complete set of core built-in classes

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 1: Exploring Hive An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights - Use,

More information

Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Mac

Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Mac Installing Hortonworks Data Platform 2.1 Technical Preview VirtualBox on Mac Getting Ready to install on Mac using Oracle VirtualBox Use this section to prepare for your installation. Prerequisites To

More information

Oracle SOA Suite/BPM Suite VirtualBox Appliance. Introduction and Readme

Oracle SOA Suite/BPM Suite VirtualBox Appliance. Introduction and Readme Oracle SOA Suite/BPM Suite VirtualBox Appliance Introduction and Readme Table of Contents 1 VirtualBox Appliance...3 1.1 Installed Software... 3 1.2 Settings... 4 1.3 User IDs... 4 1.4 Domain Configurations...

More information

How to Run the Big Data Management Utility Update for 10.1

How to Run the Big Data Management Utility Update for 10.1 How to Run the Big Data Management Utility Update for 10.1 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Introduction 2 Prerequisites 2 Installation 2 Installation Overview 3 Downloading and Installing for Windows 3 Downloading and Installing for macos 4 Installing

More information

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2592 Applied Data Science and Big Data Analytics Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

How to Install and Configure EBF16193 for Hortonworks HDP 2.3 and HotFix 3 Update 2

How to Install and Configure EBF16193 for Hortonworks HDP 2.3 and HotFix 3 Update 2 How to Install and Configure EBF16193 for Hortonworks HDP 2.3 and 9.6.1 HotFix 3 Update 2 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any

More information

Free Download: Quick Start Guide

Free Download: Quick Start Guide Free Download: Quick Start Guide ViPR Controller & ViPR Controller Reporting Abstract This Quick Start Guide provides the main installation steps for the Free Download version of ViPR Controller and ViPR

More information

Cloud Computing II. Exercises

Cloud Computing II. Exercises Cloud Computing II Exercises Exercise 1 Creating a Private Cloud Overview In this exercise, you will install and configure a private cloud using OpenStack. This will be accomplished using a singlenode

More information

Bitnami HHVM for Huawei Enterprise Cloud

Bitnami HHVM for Huawei Enterprise Cloud Bitnami HHVM for Huawei Enterprise Cloud Description HHVM is an open source virtual machine designed for executing programs written in Hack and PHP. HHVM uses a just-in-time (JIT) compilation approach

More information

Bitnami MySQL for Huawei Enterprise Cloud

Bitnami MySQL for Huawei Enterprise Cloud Bitnami MySQL for Huawei Enterprise Cloud Description MySQL is a fast, reliable, scalable, and easy to use open-source relational database system. MySQL Server is intended for mission-critical, heavy-load

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

More information

Talend Big Data Sandbox. Big Data Insights Cookbook

Talend Big Data Sandbox. Big Data Insights Cookbook Overview Pre-requisites Setup & Configuration Hadoop Distribution Download Demo (Scenario) Overview Pre-requisites Setup & Configuration Hadoop Distribution Demo (Scenario) About this cookbook What is

More information

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2393 Data Science for Solution Architects Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

Installing Hortonworks Sandbox VMware Player on Windows 1

Installing Hortonworks Sandbox VMware Player on Windows 1 Installing Hortonworks Sandbox VMWare Player on Windows Getting Ready to install on Windows using VMware Player Use this section to prepare for your installation. Prerequisites To use the Hortonworks Sandbox

More information

HiveManager Virtual Appliance QuickStart

HiveManager Virtual Appliance QuickStart This QuickStart describes the installation of a HiveManager Virtual Appliance. Introduction to HiveManager Virtual Appliance Before you can install the HiveManager Virtual Appliance, you must first install

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 1 - Getting Started with HDInsight Overview In this lab, you will provision an HDInsight cluster. You will then run a sample MapReduce job on the

More information

How to Configure Big Data Management 10.1 for MapR 5.1 Security Features

How to Configure Big Data Management 10.1 for MapR 5.1 Security Features How to Configure Big Data Management 10.1 for MapR 5.1 Security Features 2014, 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Developer Training for Apache Spark and Hadoop: Hands-On Exercises

Developer Training for Apache Spark and Hadoop: Hands-On Exercises 201709c Developer Training for Apache Spark and Hadoop: Hands-On Exercises Table of Contents General Notes... 1 Hands-On Exercise: Starting the Exercise Environment (Local VM)... 5 Hands-On Exercise: Starting

More information

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client.

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

More information

Beta. VMware vsphere Big Data Extensions Administrator's and User's Guide. vsphere Big Data Extensions 1.0 EN

Beta. VMware vsphere Big Data Extensions Administrator's and User's Guide. vsphere Big Data Extensions 1.0 EN VMware vsphere Big Data Extensions Administrator's and User's Guide vsphere Big Data Extensions 1.0 This document supports the version of each product listed and supports all subsequent versions until

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired...

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired... WEB MESSAGE CENTER END USER GUIDE The Secure Web Message Center allows users to access and send and receive secure messages via any browser on a computer, tablet or other mobile devices. Introduction...

More information

The Cisco HCM-F Administrative Interface

The Cisco HCM-F Administrative Interface CHAPTER 5 This chapter contains information on the following topics: Overview of Cisco HCM-F Administrative Interface, page 5-1 Browser Support, page 5-2 Login and Logout, page 5-4 Online Help, page 5-5

More information

AWS Quick Start Guide. Launch a Linux Virtual Machine Version

AWS Quick Start Guide. Launch a Linux Virtual Machine Version AWS Quick Start Guide Launch a Linux Virtual Machine AWS Quick Start Guide: Launch a Linux Virtual Machine Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's

More information

Bitnami Node.js for Huawei Enterprise Cloud

Bitnami Node.js for Huawei Enterprise Cloud Bitnami Node.js for Huawei Enterprise Cloud Description Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. It uses an event-driven, non-blocking

More information

Ansible Tower Quick Setup Guide

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

More information

Installing Cisco MSE in a VMware Virtual Machine

Installing Cisco MSE in a VMware Virtual Machine Installing Cisco MSE in a VMware Virtual Machine This chapter describes how to install and deploy a Cisco Mobility Services Engine (MSE) virtual appliance. Cisco MSE is a prebuilt software solution that

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents Cloud Help for Community Managers...3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Version 4.11 Last Updated: 1/10/2018 Please note: This appliance is for testing and educational purposes only;

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Contents Introduction... 1 Prerequisites... 1 Installation... 2 Installation Overview... 2 Downloading and Installing for Windows... 3 Downloading and Installing

More information

Dell Storage Integration Tools for VMware

Dell Storage Integration Tools for VMware Dell Storage Integration Tools for VMware Version 4.1 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Online Help StruxureWare Central

Online Help StruxureWare Central Online Help StruxureWare Central Version 7.0.0 StruxureWare Central Virtual Appliance The StruxureWare Central 7.0 server is now available as a virtual appliance, supported on VMware ESXi 4.1.0. The full-featured

More information

Introduction to Cuda Visualization. Graphical Application Tunnelling on Palmetto

Introduction to Cuda Visualization. Graphical Application Tunnelling on Palmetto Introduction to Cuda Visualization The CUDA programming paradigm is NVidia's development tool which is used to enable advanced computer processing on their GPGPU (General Purpose graphics Processing Units)

More information

Using The Hortonworks Virtual Sandbox Powered By Apache Hadoop

Using The Hortonworks Virtual Sandbox Powered By Apache Hadoop 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

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

SAS Data Loader 2.4 for Hadoop

SAS Data Loader 2.4 for Hadoop SAS Data Loader 2.4 for Hadoop vapp Deployment Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Data Loader 2.4 for Hadoop: vapp Deployment

More information

Quick Start Guide ViPR Controller & ViPR SolutionPack

Quick Start Guide ViPR Controller & ViPR SolutionPack ViPR Quick Start Guide Quick Start Guide ViPR Controller & ViPR SolutionPack Abstract This is a Quick Start Guide containing the main installation steps for the ViPR Controller and ViPR SolutionPack. For

More information

Aventail Advanced Reporting Installation Instructions

Aventail Advanced Reporting Installation Instructions Aventail Advanced Reporting Installation Instructions 1996-2006 Aventail Corporation. All rights reserved. Aventail, Aventail Cache Control, Aventail Connect, Aventail Connect Mobile, Aventail Connect

More information

In this exercise you will practice working with HDFS, the Hadoop. You will use the HDFS command line tool and the Hue File Browser

In this exercise you will practice working with HDFS, the Hadoop. You will use the HDFS command line tool and the Hue File Browser Access HDFS with Command Line and Hue Data Files (local): ~/labs/data/kb/* ~/labs/data/base_stations.tsv In this exercise you will practice working with HDFS, the Hadoop Distributed File System. You will

More information

VMware vrealize Log Insight Getting Started Guide

VMware vrealize Log Insight Getting Started Guide VMware vrealize Log Insight Getting Started Guide vrealize Log Insight 2.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Bulk Export Content. Learning Objectives. In this Job Aid, you will learn how to:

Bulk Export Content. Learning Objectives. In this Job Aid, you will learn how to: Bulk Export Content Learning Objectives In this Job Aid, you will learn how to: 1 Bulk export content to your computer page 3 2 Bulk export content to non-documentum users page 16 Last updated: May 11,

More information

Talend Big Data Sandbox. Big Data Insights Cookbook

Talend Big Data Sandbox. Big Data Insights Cookbook Overview Pre-requisites Setup & Configuration Hadoop Distribution Download Demo (Scenario) Overview Pre-requisites Setup & Configuration Hadoop Distribution Demo (Scenario) About this cookbook What is

More information

Guidelines - Configuring PDI, MapReduce, and MapR

Guidelines - Configuring PDI, MapReduce, and MapR Guidelines - Configuring PDI, MapReduce, and MapR This page intentionally left blank. Contents Overview... 1 Set Up Your Environment... 2 Get MapR Server Information... 2 Set Up Your Host Environment...

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.6.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

Installing Hortonworks Sandbox VMware Player on Windows

Installing Hortonworks Sandbox VMware Player on Windows Installing Hortonworks Sandbox VMware Player on Windows Getting Ready to install on Windows using VMware Player Use this section to prepare for your installation. Prerequisites To use the Hortonworks Sandbox

More information

Bitnami Ruby for Huawei Enterprise Cloud

Bitnami Ruby for Huawei Enterprise Cloud Bitnami Ruby for Huawei Enterprise Cloud Description Bitnami Ruby Stack provides a complete development environment for Ruby on Rails that can be deployed in one click. It includes most popular components

More information

InControl 2 Software Appliance Setup Guide

InControl 2 Software Appliance Setup Guide InControl 2 Software Appliance Setup Guide (Last updated: 2017-11) Contents 1. Introduction Minimum Hardware Requirements 2. For VMware ESXi 6.0 and ESXi 5.5 (SCSI) Networking Creating InControl and DB

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. FireFox

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

More information

EventTracker: Virtual Appliance

EventTracker: Virtual Appliance EventTracker: Virtual Appliance Quick Start Guide Version 8.1 Build 9 Publication Date: Feb. 8, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract The EventTracker

More information

Archiware Pure User Manual

Archiware Pure User Manual Archiware Pure User Manual Content 1 Preface... 3 1.1 About This Manual... 3 1.2 Who Should Read This Document?...3 1.3 Software Description... 3 1.4 Software Licensing... 3 1.5 Registration... 3 1.6 Technical

More information

EventTracker: Virtual Appliance

EventTracker: Virtual Appliance Quick Start Guide Version 7.6 Publication Date: Sep 18, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract The EventTracker Virtual Appliance enables you to capture

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

ISE Express Installation Guide. Secure Access How -To Guides Series

ISE Express Installation Guide. Secure Access How -To Guides Series ISE Express Installation Guide Secure Access How -To Guides Series Author: Jason Kunst Date: September 10, 2015 Table of Contents About this Guide... 4 How do I get support?... 4 Using this guide... 4

More information

Oracle BDA: Working With Mammoth - 1

Oracle BDA: Working With Mammoth - 1 Hello and welcome to this online, self-paced course titled Administering and Managing the Oracle Big Data Appliance (BDA). This course contains several lessons. This lesson is titled Working With Mammoth.

More information

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale.

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale. Contents Introduction Prerequisites Requirements Qualified Serviers Minimum Firmware Versions Supported PCiE Cards Supported Hypervisor versions Supported Browser Versions Configure Deploying Cisco IMC

More information

FireFox. CIS 231 Windows 2012 R2 Server Install Lab #1

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

More information

Overview of the Cisco NCS Command-Line Interface

Overview of the Cisco NCS Command-Line Interface CHAPTER 1 Overview of the Cisco NCS -Line Interface This chapter provides an overview of how to access the Cisco Prime Network Control System (NCS) command-line interface (CLI), the different command modes,

More information

Cisco VDS Service Broker Software Installation Guide for UCS Platforms

Cisco VDS Service Broker Software Installation Guide for UCS Platforms Cisco VDS Service Broker 1.0.1 Software Installation Guide for UCS Platforms Revised: May 2013 This document provides detailed instructions for installing the Cisco Videoscape Distribution Suite Service

More information

BlueMix Hands-On Workshop

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

More information

Cloudera Manager Quick Start Guide

Cloudera Manager Quick Start Guide Cloudera Manager Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

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

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

More information

Installing IBM InfoSphere BigInsights Quick Start Edition

Installing IBM InfoSphere BigInsights Quick Start Edition Installing IBM InfoSphere BigInsights Quick Start Edition 1. System requirements Pr. Imade Benelallam Imade.benelallam@ieee.org Before you download, ensure that your system meets the minimum requirements:

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

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

Xcalar Installation Guide

Xcalar Installation Guide Xcalar Installation Guide Publication date: 2018-03-16 www.xcalar.com Copyright 2018 Xcalar, Inc. All rights reserved. Table of Contents Xcalar installation overview 5 Audience 5 Overview of the Xcalar

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

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

QRM+ Tutorials. QNAP s Remote Server Management Solution. rev

QRM+ Tutorials. QNAP s Remote Server Management Solution. rev QRM+ QNAP s Remote Server Management Solution Tutorials rev 20170922 1 Table of contents How to use QRM+ to manage your devices?... 4 Browser support... 4 1. Device Discovery... 8 1.1 Start Scan... 8 1.2

More information

Aware IM Version 8.1 Installation Guide

Aware IM Version 8.1 Installation Guide Aware IM Version 8.1 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS 1 INSTALLATION UNDER WINDOWS OPERATING SYSTEM... 3 1.1 HARDWARE AND SOFTWARE REQUIREMENTS... 3 1.2 USING THE INSTALLATION PROGRAM...

More information

Oracle Big Data Manager User s Guide. For Oracle Big Data Appliance

Oracle Big Data Manager User s Guide. For Oracle Big Data Appliance Oracle Big Data Manager User s Guide For Oracle Big Data Appliance E96163-02 June 2018 Oracle Big Data Manager User s Guide, For Oracle Big Data Appliance E96163-02 Copyright 2018, 2018, Oracle and/or

More information

CIS 231 Windows 7 Install Lab #2

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

More information

SETTING UP THE STUDENT COMPUTERS

SETTING UP THE STUDENT COMPUTERS C SETTING UP THE STUDENT COMPUTERS Understanding the System Requirements Getting the Course Virtual Machines Getting the Course Files APPENDIX C: SETTING UP THE STUDENT COMPUTERS C-1 Understanding the

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

SnapCenter Software 4.0 Installation and Setup Guide

SnapCenter Software 4.0 Installation and Setup Guide SnapCenter Software 4.0 Installation and Setup Guide March 2018 215-12926_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Installation and Setup Guide...

More information

Use Jamf Self Service to upgrade to macos Mojave

Use Jamf Self Service to upgrade to macos Mojave Use Jamf Self Service to upgrade to macos Mojave REV20180601 Project Technology & Best Practice Recommendations Overview The purpose of this document is to supply guidance and best practice solutions to

More information

LENSEC, LLC. PERSPECTIVE VMS. Release Notes (Version 1.2.1) LENSEC, LLC. 8/17/2012

LENSEC, LLC. PERSPECTIVE VMS. Release Notes (Version 1.2.1) LENSEC, LLC. 8/17/2012 LENSEC, LLC. PERSPECTIVE VMS Release Notes (Version 1.2.1) LENSEC, LLC. 8/17/2012 *Release notes for the Perspective VMS* and Standard Editions CONTENTS 1. Introduction... 2 1.1. Scope... 2 2. System Requirements...

More information

Dell EMC ME4 Series vsphere Client Plug-in

Dell EMC ME4 Series vsphere Client Plug-in Dell EMC ME4 Series vsphere Client Plug-in User's Guide Regulatory Model: E09J, E10J, E11J Regulatory Type: E09J001, E10J001, E11J001 Notes, cautions, and warnings NOTE: A NOTE indicates important information

More information

Eucalyptus User Console Guide

Eucalyptus User Console Guide Eucalyptus 3.4.1 User Console Guide 2013-12-11 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...5 Install the Eucalyptus User Console...6 Install on Centos / RHEL 6.3...6 Configure

More information