How to build a 7 node Raspberry Pi Hadoop Cluster

Size: px
Start display at page:

Download "How to build a 7 node Raspberry Pi Hadoop Cluster"

Transcription

1 Hw t build a 7 nde Raspberry Pi Hadp Cluster Intrductin Inspired by a desire t learn mre abut Hadp and the fact I already wned a Raspberry Pi I wndered whether anyne had yet built a Hadp cluster based n this hbby cmputers. I wasn t surprised t discver that peple have already dne this and the fllwing instructins are the where I started: Carsten Mönning: Jnas Widrikssn: Jnas s instructins are based n Hadp versin 1.0 and Carsten s is based n versin 2.x If, like me, yu re interested in building with the newer versin f Hadp then fllw Carsten s instructins but read thrugh Jnas s t because he prvides useful links fr dwnlading the Raspian (Linux Operating System built specifically fr the Raspberry Pi) distributin as well as cmmands and example files fr testing yur cluster. The first stage is t build a single nde cluster where yur ne nde perfrms all tasks such as NameNde, Secndary NameNde and DataNde. Once yu have this up-and-running yu re reading t add a secnd nde. This secnd nde will be a dedicated DataNde frm which yu will clne all subsequent DataNdes. Creating the secnd nde is slightly mre difficult which is why I decided t write this pst in the hpe that it will save thers time and effrt. Hardware

2 Fr a seven nde Raspberry Pi (Mdel 2 B+ used here) Hadp cluster yu will need the fllwing hardware: 7x Raspberry Pi Mdel 2 B+ (ThePiHut.cm) 1x 10GigaBit Switch (8 Prts TP-Link) (ebuyer.cm) 1x USB Pwer Hub (7 Pwered Prts by StarTech.cm) (ebuyer.cm) 7x 8GB Class 10 MicrSD cards - NB mine came with the NOOBs Operating System preinstalled which shrinks the size t 3GB. Yu can expand this partitin t use the whle disk frm within the raspi-cnfig utility but I used fdisk t delete the existing partitin and create a new ne (a refrmat is required after ding this). (ThePiHut.cm) 6x 19.05mm standffs (MdMyPi.cm) 7x Angled USB t MicrUSB cables (ebuyer.cm) 7x Shrt Ethernet Cables (ebuyer.cm) 7x 32GB Class 10 USB sticks (ebuyer.cm) 1x Case t put it all in Optinal Building the Single Nde Cluster S, as stated previusly, fllw these instructins t create yur NameNde/Single Nde Cluster: Adding a new nde t the cluster Once yur NameNde ( nde1) is up and running adjust the fllwing files t include yur planned/subsequent ndes. In rder t edit the system wned files yu ll need t switch user r sud. The simplest editr t use n this flavur f Linux is nan : $ sud nan /etc/hsts Add all the ndes yu plan t have in yur cluster: ~ nde nde nde nde nde nde nde7 The Hadp specific settings files, fr versins 2.x can be fund in the fllwing directry:

3 /pt/hadp/etc/hadp Tw ntable files are the master and slaves file. Ensure that nde1 is the nly line listed in yur master file and all ndes (if yu cnfigure yur nde1 t still be a DataNde) in the slaves file. Fr simplicity I have zipped up the files I had t update s yu may cpy them directly t yur nde1 and nde2 Pi s r use them as reference: NB: Because yu'll be temprarily cnnecting t an IP address f an existing Pi it's prbably wrth having nly the NameNde pwered up when perfrming this step. 1. Clne the NameNde MicrSD card and duplicate the image file n t a new MicrSD card. On Linux the cmmands t d this are as fllws. Nte that when munting yur MicrSD card yur device name may differ frm /dev/sdb: $ sud dd if=/dev/sdb f=nde1.img $ sud dd if=nde1.img f=/dev/sdb 2. Frmat the USB strage device - giving it a label f 'hdfs'. Again I used Linux t frmat the device and used the EXT4 file system. 3. Put yur clned MicrSD card and USB strage stick int yur new Raspberry Pi 4. Attach the Ethernet netwrk cable & pwer cable 5. SSH int the Pi using the IP address f the clned Pi using the hduser/passwrd credentials: $ ssh hduser@

