EPrints Hybrid Storage Management and Configuration

Size: px
Start display at page:

Download "EPrints Hybrid Storage Management and Configuration"

Transcription

1 EPrintsHybridStorageTraining TableofContents 1Introduction EPrintsHybridStorage ManagementandConfiguration 1Introduction PowerfulStorage Viewingyourstorageserviceusages ManagingyourStoragePolicy(Exercises) View/EdittheStoragePolicy UnderstandingthedefaultStoragePolicy Exercise1:VolatileFiles Exercise2:MultipleStorageLocations Exercise3:Storagepolicybaseduponrepositorymetadata ExampleSolution...8 EPrints3.2introducesanabstractedstoragelayerwhichprovidestheabilityfordatahostingsolutionssuchasAmazonS3tobeutilisedasa storagebackendtoeprints.theadvantageofthisisthatyoucan"plug in"tomultiplestorageservicesatthesametimeandcontrolthesewitha local"storagepolicy". InthistutorialwelookatthesomeofthestorageinterfacesthatEPrintscanuse,andalsohowtomodifythestoragepoliciestosuittheneedsof amodernrepository. 1

2 EPrintsHybridStorageTraining 2PowerfulStorage TheEPrintsteamhavebeenworkingonanumberofstorageplug inswhichareavailableboththroughfiles.eprints.organdwillbereleasedin EPrints3.2.Inthissectionweintroduceafewofthem: Name PluginID Description Local Local Savestothelocalharddisk. Local Compressed Sun Honeycomb LocalCompress HoneyComb Ausefullittleadditiontothelocalplug inthatcompressesfilestransparently(nochangeisseenin theuserinterface).goodforsavinglocaldiskspaceandarchivingoldandrarelyusedobjects. SupportsSun'sHoneycombplatform(nolongercommerciallyavailable).Thisplug insupportsthe APIusedbythisclassofhighlyrobustarchivalstorage. AmazonS3 AmazonS3 Plug intosupportthemostwidelyknowncloudstorageprovider.aswellassupportingbasicstorage functionalitytheplug inalsosupportsamazoncloudfrontfordirectlocaliseddeliveryofresources. SunCloud Storage SunCSS VerysimilartotheAmazonS3offerings.NotethatthisisabetaservicesandEPrintsisatesting partner. 2

3 EPrintsHybridStorageTraining 3Viewingyourstorageserviceusages TheStorageManagerscreencanbefoundundertheConfigToolstaboftheadminscreen. 3

4 EPrintsHybridStorageTraining ThefigurebelowshowstheStorageManager.Fromthisscreenyoucaneasilyviewwhereyourobjectsareandhowmuchspacetheyconsume. Youcanalsomovethembetweenstorageplatformswithasingleclick. 4

5 EPrintsHybridStorageTraining 4ManagingyourStoragePolicy(Exercises) 4.1View/EdittheStoragePolicy TheEPrintsStorageControllerismanagedbyapolicydefinedinanxmlfile.Thisconfigfile(storage/default.xml)canbeeditedbyclickingthe ViewConfigurationbuttonavailablefromtheConfigToolstaboftheadmininterface.storage/default.xmlislocatednearthebottomofthe availablelistoffiles.byclickingonthisfileyoucanviewandedititinyourbrowser. 4.2UnderstandingthedefaultStoragePolicy LikemanyconfigurationfilesinEPrints,thestoragepolicyisdefinedinxmlusingtheEPrintsControllanguage/namespace(epc)todefine decisionsinanxsltlikefashion. Belowyoucanseeacopyofthecurrentdefaultstoragepolicy.Theannotationsshouldhelpexplainwhateachlinedoes.Notethatbydefault, allfilesarestoredlocally. <store> <epc:when test="datasetid = 'document'"> </store> Start Policies Begin Choice Section If current object is document Use Local plug-in End document condition Otherwise Use Local plug-in End otherwise condition End Choice Section End Policies 4.3Exercise1:VolatileFiles Agoodstartingpointformanagingstorageservicesistodecidewhathappenstovolatilefiles.Thesearefilesthataregeneratedbythe repositoryforinternaluse(e.g.imagepreviews).assuchitisunlikelythatthesefileswillneedtobestoredoffsiteorpreserved. Volatilefilesarepartofthedocumentdatasetandwecandifferentiatethesefromotherfilesbylookingforarelationwhichexistsbetweenthe twotypesoffiles. 5