4 6. Cnfigure the Raspberry Pi using the raspi-cnfig utility - yu'll be prmpted t rebt when yu've finished making this set f changes: $ sud raspi-cnfig Change the nde name (i.e. frm nde1 t nde2) Check: enable SSH server Check: memry split - shuld be 16M Overclcking t Pi2 (rebt) 8. After the rebt frm exiting raspi-cnfig wait a few secnds and then SSH back in again. Edit the /etc/netwrk/interfaces file and change the IP address t the next available ne: $ sud nan /etc/netwrk/interfaces 9. Check the /etc/hsts file cntains ALL the IP addresses and nde names f ALL yur Pi's: $ cat /etc/hsts 10. Rebt the Pi $ sud rebt 11. SSH back int the Pi using the new IP address: $ ssh hduser@ Frm the new Pi nde SSH int the NameNde - say 'yes' t questin: $ ssh nde1 13. On the NameNde SSH t the new nde name - say 'yes' t questin and then return t nde2: $ ssh nde2 $ exit 14. Creating the /hdfs data partitin. Change directry int HDFS partitin. Create the /tmp flder and change wnership. $ sud mkdir -p /hdfs/tmp $ sud chwn -R hduser:hadp /hdfs $ sud chmd 750 /hdfs/tmp 15. Add an entry t the /etc/fstab file s that the /hdfs partitin is munted n bt $ sud nan /etc/fstab Make it match this but remember the /dev/sd* may differ:

5 15. Make the required /pt/hadp/etc/hadp file changes - we're changing the purpse f this machine frm NameNde + DataNde t just DataNde. Check the afrementined nde2-cnfigfiles.zip fr reference. 16. On the NameNde (nde1) Start DFS and YARN: /pt/hadp/sbin/start-dfs.sh /pt/hadp/sbin/start-yarn.sh On the DataNde, nde2, take a lk in the /hdfs/tmp directry and yu shuld see that the NameNde has created a whle bunch f sub-directries. $ ls lrt /hdfs/tmp Check t see that the DataNde tasks are running with the jps cmmand: 17. Brwse t the NameNde web interface: and ensure yu can see the new nde. Here s a screensht shwing all 7 ndes included:

6 18. Running MapReduce tasks - the instructins are identical t thse fund n Jnas s site except there are sme subtle updates t the hdfs cmmands fr versin 2.x f Hadp. The steps I used are: $ hadp fs -cpyfrmlcal mediumfile.txt /mediumfile.txt $ yarn jar /pt/hadp/share/hadp/mapreduce/hadp-mapreduce-examples jar wrdcunt /mediumfile.txt /mediumfile-ut Yu can mnitr the running tasks frm the NameNde web interface. Here are sme screenshts f my test runs: 19. When yu re happy with yur first DataNde, and yu re ready t add anther, g thrugh steps 1-8 and t create each subsequent nde. If yu ve perfrmed any tests, laded any data, yu will have t clear dwn the /hdfs/tmp directry t ensure all ndes are in-sync. When yu start DFS frm the NameNde (nde1) it will recreate the file structure required n each nde.

7 The Finished Cluster Next Steps/Still t d: Get a ruter s that it's n its wn netwrk. This will enable the use f the web interface URL's that use the nde names. Currently my hme ruter is trying t DNS the IP addresses s these links dn't wrk. Write sme scripts, r find tl, fr running cmmands acrss all ndes. Especially fr cmmands like startup/shutdwn and clearing dwn the /hdfs partitin. I m thinking Chef r Puppet at this stage as I think they wuld be useful tls t learn abut.