6 EPrintsHybridStorageTraining Editthedefaultstoragepolicyandinsertthefollowingcodetohandlevolatileandnon volatiledocumentfilesdifferently.thecodereplacesthe <pluginname= Local /> lineinsidethe epc:when sectionofthecode. <epc:when test="$parent{relation_type} = ' <plugin name="localcompress"/> AfterchangingthepolicyyouwillneedtoaddanewEPrinttotherepository.UploadaPDF,JPEGorGIFtotheEPrint,thenviewtheStorage Managerscreentoverifythattherearefilesinmorethanonelocation. 4.4Exercise2:MultipleStorageLocations Withtheabovedone,itshouldnowbeeasytoaddasecondlocationtostorenon volatiledocumentsin.thiscanbedonebysimplyaddinga new<plugin>tagtotherelevantsection. EPrintshandlesmultiplestoragelocationsforbothstorageanddeliverybysimplyprocessingthemintheordertheyappearinthestorage policy.forstorage,filesarestoredinalllocations.fordelivery,thefileisservedfromthefirstlocationintheconfigfile.intheeventthatthisis notavailable,itmovesontothesecond,andsoon. 4.5Exercise3:Storagepolicybaseduponrepositorymetadata Inthissectionyouwillusetheepclanguagetoaccessfilemetadata.Thismetatdatawillthenbeusedtocontrolthestorageoftheitem. Eachobjectwehandlewiththestoragecontrollerisa"file"objectineprintsandthusthefollowingpiecesofmetadataarejustafewthatare directlyavailable: 6

7 EPrintsHybridStorageTraining filename Nameofthefile mime_type Typeofthefile(e.g.PDF,JPEG,etc...) filesize Thesizeofthefile Aconditionalcanbeinsertedintothepolicyfiletousethisdatatomakedecisions: <epc:when test="mime_type = 'application/pdf'"> <plugin name="storagepluginname"/> AddtheaboveruletostorePDFfiles(application/pdf)inadifferentlocationfromeverythingelsestoredintherepository. NotethatEPrintsandUsermetadataisalsoavailable.Itispossibletomakeadecisionbasedon(forexample)whouploadedtheitemorwhich subjectareathepublicationrecordisassociatedwith. 7

8 EPrintsHybridStorageTraining 4.6ExampleSolution Thefollowingcodewillsolveallexercisescontainedinthisdocument. <store xmlns=" xmlns:epc=" <epc:when test="datasetid = 'document'"> <epc:when test="$parent{relation_type} = ' <epc:when test="mime_type = 'application/pdf'"> <plugin name="suncss"/> <plugin name="localcompress"/> </store> 8

EPrints Preservation Update

EPrints Preservation Update EPrints Preservation Update EPrints Preservation New EPrints Preservation Team Overseeing integration of preservation into EPrints software as well as involvement with preservation projects Preserv2 Ended

More information

About Java Plug-ins. Installing or Uninstalling the Java Plug-in CHAPTER

About Java Plug-ins. Installing or Uninstalling the Java Plug-in CHAPTER CHAPTER The Java Plug-in improves the performance of certain CiscoWorks applications and allows them to use the latest Java runtime functionality. For such applications, this plug-in speeds up caching

More information

New World Construction FTP service User Guide

New World Construction FTP service User Guide New World Construction FTP service User Guide A. Introduction... 2 B. Logging In... 4 C. Uploading Files... 5 D. Sending Files... 6 E. Tracking Downloads... 10 F. Receiving Files... 11 G. Setting Download

More information

! PRIVATE!PAGES! DRUPAL!7!WEB!CONTENT!MANAGEMENT!

! PRIVATE!PAGES! DRUPAL!7!WEB!CONTENT!MANAGEMENT! UNIVERSITY*OF*CALGARY InformationTechnologies PRIVATEPAGES DRUPAL7WEBCONTENTMANAGEMENT September2015 TableofContents FirstSteps...1 AddingaPrivatePage...2 AccessControl...4 PrivatePages Drupal7WebContentManagement

More information

Technical Update 2008

Technical Update 2008 Technical Update 2008 Sandy Payette, Chief Executive Dan Davis, Chief Software Architect April 27, 2008 Mission Driven Use Cases Scholarly and Scien.fic Research and Communica.on Data Cura.on, Linking,

More information

AlienVault Unified Security Management Solution Complete. Simple. Affordable Life Cycle of a log

AlienVault Unified Security Management Solution Complete. Simple. Affordable Life Cycle of a log Complete. Simple. Affordable Copyright 2014 AlienVault. All rights reserved. AlienVault, AlienVault Unified Security Management, AlienVault USM, AlienVault Open Threat Exchange, AlienVault OTX, Open Threat

More information

Eliminate Dark and Dirty Data

Eliminate Dark and Dirty Data Eliminate Dark and Dirty Data ECM is dead Long Live ECM Why didn t they come? Deep, un navigable folder structures Application of Metadata and Classifications Find-ability Scope not well defined All Resulting

More information

Collecting Windows logs using Snare

Collecting Windows logs using Snare Collecting Windows logs using Snare 1 Introduction This manual explains how to configure Snare to send Windows logs to AlienVault. A snare agent (installed in Windows machines) sends logs to the AlienVault

More information

ID Pictures collection for Membership card of ARBH- KBHB/LFH/VHL

ID Pictures collection for Membership card of ARBH- KBHB/LFH/VHL ID Pictures collection for Membership card of ARBH- KBHB/LFH/VHL 1 Table of Contents 1. Hardware /software... 3 2. Software verification... 4 2.1 installing the EID reader middleware... 4 2.2. Java runtime

More information

How-To-Do. Firmware Update Speed7 and project backup on the MMC card

How-To-Do. Firmware Update Speed7 and project backup on the MMC card How-To-Do Firmware Update Speed7 and project backup on the MMC card Table of Contents 1 Generally... 2 1.1 Information... 2 1.2 Reference... 2 2 Step by step procedure... 3 2.1 Save Project from CPU to

More information

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Abstract These Application Notes describe

More information

Data Movement and Storage. Drew Dolgert and previous contributors

Data Movement and Storage. Drew Dolgert and previous contributors Data Movement and Storage Drew Dolgert and previous contributors Data Intensive Computing Location Viewing Manipulation Storage Movement Sharing Interpretation $HOME $WORK $SCRATCH 72 is a Lot, Right?

More information

Types MIME déjà configurés pour les hébergements Windows

Types MIME déjà configurés pour les hébergements Windows Extension MimeType.323 text/h323.aaf.aca.accdb application/msaccess.accde application/msaccess.accdt application/msaccess.acx application/internet-property-stream.afm.ai application/postscript.aif audio/x-aiff.aifc

More information

Backup Software Comparison Table

Backup Software Comparison Table Backup Software Comparison Table Features Summary SyncBackPro SyncBackSE New in Version 6: Amazon S3 and Google Storage support New in Version 6: Microsoft Azure support New in Version 6: Backup of emails

More information

HTML5 Web Scanning with LEADTOOLS

HTML5 Web Scanning with LEADTOOLS HTML5 Web Scanning with LEADTOOLS 1 Introduction TWAIN scanning and document capture is an essential aspect and starting point of most document imaging applications. For web developers, this is a problematic

More information

Implementation of escan Live Events with SYSLOG (CACTI)

Implementation of escan Live Events with SYSLOG (CACTI) Implementation of escan Live Events with SYSLOG (CACTI) Enterprise customers, implement NMS (Network Management Servers) to get the status of devices like Routers, Switches, printers etc. So whenever a

More information

U.S. Securities and Exchange Commission. Data Delivery Standards

U.S. Securities and Exchange Commission. Data Delivery Standards U.S. Securities and Exchange Commission This document describes the technical requirements for paper and electronic document productions to the U.S. Securities and Exchange Commission (SEC). **Any proposed

More information

Shopping Cart Setup & Configuration Guide

Shopping Cart Setup & Configuration Guide Booster Web Solutions Shopping Cart Setup & Configuration Guide Version 1.0 Table of Contents 1 Introduction... 3 2 Shopping Cart Store Files... 4 3 Create new product... 5 4 Create Product Categories...

More information

Bring documents to mobile devices the new epub output for ebooks

Bring documents to mobile devices the new epub output for ebooks Bring documents to mobile devices the new epub output for ebooks Zoltan Urban, Director of R&D Nuance Document Imaging Developers Conference 2013 2002-2013 Nuance Communications, Inc. All rights reserved.

More information

Overview of edx Analytics

Overview of edx Analytics Overview of edx Analytics I. Data Available from edx EdX provides researchers with data about your institution's classes running on edx.org and edge.edx.org. This includes: Course data Student information

More information

A block based storage model for remote online backups in a trust no one environment

A block based storage model for remote online backups in a trust no one environment A block based storage model for remote online backups in a trust no one environment http://www.duplicati.com/ Kenneth Skovhede (author, kenneth@duplicati.com) René Stach (editor, rene@duplicati.com) Abstract

More information

UNITED KINGDOM (UNITED KINGDOM) : Trusted List

UNITED KINGDOM (UNITED KINGDOM) : Trusted List UNITED KINGDOM (UNITED KINGDOM) : Trusted List Tsl Id: UKTSL06Aug2015 Valid until nextupdate value: 2015-12-16T00:00:00Z TSL signed on: 2015-08-06T11:45:16Z PDF generated on: Thu Aug 06 15:56:02 CEST 2015

More information

AKRAPLAST Sistemi S.p.A. - I - 20026 Novate Milanese (Mi) - via Cascina del Sole, 70 Tel: (+39) 02 35 13 91 1 - Fax: (+39) 02 35 13 91 50 - E-mail:

AKRAPLAST Sistemi S.p.A. - I - 20026 Novate Milanese (Mi) - via Cascina del Sole, 70 Tel: (+39) 02 35 13 91 1 - Fax: (+39) 02 35 13 91 50 - E-mail: Choose between alternatives marked by SPECIFICATION TEXT Wall; Northlight; realised with modular system type AKRAPAN by Akraplast Sistemi, composed of: 1) UV protected multi-wall polycarbonate panels with

More information

Prolific USB to SATA Bridge Controller Backup Software User s Manual

Prolific USB to SATA Bridge Controller Backup Software User s Manual Prolific USB to SATA Bridge Controller Backup Software User s Manual For Windows XP/Vista/7 For Software version 3.9.2.00 (6/28/2011) Contents About Prolific Backup Software System Requirements Using the

More information

Cloud Standards. Sam Johnston <sj@google.com> Google Zürich

Cloud Standards. Sam Johnston <sj@google.com> Google Zürich Cloud Standards Sam Johnston Google Zürich Disclaimer Personal opinion May/may not reflect official Google position Cloud Computing Internet-based computing, whereby shared resources, software,