Archiving IVTVision Video (Linux)

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

More information

Remote Desktop Tutorial. By: Virginia Ginny Morris

Remote Desktop Tutorial. By: Virginia Ginny Morris Remte Desktp Tutrial By: Virginia Ginny Mrris 2008 Remte Desktp Tutrial Virginia Ginny Mrris Page 2 Scpe: The fllwing manual shuld accmpany my Remte Desktp Tutrial vide psted n my website http://www.ginnymrris.cm

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn SlarWinds Technical Reference Preparing an Orin Failver Engine Installatin Intrductin t the Orin Failver Engine... 1 General... 1 Netwrk Architecture Optins and... 3 Server Architecture Optins and... 4

More information

A Beginner s Guide to Building Virtual Web Servers

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

More information

Ten Steps for an Easy Install of the eg Enterprise Suite

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

More information

Best Practice - Pentaho BA for High Availability

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

More information

Getting started with Android

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

More information

Network Intrusion Detection

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

More information

MapReduce Laboratory

MapReduce Laboratory MapReduce Labratry In this labratry students will learn hw t use the Hadp client API by wrking n a series f exercises: The classic Wrd Cunt and variatins n the theme Design Pattern: Pair and Stripes Design

More information

Configuring an Email Client for your Hosting Support POP/IMAP mailbox

Configuring an Email Client for your Hosting Support POP/IMAP mailbox Cnfiguring an Email Client fr yur Hsting Supprt POP/IMAP mailbx This article lists the email settings and prt numbers fr pp and imap cnfiguratins, as well as fr SSL. It cntains instructins fr setting up

More information

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

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

More information

Pexip Infinity and Cisco UCM Deployment Guide

Pexip Infinity and Cisco UCM Deployment Guide Intrductin Pexip Infinity and Cisc UCM Deplyment Guide The Cisc Unified Cmmunicatins Manager (CUCM) is a SIP registrar and call cntrl device. This guide describes hw t integrate a single Pexip Infinity

More information

OUTLOOK All About Archives

OUTLOOK All About Archives OUTLOOK All Abut Archives Why d we have Zantaz Enterprise Archiving Slutin (EAS)? Archiving prvides verall lng term strage EAS has been implemented t help manage the 300MB mailbx size limit in Outlk/Exchange

More information

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE

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

More information

Emulation Tech Note 12 Testing XDS560V2 STM Emulator s Ethernet Port on Wi-Fi

Emulation Tech Note 12 Testing XDS560V2 STM Emulator s Ethernet Port on Wi-Fi Emulatin Tech Nte 12 Testing XDS560V2 STM Emulatr s Ethernet Prt n Wi-Fi Dcument Revisin 0.01 March 2, 2011 Page 1 f 6 TABLE OF CONTENTS 1 OVERVIEW... 3 2 HARDWARE TOOLS USED FOR TESTING... 3 3 SOFTWARE

More information

Blue Link Solutions Terminal Server Configuration How to Install Blue Link Solutions in a Terminal Server Environment

Blue Link Solutions Terminal Server Configuration How to Install Blue Link Solutions in a Terminal Server Environment Blue Link Slutins Terminal Server Cnfiguratin Hw t Install Blue Link Slutins in a Terminal Server Envirnment Prepared by: Darren Myher April 9, 2002 Table f Cntents Backgrund... 2 Applicatin Server mde

More information

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t

More information

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

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

More information

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

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

More information

Wireless Light-Level Monitoring

Wireless Light-Level Monitoring Wireless Light-Level Mnitring ILT1000 ILT1000 Applicatin Nte Wireless Light-Level Mnitring 1 Wireless Light-Level Mnitring ILT1000 The affrdability, accessibility, and ease f use f wireless technlgy cmbined

More information

Regions File Transmission

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

More information

Click Studios. Passwordstate. SafeNet Two-Factor Configuration

Click Studios. Passwordstate. SafeNet Two-Factor Configuration Passwrdstate SafeNet Tw-Factr Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in

More information

Backing Up and Restoring Your MySQL Database From the command prompt

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

More information

Setup O365 mailbox access on MACs

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

More information

Setting up your New Staff Voicemail. EVA: Exchange Voicemail Access. IT Services

Setting up your New Staff Voicemail. EVA: Exchange Voicemail Access. IT Services Setting up yur New Staff Vicemail EVA: Exchange Vicemail Access IT Services 1. Welcme t the Exchange 2010 Unified Messaging Instructins fr campus Staff vicemail Cventry University is rlling ut a new email

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

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

More information

CenterPoint Accounting for Agriculture Network (Domain) Installation Instructions

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

More information

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

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

More information

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

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider Deply Yur First Clud Fundry App t Any Clud Fundry Service Prvider cludwrkshp.rg/cludfundry Presenter: Develper Advcate, Redis Labs @davenielsen Oct 2015 dnielsen@gmail.cm twitter.cm/davenielsen linkedin.cm/in/dnielsen

More information

Dial Backup for Dedicated T1 Circuits using the ATLAS

Dial Backup for Dedicated T1 Circuits using the ATLAS Article ID: 1449 Q&A Dial Backup fr Dedicated T1 Circuits using the ATLAS Q: Dial Backup fr Dedicated T1 Circuits using the ATLAS A: Intrductin This technical supprt nte describes hw t cnfigure the ATLAS

More information

Understand Business Continuity

Understand Business Continuity Understand Business Cntinuity Lessn Overview In this lessn, yu will learn abut: Business cntinuity Data redundancy Data availability Disaster recvery Anticipatry Set What methds can be emplyed by a system

More information

Webalo Pro Appliance Setup

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

More information

Service Desk Self Service Overview

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

More information

Citrix XenServer from HP Getting Started Guide

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

More information

Inquisit FAQ. How do I get a Kent Inquisit user account?

Inquisit FAQ. How do I get a Kent Inquisit user account? Inquisit FAQ Cntents Hw d I get a Kent Inquisit user accunt?... 1 What is the website fr Inquisit?... 2 Hw d I run an Inquisit IAT?... 3 Will my participants need t install anything t take part in my study?...

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

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

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

More information

Chapter - 3. Cable Connections

Chapter - 3. Cable Connections Chapter - 3 Cable Cnnectins One bradband alternative is thrugh cable TV, where yur Internet cnnectin is delivered t yur hme thrugh yur televisin cable. Many cable prviders wn't qute yu an exact speed,

More information

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit Student 3 page 1: Lw Merit Hardware cmpnents Extensin cards Descriptin, Hw purpse determines cnnectins Extensin cards extend the capacity f the mtherbard by allwing a circuit bard r card t cnnect t it

More information

FINRA Regulation Filing Application Batch Submissions

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

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

Software Distribution

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

More information

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

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

More information

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...

More information

Connecting to Email: Live@edu

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

More information

INTERMEDIATE CAD FILE MANAGEMENT

INTERMEDIATE CAD FILE MANAGEMENT INTERMEDIATE CAD FILE MANAGEMENT Intrductin File mismanagement is the dwnfall f many brilliant individuals. If yu are wise, yu wn't be ne f the peple wh meet disaster due t pr file management. Cmputers

More information

ZoomText Network License Installation Guide

ZoomText Network License Installation Guide ZmText Netwrk License Installatin Guide Requirements: Server: Yu will need access t a physical r virtual server (Windws XP r newer) that is nt currently running ZmText, but is n the same netwrk as the

More information

Department of CSIT Organizes a 2-Day Skill Development Workshop On Basic Networking Tools and Concepts. On 14-15 March 2016