More information

Measuring Caring: A compilation of international research on Caritas as Healing intervention. Table of Contents

Measuring Caring: A compilation of international research on Caritas as Healing intervention. Table of Contents MeasuringCaring:Acompilationofinternationalresearchon CaritasasHealingintervention. TableofContents SECTION1,THEORETICALBACKGROUDOFCARITAS... p. Chapter1,ConceptsofCaringasConstructofCaritas... p. JohnNelson,RN,MS,PhDc;PamDiNapoli,RN,PhD;MarianTurkel,RN,PhDNEA

More information

UNITED KINGDOM (UNITED KINGDOM) : Trusted List

UNITED KINGDOM (UNITED KINGDOM) : Trusted List UNITED KINGDOM (UNITED KINGDOM) : Trusted List Tsl Id: UKTSL15Dec2015 Valid until nextupdate value: 2016-06-02T22:00:00Z TSL signed on: 2015-12-15T21:30:53Z PDF generated on: Tue Dec 15 22:32:55 CET 2015

More information

Lync Web App 2013 Guide

Lync Web App 2013 Guide Lync Web App 2013 Guide Contents Introduction... 1 Getting Started... 2 System Requirements... 2 Install a Webcam... 2 Headsets and Speakerphones... 2 Joining Lync Web App Meetings... 3 Overview... 3 Plug

More information

БЪЛГАРИЯ (BULGARIA) : Trusted List

БЪЛГАРИЯ (BULGARIA) : Trusted List БЪЛГАРИЯ (BULGARIA) : Trusted List Tsl Id: TSL- Valid until nextupdate value: 2016-05-08T21:00:00Z TSL signed on: 2015-11-09T12:19:37Z PDF generated on: Mon Nov 09 13:20:12 CET 2015 БЪЛГАРИЯ (BULGARIA)

More information

User Manual. 2 Bay Docking Station

User Manual. 2 Bay Docking Station FANTEC MR-CopyDU3 User Manual 2 Bay Docking Station With One Touch Backup (OTB) and Copy Function Hardware: PC and Notebooks, Macintosh USB 1.1, USB 2.0 or USB 3.0 interface Features: 2,5 or 3,5 SATA I,II,III

More information

https://www.mozilla.org/en- US/firefox/new/ http://www.google.com/chrome/

https://www.mozilla.org/en- US/firefox/new/ http://www.google.com/chrome/ Video Conference Details Below are the details of your videoconference with participants at The University of Queensland. Date Time URL For assistance please call Video Conferencing with UQ The University

More information

1. To ensure the appropriate level of security, you will need Microsoft Windows XP or above.

1. To ensure the appropriate level of security, you will need Microsoft Windows XP or above. System Requirements This section describes the resources you will need on your computer and how to configure your system to use @venture. Because individual systems widely vary, these guidelines are general

More information

MINISTRY OF FINANCE SYSTEM INTEGRATION PLAN ATTACHMENT NR 2 SEAP XML SPECIFICATION WEBSERVICE INTERFACE FOR EXTERNAL SYSTEMS PROJECT ECIP/SEAP

MINISTRY OF FINANCE SYSTEM INTEGRATION PLAN ATTACHMENT NR 2 SEAP XML SPECIFICATION WEBSERVICE INTERFACE FOR EXTERNAL SYSTEMS PROJECT ECIP/SEAP MINISTRY OF FINANCE SYSTEM INTEGRATION PLAN ATTACHMENT NR 2 SEAP XML SPECIFICATION WEBSERVICE INTERFACE FOR EXTERNAL SYSTEMS PROJECT ECIP/SEAP VERSION 1 z 26 Table of Contents 1. WebService Interface

More information

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically.

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically. My Docs Online Secure File Delivery API: C# Introduction My Docs Online has provided HIPAA-compliant Secure File Sharing and Delivery since 1999. With the most recent release of its web client and Java

More information

1 Backup/Restore Files

1 Backup/Restore Files 1 Backup/Restore Files This chapter describes in details how DATABOKS Online Backup Manager backup your files and how you can restore your backup files from DATABOKS Offsite Backup Server using your favorite

More information

Technical bulletin_ma VW Spotlight Plugin v2.x short manual_d4.doc. MA Vectorworks Export Plugin V2.x

Technical bulletin_ma VW Spotlight Plugin v2.x short manual_d4.doc. MA Vectorworks Export Plugin V2.x Technical bulletin Paderborn, 08/06/2015 Contact: tech.support@malighting.com MA Vectorworks Export Plugin V2.x Short Manual Introduction The MA Vectorworks Export Plugin allows you to export the information

More information

Open Source Backup with Amanda

Open Source Backup with Amanda Open Source Backup with Amanda Peninsula Linux Users Group (Jan 2008) Paddy Sreenivasan paddy@zmanda.com Copyright 2007 Zmanda, Inc. All rights reserved. 1 Amanda network backup and recovery Easy to use

More information

Software Toolbox License Transfer Guide. TOP Server OPC Server