Department of CSIT Organizes a 2-Day Skill Development Workshop On Basic Networking Tools and Concepts. On 14-15 March 2016 Department f CSIT Organizes a 2-Day Skill Develpment Wrkshp On Basic Netwrking Tls and Cncepts On 14-15 March 2016 In Jint Cllabratin With Skill Develpment Cell Guru Ghasidas Vishwavidyalaya, Bilaspur

More information

Using the 3M Cloud Library: Kindle Fire

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

More information

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

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

More information

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8 McAfee Enterprise Security Manager Data Surce Cnfiguratin Guide Data Surce: Infblx NIOS September 2, 2014 Infblx NIOS Page 1 f 8 Imprtant Nte: The infrmatin cntained in this dcument is cnfidential and

More information

1)What hardware is available for installing/configuring MOSS 2010?

1)What hardware is available for installing/configuring MOSS 2010? 1)What hardware is available fr installing/cnfiguring MOSS 2010? 2 Web Frnt End Servers HP Prliant DL 380 G7 2 quad cre Intel Xen Prcessr E5620, 2.4 Ghz, Memry 12 GB, 2 HP 146 GB drives RAID 5 2 Applicatin

More information

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

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

More information

GETTING STARTED With the Control Panel Table of Contents

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

More information

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

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

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U

More information

HOWTO: How to configure SSL VPN tunnel gateway (office) to gateway

HOWTO: How to configure SSL VPN tunnel gateway (office) to gateway HOWTO: Hw t cnfigure SSL VPN tunnel gateway (ffice) t gateway Hw-t guides fr cnfiguring VPNs with GateDefender Integra Panda Security wants t ensure yu get the mst ut f GateDefender Integra. Fr this reasn,

More information

Perl for OpenVMS Alpha

Perl for OpenVMS Alpha Perl fr OpenVMS Alpha Installatin Guide and Release Ntes January 25, 2002 Perl fr OpenVMS Versin 5.6.1 CPQ-AXPVMS-PERL-V0506-1-1.PCSI-DCX-AXPEXE On this page yu'll find infrmatin abut: Sftware prerequisites

More information

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

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

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

MaaS360 Cloud Extender

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

More information

Ahsay NAS Client Utility v1.0.1.x. Setup Guide. Ahsay TM Online Backup - Development Department

Ahsay NAS Client Utility v1.0.1.x. Setup Guide. Ahsay TM Online Backup - Development Department Ahsay NAS Client Utility v1.0.1.x Ahsay TM Online Backup - Develpment Department Octber 7, 2009 Cpyright Ntice Ahsay Systems Crpratin Limited 2008. All rights reserved. The use and cpying f this prduct

More information

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server

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

More information

Towne Lake HOA Online File Storage

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

More information

Control4 Driver for JVC D-ILA Projectors

Control4 Driver for JVC D-ILA Projectors www.t4cntrl.cm T4Cntrl 1 Cntrl4 Driver fr JVC D-ILA Prjectrs Versin: 1.1.0 Filename: prjectr_jvc-dila.c4i Release date: 02/27/2014 Intrductin This driver enables IP cntrl f wide range f JVC prjectrs with

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

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

More information

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

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

More information

Application Advisories for Data Integrator for Non- EDI location

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

More information

CallRex 4.2 Installation Guide

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

More information

AvePoint High Speed Migration Supplementary Tools

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

More information

InfiniTV 4 Installation Instructions

InfiniTV 4 Installation Instructions InfiniTV 4 Installatin Instructins 1. Obtain a CableCARD frm yur cable TV service prvider 1. Call yur cable TV service prvider and tell them yu need a multi-stream CableCARD (M-Card) fr a Cetn InfiniTV

More information

Elite Home Office and Roku HD Setup

Elite Home Office and Roku HD Setup Elite Hme Office and Rku HD Setup Spt On Netwrks Elite Hme Office ffers the user the advantages f having yur wn private wireless netwrk within ur larger netwrk. Print wirelessly, share files between devices,

More information