Software Toolbox License Transfer Guide. TOP Server OPC Server Page 1 of 15 Software Toolbox License Transfer Guide TOP Server OPC Server Table of Contents INTRODUCTION 2 STEP 1: PREPARE TARGET MACHINE 3 STEP 2: REMOVE FROM SOURCE MACHINE 8 STEP 3: TRANSFER TO TARGET

More information

NCP Secure Enterprise Management for Windows OS. New Features version 1.03 to 2.05

NCP Secure Enterprise Management for Windows OS. New Features version 1.03 to 2.05 What s New NCP Secure Enterprise Management for Windows OS New Features version 1.03 to 2.05 Disclaimer Considerable care has been taken in the preparation and publication of this document, errors in content,

More information

Configuring Netscape 4.x

Configuring Netscape 4.x 1 Adobe Acrobat Reader Technical Guides When accessing PDF files on the Web, you have two options: opening the PDF file within the browser window, or opening the PDF file in Acrobat Reader as a separate

More information

WordPress File Monitor Plus Plugin Configuration

WordPress File Monitor Plus Plugin Configuration WordPress File Monitor Plus Plugin Configuration Open Source Varsity To configure the WordPress file monitor plus plugin on your WordPress driven Blog / website, login to WordPress as administrator, by

More information

ADOBE READER AND ACROBAT

ADOBE READER AND ACROBAT ADOBE READER AND ACROBAT IFILTER CONFIGURATION Table of Contents Table of Contents... 1 Overview of PDF ifilter 11 for 64-bit platforms... 3 Installation... 3 Installing Adobe PDF IFilter... 3 Setting

More information

SUOMI/FINLAND (FINLAND) : Trusted List

SUOMI/FINLAND (FINLAND) : Trusted List SUOMI/NLAND (NLAND) : Trusted List Tsl Id: id_for_enveloped_signing_of_the_entire_list Valid until nextupdate value: 2016-03-20T11:00:00 TSL signed on: 2015-09-21T10:46:05.486Z PDF generated on: Mon Sep

More information

Virtual Maintenance Training Deployment The Latest Technology Options

Virtual Maintenance Training Deployment The Latest Technology Options Virtual Maintenance Training Deployment The Latest Technology Options ATS 2015 Singapore April 2, 2015 Steve Jackson VP Business Development & Program Management The DiSTI Corporation, Orlando, FL USA

More information

Threat!and!Vulnerability!Assessments!

Threat!and!Vulnerability!Assessments! ThreatandVulnerabilityAssessments https://www.cybersecdefense.com @cybersecdefense 13720JetportCommerceParkway STE13 Ft.Myers,FL33913 COPYRIGHT 2015,CybersecurityDefenseSolutions,LLC ALLRIGHTSRESERVED

More information

Introduction to Eclipse, Creating Eclipse plug-ins and the Overture editor. David Holst Møller Engineering College of Aarhus

Introduction to Eclipse, Creating Eclipse plug-ins and the Overture editor. David Holst Møller Engineering College of Aarhus Introduction to Eclipse, Creating Eclipse plug-ins and the Overture editor David Holst Møller Engineering College of Aarhus Agenda Part I Introduction to Eclipse and Eclipse Plug-ins Part II The Overture

More information

Windows Movie Maker 2 Video Task Guide

Windows Movie Maker 2 Video Task Guide Windows Movie Maker 2 Video Task Guide This guide will instruct you how to get video footage from a DV camcorder to your computer. It will also give basic instructions for trimming footage and adding transitions.

More information

How To Encrypt a File using Windows Explorer and WinZip. For Use With All PII Data

How To Encrypt a File using Windows Explorer and WinZip. For Use With All PII Data How To Encrypt a File using Windows Explorer and WinZip For Use With All PII Data As an employee or a contractor, you share in the responsibility for protecting the privacy of individuals whose information

More information

Oracle Business Intelligence EE. Prab h akar A lu ri

Oracle Business Intelligence EE. Prab h akar A lu ri Oracle Business Intelligence EE Prab h akar A lu ri Agenda 1.Overview 2.Components 3.Oracle Business Intelligence Server 4.Oracle Business Intelligence Dashboards 5.Oracle Business Intelligence Answers

More information

Food and Drug Administration

Food and Drug Administration Food and Drug Administration FDA Electronic Submissions Gateway Tutorial WebTrader Hosted Solution (WTHS): Making Electronic Submissions Document Version Date: 04/28/2014 Page 1 of 9 1. OVERVIEW Organizations

More information

How To Install the Virtual Learning App

How To Install the Virtual Learning App Table of Contents Installation Instructions... 2 MAC: Using Firefox... 2 MAC: Using Chrome... 6 Disabling PepperFlash... 9 MAC: Using Safari Unsafe Mode We Can t Control So Use Firefox or Chrome... 11

More information

WMI Collecting Windows Logs

WMI Collecting Windows Logs WMI Collecting Windows Logs (tested on Windows 2008 Servers / Windows 7) 14.04.2011 Pascal Cronauer Version 1.0 10.11.2011 Pascal Cronauer Version 1.1 1 Introduction We are using WMI to remotely collect

More information

SQUEEZE SERVER. Operation Version 3.0

SQUEEZE SERVER. Operation Version 3.0 SQUEEZE SERVER Operation Version 3.0 CONTENTS Introduction to Squeeze Server... 2 Features... 2 Squeeze Server Components... 4 How Squeeze Server Works... 5 Running Squeeze Server... 6 Supported File Formats...

More information

Snare System Version 6.3.3 Release Notes

Snare System Version 6.3.3 Release Notes Snare System Version 6.3.3 Release Notes is pleased to announce the release of Snare Server Version 6.3.3. Snare Server Version 6.3.3 Bug Fixes: Implemented enhanced memory management features within the

More information

WebNow. Installation and Setup Guide. ImageNow Version: 6.7.x Environment: Windows Web Application Server: Tomcat

WebNow. Installation and Setup Guide. ImageNow Version: 6.7.x Environment: Windows Web Application Server: Tomcat WebNow Installation and Setup Guide ImageNow Version: 6.7.x Environment: Windows Web Application Server: Tomcat Written by: Product Documentation, R&D Date: November 2013 2013 Perceptive Software. All

More information

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved.

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. AWS Plug-in Guide Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Creating an Interactive Digital Animation Level: 3 Sub-level: Unit 312 Credit value: 8 Guided learning hours: 65

Creating an Interactive Digital Animation Level: 3 Sub-level: Unit 312 Credit value: 8 Guided learning hours: 65 Unit Title: Creating an Interactive Digital Animation Level: 3 Sub-level: Unit 312 Credit value: 8 Guided learning hours: 65 Unit purpose and aim This unit helps learners to familiarise themselves with

More information

MICROSOFT EXCEL 2011 MANAGE WORKBOOKS

MICROSOFT EXCEL 2011 MANAGE WORKBOOKS MICROSOFT EXCEL 2011 MANAGE WORKBOOKS Last Edited: 2012-07-10 1 Open, create, and save Workbooks... 3 Open an existing Excel Workbook... 3 Create a new Workbook... 6 Save a Workbook... 6 Set workbook properties...

More information

Software Configuration Management Plan

Software Configuration Management Plan Software Configuration Management Plan Jasper Maes jaspmaes@vub.ac.be November 10, 2010 Abstract This document describes the software configuration management plan of group 4 in the Software Engineering

More information

Internet Radio access. Free radio from over 50,000 stations

Internet Radio access. Free radio from over 50,000 stations Internet Radio access Free radio from over 50,000 stations DAB versus Internet Radio Digital Audio Broadcast Radio: like your newer digital television receivers, digital audio radio picks up digital broadcasts

More information

Using USB Flash Drives

Using USB Flash Drives Using USB Flash Drives What is a USB flash drive? Since it was first released in 2000, the USB drive has come to become one of the most essential tools for storing and transporting data in an easily portable

More information

New Reader DRM IKLA Licensing Scheme

New Reader DRM IKLA Licensing Scheme New Reader DRM IKLA Licensing Scheme John B. Harris Manager, Security Alliances June 2008 DRM RIKLA 2.0 - Overview What is a RIKLA anyway? What does Adobe Mean by DRM? Effective Date and Term Annual Fee,

More information

Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide. Citrix Access Gateway 8.1, Enterprise Edition

Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide. Citrix Access Gateway 8.1, Enterprise Edition Citrix Access Gateway Enterprise Edition Citrix Access Gateway Plugin for Java User Guide Citrix Access Gateway 8.1, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this

More information

FAQ. Hosted Data Disaster Protection

FAQ. Hosted Data Disaster Protection Hosted Data Disaster Protection Flexiion is based in the UK and delivers Infrastructure as a Service (IaaS) solutions, making the advantages of the Cloud and IaaS more accessible to mid-size, professional

More information

Maryland Online SYLLABUS

Maryland Online SYLLABUS Maryland Online SYLLABUS Course Description: Prerequisites: The course will explore the online teaching and learning environment by introducing online learning principles and instructor competencies. Participants

More information

Computer Networks. Lecture 7: Application layer: FTP and HTTP. Marcin Bieńkowski. Institute of Computer Science University of Wrocław

Computer Networks. Lecture 7: Application layer: FTP and HTTP. Marcin Bieńkowski. Institute of Computer Science University of Wrocław Computer Networks Lecture 7: Application layer: FTP and Marcin Bieńkowski Institute of Computer Science University of Wrocław Computer networks (II UWr) Lecture 7 1 / 23 Reminder: Internet reference model

More information

Topia Technology, Inc. 1119 Pacific Avenue, Suite 200, Tacoma WA 98402 253.572.9712 www.secrata.com

Topia Technology, Inc. 1119 Pacific Avenue, Suite 200, Tacoma WA 98402 253.572.9712 www.secrata.com SECRATA Enterprise File Sync and Share Application Version 4.7 Topia Technology, Inc. 1119 Pacific Avenue, Suite 200, Tacoma WA 98402 253.572.9712 www.secrata.com Table of Contents TABLE OF CONTENTS...