Business Digital Voice Site Services - Phone & User Assignments

Business Digital Voice Site Services - Phone & User Assignments Feature Overview The Phnes and Users must be assigned befre setting up ther cmpnents f Business Digital Vice. The system is designed t allw custmers t quickly setup and mdify phne assignments in real time

More information

o 1.1 - How AD Query Works o 1.2 - Installation Requirements o 2.1 - Inserting your License Key o 2.2 - Selecting and Changing your Search Domain

o 1.1 - How AD Query Works o 1.2 - Installation Requirements o 2.1 - Inserting your License Key o 2.2 - Selecting and Changing your Search Domain SysOp Tls Active Directry Management sftware Active Directry Query v1.x Sftware Installatin and User Guide Updated September 29, 2008 In This Dcument: 1.0 Intrductin 1.1 - Hw AD Query Wrks 1.2 - Installatin

More information

Configuring and Integrating LDAP

Configuring and Integrating LDAP Cnfiguring and Integrating LDAP The Basics f LDAP 3 LDAP Key Terms and Cmpnents 3 Basic LDAP Syntax 4 The LDAP User Experience Mnitr 6 This dcument includes infrmatin abut LDAP and its rle with SlarWinds

More information

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

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

More information

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

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

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

Recommended Backup Plan for SQL 2000 Server Database Servers

Recommended Backup Plan for SQL 2000 Server Database Servers Recmmended Backup Plan fr SQL 2000 Server Database Servers (DAISI) General Ntes STI recmmends that data backup be perfrmed n a regular basis. Transactin Lg Backup Users shuld nt truncate the Transactin

More information

Volume THURSTON COUNTY CLERK S OFFICE. e-file SECURE FTP Site (January 2011) User Guide

Volume THURSTON COUNTY CLERK S OFFICE. e-file SECURE FTP Site (January 2011) User Guide Vlume 1 THURSTON COUNTY CLERK S OFFICE e-file SECURE FTP Site (January 2011) User Guide Table f Cntents C H A P T E R 1 FTP e-filing SERVICE 1 Dcument Requirements 1 Scanners 2 File naming cnventin 2 e-file

More information

DTU Data Transfer Utilities Software User manual

DTU Data Transfer Utilities Software User manual DTU Data Transfer Utilities Sftware User manual Ft. Atkinsn, Wiscnsin USA Panningen, Nederland www.digi-star.cm D3912-GB Rev A Sept 11 Table f cntents TABLE OF CONTENTS DTU Sftware general... 1 Minimum

More information

In addition to assisting with the disaster planning process, it is hoped this document will also::

In addition to assisting with the disaster planning process, it is hoped this document will also:: First Step f a Disaster Recver Analysis: Knwing What Yu Have and Hw t Get t it Ntes abut using this dcument: This free tl is ffered as a guide and starting pint. It is des nt cver all pssible business

More information

Accessing SpringBoard Online Table of Contents: Websites, pg 1 Access Codes, 2 Educator Account, 2 How to Access, 3 Manage Account, 7

Accessing SpringBoard Online Table of Contents: Websites, pg 1 Access Codes, 2 Educator Account, 2 How to Access, 3 Manage Account, 7 Accessing SpringBard Online Table f Cntents: Websites, pg 1 Access Cdes, 2 Educatr Accunt, 2 Hw t Access, 3 Manage Accunt, 7 SpringBard Online Websites SpringBard Online is the fficial site fr teachers,

More information

Identify Major Server Hardware Components

Identify Major Server Hardware Components 98-365 Windws Server Administratin Fundamentals Identify Majr Server Hardware Cmpnents 98-365 Windws Server Administratin Fundamentals Lessn Overview In this lessn, yu will learn: Server frm factrs Server

More information

ABELMed Platform Setup Conventions