More information

Python for Series 60 Platform

Python for Series 60 Platform F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia

More information

Quest InTrust. Change auditing and policy compliance for the secure enterprise. May 2008. Copyright 2006 Quest Software

Quest InTrust. Change auditing and policy compliance for the secure enterprise. May 2008. Copyright 2006 Quest Software Quest InTrust Change auditing and policy compliance for the secure enterprise May 2008 Copyright 2006 Quest Software Quest is the Thought Leader in Active Directory Named Microsoft Global ISV Partner of

More information

Webinar/video conferencing

Webinar/video conferencing Webinar/video conferencing Skype for Business Attendee/Guest Guide As a guest/attendee of a webinar you will receive a link through email to use to join the session. The link you receive for your webinar

More information

How to Convert Outlook Email Folder Into a Single PDF Document

How to Convert Outlook Email Folder Into a Single PDF Document How to Convert Outlook Email Folder Into a Single PDF Document An introduction to converting emails with AutoPortfolio plug-in for Adobe Acrobat Table of Contents What Software Do I Need?... 2 Converting

More information

Community Builder Language Package Guide Updated for CB 1.2.3

Community Builder Language Package Guide Updated for CB 1.2.3 Community Builder Language Package Guide Updated for CB 1.2.3 Introduction This document has been created to assist people in creating CB Language plugins. Overview CB 1.2.3 can speak different languages

More information

AntiVirus Bridge for SAP solutions

AntiVirus Bridge for SAP solutions AntiVirus Bridge for SAP solutions Version 3.0 Installation and Configuration Guide Page 1 AntiVirus Bridge for SAP solutions Installation and Configuration Guide Table of contents AntiVirus Bridge for

More information

Capturing Network Traffic With Wireshark

Capturing Network Traffic With Wireshark Capturing Network Traffic With Wireshark A White Paper From For more information, see our web site at Capturing Network Traffic with Wireshark Last Updated: 02/26/2013 In some cases, the easiest way to

More information

Drupal Performance Tuning

Drupal Performance Tuning Drupal Performance Tuning By Jeremy Zerr Website: http://www.jeremyzerr.com @jrzerr http://www.linkedin.com/in/jrzerr Overview Basics of Web App Systems Architecture General Web

More information

INSTALLING CITRIX RECEIVER ON WINDOWS XP OR VISTA HOME COMPUTER FOR EXISTING CITRIX USER

INSTALLING CITRIX RECEIVER ON WINDOWS XP OR VISTA HOME COMPUTER FOR EXISTING CITRIX USER INSTALLING CITRIX RECEIVER ON WINDOWS XP OR VISTA HOME COMPUTER FOR EXISTING CITRIX USER NOTE: SPEECH MIKE OR ANY DEVICE SPECIFIC TO BIGHAND MUST BE UNPLUGGED STEP 1 - UNINSTALL 1. Click on the Start Button.

More information

Abstract. 1. Introduction

Abstract. 1. Introduction Abstract In this paper we present a survey on web servers IIS, Apache, Sun Java web server, Apache Tomcat. Our survey work involves a comparative study of these web servers with respect to the following

More information

Web Modules for Garden Centers

Web Modules for Garden Centers Web Modules for Garden Centers 503.248.2159 overview web modules Run an online plant library to give your customers better inventory visibility. Create an online market place. No need for website redesign

More information

Introduction to Cloud Computing

Introduction to Cloud Computing Introduction to Cloud Computing Cloud Computing I (intro) 15 319, spring 2010 2 nd Lecture, Jan 14 th Majd F. Sakr Lecture Motivation General overview on cloud computing What is cloud computing Services

More information

Website Optimization Tips for Speed

Website Optimization Tips for Speed Website Optimization Tips for Speed Sothern California WordPress Meetup Microsoft HQ, Los Angeles - 3/20/2012 Belsien Thomas belsien@wppowerguide.com S Overview Of Website Optimization Content Optimizations

More information

GETTING STARTED WITH PROGRESS AMAZON CLOUD

GETTING STARTED WITH PROGRESS AMAZON CLOUD Progress OpenEdge Progress Fuse W H I T E P A P E R Progress Actional Progress Orbix > Progress Apama Progress Sonic GETTING STARTED WITH PROGRESS Progress ObjectStore OPENEDGE Progress Orbacus Progress

More information

WEEK 2 DAY 14. Writing Java Applets and Java Web Start Applications

WEEK 2 DAY 14. Writing Java Applets and Java Web Start Applications WEEK 2 DAY 14 Writing Java Applets and Java Web Start Applications The first exposure of many people to the Java programming language is in the form of applets, small and secure Java programs that run

More information

DEPLOYMENT GUIDE. Deploying F5 for High Availability and Scalability of Microsoft Dynamics 4.0

DEPLOYMENT GUIDE. Deploying F5 for High Availability and Scalability of Microsoft Dynamics 4.0 DEPLOYMENT GUIDE Deploying F5 for High Availability and Scalability of Microsoft Dynamics 4.0 Introducing the F5 and Microsoft Dynamics CRM configuration Microsoft Dynamics CRM is a full customer relationship

More information

Introduction. KLS Backup 2011. Program Overview

Introduction. KLS Backup 2011. Program Overview Introduction Program Overview is a powerful backup, synchronization and disk cleaner program that allows you to back up or synchronize your data to local and network drives, cloud storage, CD/DVD disc,

More information

SQUEEZE SERVER. Operation Guide Version 3.0

SQUEEZE SERVER. Operation Guide Version 3.0 SQUEEZE SERVER Operation Guide Version 3.0 CONTENTS Introduction to Squeeze Server... 1 Features... 2 Squeeze Server Components... 3 How Squeeze Server Works... 4 Running Squeeze Server... 5 Priority Job

More information

Tivoli Security Compliance Manager. Version 5.1 April, 2006. Collector and Message Reference Addendum

Tivoli Security Compliance Manager. Version 5.1 April, 2006. Collector and Message Reference Addendum Tivoli Security Compliance Manager Version 5.1 April, 2006 Collector and Message Reference Addendum Copyright International Business Machines Corporation 2006. All rights reserved. US Government Users

More information

Introduction to Mobile Systems

Introduction to Mobile Systems Introduction to Mobile Systems EE1072 By: Alireza Mousavi (1) Lecture notes Available on: people.brunel.ac.uk/~emstaam and WebCT Sources: Electronic Enterprise Systems Modern Enterprise: Design, Manage

More information

Meredith Mass Transit Web Client User Guide For Ad Hoc Accounts

Meredith Mass Transit Web Client User Guide For Ad Hoc Accounts Meredith Mass Transit Web Client User Guide For Ad Hoc Accounts Mass Transit is an easy to use, flexible Web based file transfer program. A temporary (Ad Hoc) account has been created for you on the Meredith

More information

Improving Magento Front-End Performance

Improving Magento Front-End Performance Improving Magento Front-End Performance If your Magento website consistently loads in less than two seconds, congratulations! You already have a high-performing site. But if your site is like the vast

More information

Send password-encrypted files automatically

Send password-encrypted files automatically Send password-encrypted files automatically iq.suite Tips & Tricks for IBM Domino Since iq.suite version 13.2 you can automatically compress and password-protect documents before sending using the Convert

More information

InformationNOW SQL 2008 Database Backup and Restoration

InformationNOW SQL 2008 Database Backup and Restoration InformationNOW SQL 2008 Database Backup and Restoration Backing up a SQL 2008 Database Users are advised to create frequent multiple offsite backups. Occasionally, it may be necessary to manually initiate

More information

Frequently Asked Questions

Frequently Asked Questions Efficient XML Frequently Asked Questions Q: What is Efficient XML? Efficient XML is a line of commercial software products that simultaneously optimize the performance, bandwidth utilization and power

More information

P&WC Portal Settings. 1) Portal Language Setting:

P&WC Portal Settings. 1) Portal Language Setting: P&WC Portal Settings In order to set your Internet Explorer Browser and to resolve a few specific issues that users of the P&WC Portal might have, we recommend that you change a few settings in your browser.

More information

Volkswagen and photovoltaics

Volkswagen and photovoltaics Volkswagen and photovoltaics Taking responsibility. Our commitment to renewable energies. Energy from sunlight! At the Volkswagen conference entitled»photovoltaics how to harness the sun«, held on 2o June

More information

Sharing @ The Edge: Secure Information Sharing

Sharing @ The Edge: Secure Information Sharing Sharing @ The Edge: Secure Information Sharing Tony White 1, Dwight Deugo 1, Steve Gutz 2 1 School of Computer Science, Carleton University 2 Texar Corporation {arpwhite@scs.carleton.ca, deugo@scs.carleton.ca,

More information

MyNetFone Virtual Fax. Virtual Fax Installation

MyNetFone Virtual Fax. Virtual Fax Installation Table of Contents MyNetFone Virtual Fax MyNetFone Virtual Fax Installation... 1 Changing the SIP endpoint details for the fax driver... 11 Uninstalling Virtual Fax... 13 Virtual Fax Installation Follow

More information

Amanda: Open Source Backup

Amanda: Open Source Backup Amanda: Open Source Backup On the Ground Experiences http://www.zmanda.com/ Zmanda: Open Source Backup www.zmanda.com Twitter: @chanderkant 1 Agenda A/Zmanda Amanda Enterprise Challenges of a Backup Administrator

More information

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B 2001-2010 STREAMSERVE,

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Big Data User s Guide

TIBCO ActiveMatrix BusinessWorks Plug-in for Big Data User s Guide TIBCO ActiveMatrix BusinessWorks Plug-in for Big Data User s Guide Software Release 1.0 November 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

How To Develop Android On Your Computer Or Tablet Or Phone

How To Develop Android On Your Computer Or Tablet Or Phone AN INTRODUCTION TO ANDROID DEVELOPMENT CS231M Alejandro Troccoli Outline Overview of the Android Operating System Development tools Deploying application packages Step-by-step application development The

More information