ABELMed Platform Setup Conventions ABELMed Platfrm Setup Cnventins 1 Intrductin 1.1 Purpse f this dcument The purpse f this dcument is t prvide prspective ABELMed licensees and their hardware vendrs with the infrmatin that they will require

More information

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015 PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) Excel Data Management Pack (EDM-Pack) Date: December 2015 Dcument Versin: 1.0.0 Abstract The EDM-Pack includes a general-purpse Data Surce

More information

Kurzweil 3000 Version 12 Web License

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

More information

Search Engine Optimisation and Web Analytics

Search Engine Optimisation and Web Analytics E-Cmmerce Applicatins Prmting yur Site: Search Engine Optimisatin and Web Analytics Sessin 6 1 Next steps Prmting yur Business Having develped website/e-shp shp next step is t prmte the business Marketing

More information

LISTSERV ADMINISTRATION Department of Client Services Information Technology Systems Division

LISTSERV ADMINISTRATION Department of Client Services Information Technology Systems Division LISTSERV ADMINISTRATION Department f Client Services Infrmatin Technlgy Systems Divisin E-MAIL LIST INSTRUCTIONS Yur List s Admin Webpage...2 Fr assistance cntact the Technlgy Assistance Center: 962-4357

More information

Tech Notes Promise RAID

Tech Notes Promise RAID Tech Ntes Prmise RAID 03/05/ Purpse: T increase familiarity with the Prmise RAID systems in bth Windws Based and DOS based sftware, including the crrect methd fr rebuilding arrays, crrecting drive errrs,

More information

User Guide Version 3.9

User Guide Version 3.9 User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING

More information

Excel Contact Reports

Excel Contact Reports Excel Cntact Reprts v.1.0 Anther efficient and affrdable ACT! Add-On by http://www.expnenciel.cm Excel Cntact Reprts User s Manual 2 Table f cntents Purpse f the add-n... 3 Installatin prcedure... 3 The

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

How To Edit A Subscriber On Email From A Newsletter On A Pc Or Mac Or Mac (For Pc Or Ipa) On A Mac Or Ipad Or Macorcha (For Macorca) On An Email From An Email (For Ip

How To Edit A Subscriber On Email From A Newsletter On A Pc Or Mac Or Mac (For Pc Or Ipa) On A Mac Or Ipad Or Macorcha (For Macorca) On An Email From An Email (For Ip Opt In Email 5.1 User Guide Cpyright 2006-13 Data Springs Inc. All rights reserved. Table f cntents: 1 INTRODUCTION 1.1 What s new? Enhancements in 5.1 2 INSTALLATION PROCEDURE 3 OPT IN EMAIL MODULE 3.1

More information

FUJITSU Software ServerView Suite ServerView Update Repository

FUJITSU Software ServerView Suite ServerView Update Repository Installatin and User Guide - English FUJITSU Sftware ServerView Suite ServerView Update Repsitry Editin Nvember 2015 Cmments Suggestins Crrectins The User Dcumentatin Department wuld like t knw yur pinin

More information

Barracuda API 3.0 Firmware Barracuda Spam Firewall

Barracuda API 3.0 Firmware Barracuda Spam Firewall These are instructins t help understand and implement the Barracuda API capability available n the Barracuda Spam Firewall in the versin 3.0 firmware series. This is an extensin f the API released in the

More information

How To Migrate To A Networks Dmain Name Service On A Pc Or Macbook (For Pc) On A Linux Computer (For Macbook) On An Ipad Or Ipad (For Ipad) On Pc Or Ipa (For

How To Migrate To A Networks Dmain Name Service On A Pc Or Macbook (For Pc) On A Linux Computer (For Macbook) On An Ipad Or Ipad (For Ipad) On Pc Or Ipa (For Reprt: April 12, 2011 By Erick Engelke I have rganized my tasks arund tw majr prblems: 1. Define the new active directry a. Dmain Name Service fr the dmain - cmplete b. Dmain layut, structuring f Organizatinal

More information