Drupal version control and deployment techniques. ENTICE meeting David Martín Clavo GS-SMS 30 th Sept. 2010

Size: px
Start display at page:

Download "Drupal version control and deployment techniques. ENTICE meeting David Martín Clavo GS-SMS 30 th Sept. 2010"

Transcription

1 Drupal versin cntrl and deplyment techniques ENTICE meeting David Martín Clav GS-SMS 30 th Sept. 2010

2 TOC 0. The Prblem 1. Features 2. Other techniques / tls Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 2 f 19

3 0. The Prblem Hw t keep track f the changes? Hw t deply changes frm a develpment envirnment t a prductin envirnment? Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 3 f 19

4 0. The Prblem First slutin: dump the database t a text file and apply versin cntrl t it. Issues: Cnfiguratin and cntent are mixed: Cnfiguratin: CCK, Views, Blcks... Cntent: ndes If we deply t prductin, we get the new Views / Blcks, but we verwrite the cntent. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 4 f 19

5 1. Features Intrductin Features is Drupal a mdule that: Allws t exprt cnfiguratin items frm the Drupal DB int cde. Allws t imprt cde int cnfiguratin in the DB. Has a prly chsen name... Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 5 f 19

6 1. Features Intrductin Many things can be exprted / imprted: views, CCK cntent types, CCK fields, menus, blcks... Things are exprted int features. A feature is a flder with cde files, similar t a mdule. A feature can cntain different types f cnfiguratin items (e.g. 2 cntent types with their fields, and 3 views). Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 6 f 19

7 1. Features Exprtables Exprtables are things that can be mved 100% t cde: Views Imagecache presets. Ctls: Panels and OpenLayers Rules Blcks (with help f Cntext mdule) Variables (with help f Strngarm mdule). Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 7 f 19

8 1. Features Faux-exprtables Faux-exprtables: cannt be mved but can be synchrnized: CCK (better with Features+Strngarm mdules): Cntent types Fields Field grups Rles & Permissins Menus Vcabularies (but nt its terms) Ndes, terms and users: experimental state. Faux-exprtables can be verriden in the DB, and the Features mdule keeps track f it. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 8 f 19

9 1. Features Benefits Helps rganizing a cmplex prject. Exprted features can be versin cntrlled. features can be shared with ther peple. features can be deplyed. features can be hsted in a feature server features help upgrade frm Drupal 6 t Drupal 7. features can be reused between prjects. If a site admin verrides a feature and smething breaks, yu knw why. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 9 f 19

10 1. Features Integratin with drush drush: cmmand line tl fr Drupal: drush dl: dwnlad cre. drush dl cck views: dwnlad cntributed prjects. drush en cntent views: enable mdules. drush cc (all): clear cache. Integratin with Features mdule: drush fl : list all the features in a site. drush fu : update the cde f the features frm the changes made the the DB. drush fr : revert the DB back t the cde state. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 10 f 19

11 1. Features Hw t use Install and enable Features, Strngarm and CTls mdules (CTls is a dependency f Strngarm). In admin/build/features, create a feature by selecting what cmpnents t include in it Add the cntent type befre adding CCK fields. We btain a.tar.gz file. Unzip it int sites/all/mdules f anther site. In admin/build/features f the ther site, enable the feature and the cmpnents are created. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 11 f 19

12 1. Features DEMO 2 sites: develpment and prductin Sites have CCK, Views, Features, Strngarm installed. A CCK cntent type with fields and a cuple Views already created. We exprt them int a feature. We imprt the feature in anther site. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 12 f 19

13 1. Features Cnclusin Apply versin cntrl t features t keep track f changes in yur Cntent Types, Views... drush helps: use drush fu t autmatically update a feature's cde befre cmmitting. Use features t deply changes frm develpment t prductin withut squashing the cntent. git is recmmended as VC system, but nt cmpulsry (used by CDS, Indic and thers). Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 13 f 19

14 2. Other tls & techniques Cntrller feature / mdule Sme changes cannt be exprted t features, e.g. enabling / disabling mdules. Technique: we write an empty mdule / feature and we implement the hks: hk_install hk_uninstall hk_update_n Used by ther devs when they update frm the versin cntrl rep. N is incremental: hk_update_6001, hk_update_ Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 14 f 19

15 2. Other tls & techniques Installatin prfiles Cde that gets executed when Drupal gets installed with install.php. Declares which mdules are active. Custm cde: initial cnfiguratin, interactin with the admin. Used t build distributins. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 15 f 19

16 2. Other tls & techniques Makefiles and drush make Drupal makefile: flat text file that declares what a Drupal site is made f (i.e. a manifest): mdules, themes, features, patches..make files get executed by drush make Useful fr: Knwing what is exactly n a site. Building / rebuilding a site. Applying versin cntrl t the.make file instead f the whle drupal flder. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 16 f 19

17 2. Other tls & techniques Aegir A Drupal applicatin that can mnitr, deply, and upgrade ther Drupal sites. Allws mass deplyment, updates, etc. Helps with the develpment > staging > prductin wrkflw. Different Aegir users can have permissins t manage different remte sites. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 17 f 19

18 Other DrupalCn sessins Attended mdule develpment training. Cnnecting Drupal with external systems: best practices. Debugging Drupal. Drupal perfrmance. Drupal versin cntrl and deplyment techniques 30 September 2010 Slide 18 f 19

19 Thanks :) Questins?? ENTICE meeting David Martín Clav GS-SMS 30 th Sept. 2010

TechAge Labs Pvt. Ltd. Address : C-46, GF, Sector 2, Noida Phone 1 : 0120-4540894 Phone 2 : 0120-6495333. MagentoTraining

TechAge Labs Pvt. Ltd. Address : C-46, GF, Sector 2, Noida Phone 1 : 0120-4540894 Phone 2 : 0120-6495333. MagentoTraining Magent Training TechAge Labs Pvt. Ltd. Address : C-46, GF, Sectr 2, Nida Phne 1 : 0120-4540894 Phne 2 : 0120-6495333 TechAge Labs 2014 versin 1.0 MagentTraining Magent Training Curse Chapter 1 Cre Develpment

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

Configuring, Monitoring and Deploying a Private Cloud with System Center 2012 Boot Camp

Configuring, Monitoring and Deploying a Private Cloud with System Center 2012 Boot Camp Cnfiguring, Mnitring and Deplying a Private Clud with System Center 2012 Bt Camp Length: 5 Days Technlgy: Micrsft System Center 2012 Delivery Methd: Instructr-led Hands-n Audience Prfile This curse is

More information

Pronestor Visitor. Module 11. Installation of additional modules Pronestor Visitor Page 11.0 11.6

Pronestor Visitor. Module 11. Installation of additional modules Pronestor Visitor Page 11.0 11.6 Prnestr Visitr Prnestr Visitr Mdule 11 Installatin f additinal mdules Prnestr Visitr Page 11.0 11.6 A guide t the installatin f additinal mdules in Prnestr Visitr. Hst imprt (AD integratin) Page 11.1 11.3

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

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

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme Hyperin Translatin Manager Release 9.3.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 What is Translatin Manager 9.3.1?... 1 Cmpatible Sftware... 2 Supprted Internatinal Operating

More information

Using Microsoft Dynamics AX 2009 Version Control Integration With Microsoft Team Foundation Server

Using Microsoft Dynamics AX 2009 Version Control Integration With Microsoft Team Foundation Server Micrsft Dynamics AX Using Micrsft Dynamics AX 2009 Versin Cntrl Integratin With Micrsft Team Fundatin Server White Paper This white paper describes hw t use the versin cntrl integratin capabilities f Micrsft

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

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

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and ii Cpyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.cm/ We have attempted t make these dcuments cmplete, accurate, and useful, but we cannt guarantee them t be perfect. When we

More information

Release Notes. Dell SonicWALL Email Security 7.4.3 firmware is supported on the following appliances: Dell SonicWALL Email Security 200

Release Notes. Dell SonicWALL Email Security 7.4.3 firmware is supported on the following appliances: Dell SonicWALL Email Security 200 Release Ntes Email Security Dell SnicWALL Email Security 7.4.3 SnicOS Cntents System Cmpatibility... 1 Enhancements in Email Security 7.4.3... 2 Knwn Issues... 3 Upgrading t Email Security 7.4.3... 4 Related

More information

URM 11g Implementation Tips, Tricks & Gotchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC.

URM 11g Implementation Tips, Tricks & Gotchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC. URM 11g Implementatin Tips, Tricks & Gtchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC. i Fishbwl Slutins Ntice The infrmatin cntained in this dcument represents the current view f Fishbwl Slutins, Inc. n

More information

Mobile Device Manager Admin Guide. Reports and Alerts

Mobile Device Manager Admin Guide. Reports and Alerts Mbile Device Manager Admin Guide Reprts and Alerts September, 2013 MDM Admin Guide Reprts and Alerts i Cntents Reprts and Alerts... 1 Reprts... 1 Alerts... 3 Viewing Alerts... 5 Keep in Mind...... 5 Overview

More information

Feature Guide. Virto Commerce Platform

Feature Guide. Virto Commerce Platform Feature Guide Virt Cmmerce Platfrm Fr mre infrmatin abut Virt Cmmerce, visit virtcmmerce.cm r call + 1 323 570 5588 t speak t a representative. Virt Cmmerce Platfrm: Fundatin fr Yur Business Virt Cmmerce

More information

Process Automation With VMware

Process Automation With VMware Prcess Autmatin With VMware Intelligent Service Autmatin fr Real and Virtual Envirnments Intrductin This Whitepaper describes hw the UC4 platfrm integrates with the VMware vsphere Server and the VMware

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

SharePoint 2010 General Introduction Introduction to SharePoint SharePoint Installation and Administration SharePoint Site Hierarchy Website Email

SharePoint 2010 General Introduction Introduction to SharePoint SharePoint Installation and Administration SharePoint Site Hierarchy Website Email Deccansft Sftware Services SharePint 2010 Syllabus SharePint 2010 General Intrductin What is IIS IIS Website & Web Applicatin Steps t Create Multiple Website n Prt 80 What is Applicatin Pl What is AppDmain

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

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console INSTALLATION GUIDE Marshal Reprting Cnsle Installatin Guide Marshal Reprting Cnsle March, 2009 Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 3 Sftware Prerequisites 3 Installatin

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

ATL: Atlas Transformation Language. ATL Installation Guide

ATL: Atlas Transformation Language. ATL Installation Guide ATL: Atlas Transfrmatin Language ATL Installatin Guide - versin 0.1 - Nvember 2005 by ATLAS grup LINA & INRIA Nantes Cntent 1 Intrductin... 3 2 Installing ADT frm binaries... 3 2.1 Installing Eclipse and

More information

Sitecore Serialization Guide

Sitecore Serialization Guide Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide Rev: 4 February 2011 Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide An administratr's guide t serializing cntent in Sitecre Sitecre CMS 6.0-6.4 Table f Cntents

More information

Citrix XenApp 6.5 Basic Administration

Citrix XenApp 6.5 Basic Administration Citrix XenApp 6.5 Basic Administratin Descriptin: Days: 5 Prerequisites: Citrix XenApp 6.5 Basic Administratin training curse prvides the fundatin necessary fr administratrs t effectively centralize and

More information

This guide is intended for administrators, who want to install, configure, and manage SAP Lumira, server for BI Platform

This guide is intended for administrators, who want to install, configure, and manage SAP Lumira, server for BI Platform Hw T install SAP Lumira, server n SAP BusinessObjects BI platfrm Distributed Install Applies t: SAP Lumira, server versin fr the SAP BusinessObjects BI platfrm Summary This guide is intended fr administratrs,

More information

DocAve 6 Deployment Manager

DocAve 6 Deployment Manager DcAve 6 Deplyment Manager User Guide Service Pack 6 Cumulative Update 1 Issued December 2015 1 Table f Cntents What s New in this Guide... 6 Abut Deplyment Manager... 7 Cmplementary Prducts... 8 Submitting

More information

Zimbra Professional Services Portfolio, Purchasing Guide & Price List

Zimbra Professional Services Portfolio, Purchasing Guide & Price List In- Tuitin Netwrks Ltd Zimbra Prfessinal Services Prtfli, Purchasing Guide & Price List This dcument prvides an verview f In- Tuitin Netwrks Limited s range f Zimbra Prfessinal Services available n the

More information

UC4 AUTOMATED VIRTUALIZATION Intelligent Service Automation for Physical and Virtual Environments

UC4 AUTOMATED VIRTUALIZATION Intelligent Service Automation for Physical and Virtual Environments Fr mre infrmatin abut UC4 prducts please visit www.uc4.cm. UC4 AUTOMATED VIRTUALIZATION Intelligent Service Autmatin fr Physical and Virtual Envirnments Intrductin This whitepaper describes hw the UC4

More information

Course Outline (70-413)

Course Outline (70-413) Curse Outline (70-413) Mdule 1: Planning Server Upgrade and Migratin This mdule explains hw t plan a server upgrade and migratin strategy. Upgrade and Migratin Cnsideratins Creating a Server Upgrade and

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

AVG AntiVirus Business Edition

AVG AntiVirus Business Edition AVG AntiVirus Business Editin User Manual Dcument revisin AVG.02 (30.9.2015) C pyright AVG Technlgies C Z, s.r.. All rights reserved. All ther trademarks are the prperty f their respective wners. Cntents

More information

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1 Preparing t Deply Reflectin : A Guide fr System Administratrs Versin 14.1 Table f Cntents Table f Cntents... 2 Preparing t Deply Reflectin 14.1:... 3 A Guide fr System Administratrs... 3 Overview f the

More information

AccessData Corporation AD Lab System Specification Guide v1.1

AccessData Corporation AD Lab System Specification Guide v1.1 AccessData Crpratin AD Lab System Specificatin Guide v1.1 The AD Lab system specificatin guide was created t ensure the apprpriate is in place supprt an enterprise deplyment f AccessData Lab. The AccessData

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

IBM WPL93. Installation and Administration of IBM WebSphere Portal 8 on Linux

IBM WPL93. Installation and Administration of IBM WebSphere Portal 8 on Linux IBM WPL93. Installatin and Administratin f IBM WebSphere Prtal 8 n Linux This instructr led curse is designed fr system administratrs wh want t acquire r update their WebSphere Prtal administratin skills.

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR ACTIVE DIRECTORY, EXCHANGE AND GROUP POLICY QUICK-START GUIDE Prduct versin: 7.5.873 February 2014 February 2014. Legal Ntice The infrmatin in this publicatin is furnished fr

More information

Pronestor Room & Catering

Pronestor Room & Catering Prnestr Rm Prnestr Rm & Catering Mdule 1 Technical requirements & installatin - Prnestr Rm & Catering Page 1.0 1.5 A guide t all the necessary server preparatins fr the installatin f Prnestr Rm & Catering.

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID 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 writing

More information

Have some knowledge of how queries execute. Must be able to read a query execution plan and understand what is happening.

Have some knowledge of how queries execute. Must be able to read a query execution plan and understand what is happening. Curse 2786B: Designing a Micrsft SQL Server 2005 Infrastructure Abut this Curse This tw-day instructr-led curse prvides database administratrs wrking in enterprise envirnments with the knwledge and skills

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

ITIL Release Control & Validation (RCV) Certification Program - 5 Days

ITIL Release Control & Validation (RCV) Certification Program - 5 Days ITIL Release Cntrl & Validatin (RCV) Certificatin Prgram - 5 Days Prgram Overview ITIL is a set f best practices guidance that has becme a wrldwide-adpted framewrk fr Infrmatin Technlgy Services Management

More information

Telelink 6. Installation Manual

Telelink 6. Installation Manual Telelink 6 Installatin Manual Table f cntents 1. SYSTEM REQUIREMENTS... 3 1.1. Hardware Requirements... 3 1.2. Sftware Requirements... 3 1.2.1. Platfrm... 3 1.2.1.1. Supprted Operating Systems... 3 1.2.1.2.

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

Microsoft Exchange 2010 on VMware Design and Sizing Examples

Microsoft Exchange 2010 on VMware Design and Sizing Examples Micrsft Exchange 2010 n VMware Micrsft Exchange 2010 n VMware This prduct is prtected by U.S. and internatinal cpyright and intellectual prperty laws. This prduct is cvered by ne r mre patents listed at

More information

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1 Optimal Payments Extensin Supprting Dcumentatin fr the Extensin Package 20140225 v1.1 Revisin Histry v1.1 Updated Demac Media branding v1.0 Initial Dcument fr Distributin supprt@ptimalpayments.cm Page

More information

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future The Imprtance Advanced Data Cllectin System Maintenance Berry Drijsen Glbal Service Business Manager WHITE PAPER knwledge t shape yur future The Imprtance Advanced Data Cllectin System Maintenance Cntents

More information

Example Workflows Deploy to Social Media

Example Workflows Deploy to Social Media Example Wrkflws Deply t Scial Media Cntents Overview... 2 Requirements Licenses, Media, Metadata... 2 Minimum Requirements... 2 Optinal requirements fr these Example Wrkflws... 2 Scial Media Example Wrkflws...

More information

Diagnosis and Troubleshooting

Diagnosis and Troubleshooting Diagnsis and Trubleshting DataDirect Cnnect Series ODBC Drivers Intrductin This paper discusses the diagnstic tls that are available t cnfigure and trublesht yur ODBC envirnment and prvides a trubleshting

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents Overview 2 Why take the exam? 2 HP ATP Server Administratr V8 certificatin 2 Wh shuld

More information

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents Level 1 Technical RealPresence Web Suite and Web Suite Pr Cntents 1 - Glssary... 2 2 Features... 3 RealPresence Platfrm integratin... 3 RealPresence Web Suite Sftware... 3 Sftware Keys... 3 3 - Web Client

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

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

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

Getting Started Guide

Getting Started Guide fr SQL Server www.lgbinder.cm Getting Started Guide Dcument versin 1 Cntents Installing LOGbinder fr SQL Server... 3 Step 1 Select Server and Check Requirements... 3 Select Server... 3 Sftware Requirements...

More information

ALM in the Cloud an Overview of Oracle Developer Cloud Service. Introduction. By Dana Singleterry

ALM in the Cloud an Overview of Oracle Developer Cloud Service. Introduction. By Dana Singleterry ALM in the Clud an Overview f Oracle Develper Clud Service Intrductin By Dana Singleterry In recent years the wrld f applicatin develpment has adpted new methdlgies that aim t imprve the quality and speed

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

E2E Express 3.0. Requirements

E2E Express 3.0. Requirements E2E Express 3.0 Requirements February 2016 Table f Cntents Requirements... 3 Hardware Prerequisites... 3 General Installatin Requirements... 3 Netwrk Requirement... 4 SQL Server Installatin Requirements...

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

Lumension Connect: Online Customer Community FAQs

Lumension Connect: Online Customer Community FAQs Lumensin Cnnect: Online Custmer Cmmunity FAQs Cpyright 2009, Lumensin Lumensin Cnnect: Online Custmer Cmmunity FAQs Table f Cntents Lumensin Cnnect:... 1 Online Custmer Cmmunity FAQs... 1 What is Lumensin

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console Installatin Guide Installatin Guide Marshal Reprting Cnsle Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 2 Sftware Prerequisites 3 Installatin Prcedures 3 Appendix: Enabling

More information

SaaS Listing CA Cloud Service Management

SaaS Listing CA Cloud Service Management SaaS Listing CA Clud Service Management 1. Intrductin This dcument prvides standards and features that apply t the CA Clud Service Management (CSM) SaaS ffering prvided t the Custmer and defines the parameters

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

AvePoint Privacy Impact Assessment 1

AvePoint Privacy Impact Assessment 1 AvePint Privacy Impact Assessment 1 User Guide Cumulative Update 2 Revisin E Issued February 2015 Table f Cntents Table f Cntents... 2 Abut AvePint Privacy Impact Assessment... 5 Submitting Dcumentatin

More information

CXA-206-1 Citrix XenApp 6.5 Basic Administration

CXA-206-1 Citrix XenApp 6.5 Basic Administration CXA-206-1 Citrix XenApp 6.5 Basic Administratin Citrix XenApp 6.5 Basic Administratin training curse prvides the fundatin necessary fr administratrs t effectively centralize and manage applicatins in the

More information

Fixes for CrossTec Enterprise Management System

Fixes for CrossTec Enterprise Management System Fixes fr CrssTec Enterprise Management System New in EMS 3.10.0005 Nvember 1, 2012 Internet Metering nw includes imprved supprt fr the Chrme Brwser Fixes in EMS 3.10.0005 Nvember 1, 2012 Reslved issue

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

Connector for Microsoft Dynamics Installation Guide

Connector for Microsoft Dynamics Installation Guide Micrsft Dynamics Cnnectr fr Micrsft Dynamics Installatin Guide June 2014 Find updates t this dcumentatin at the fllwing lcatin: http://g.micrsft.cm/fwlink/?linkid=235139 Micrsft Dynamics is a line f integrated,

More information

SAP BUSINESS OBJECTS

SAP BUSINESS OBJECTS SAP BUSINESS OBJECTS Crystal Reprts Basic: Fundamentals f Reprt Design Duratin: 8 Hurs Cntent Planning a Reprt Define database cncepts Plan and develp a reprt prttype Creating a Reprt Create a reprt Add

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

Kaltura Video Solutions for Sharepoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Solutions for Sharepoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Slutins fr Sharepint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015

More information

MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING

MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING JULY, 2014 The infrmatin cnveyed in this dcument is cnfidential and prprietary t Mitel and is intended slely fr Mitel emplyees

More information

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Extensin fr SharePint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright

More information

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation SpiraPlan & SpiraTeam Versin Cntrl Integratin User Guide Inflectra Crpratin Date: Nvember 19th, 2014 Cntents 1. Intrductin... 1 2. Integrating with Subversin... 2 3. Integrating with Perfrce... 7 4. Integrating

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

Magenta HR in partnership with breath ehr

Magenta HR in partnership with breath ehr BREATHEHR ONLINE HR SYSTEM AND PORTAL Magenta HR in partnership with breath ehr Magenta HR Cnsulting Ltd. 24 Canning Street, Edinburgh EH3 8EG Tel. 0131 2272769 www.magentahr.cm inf@magentahr.cm 6 December

More information

Payment Method Reference Guide

Payment Method Reference Guide Sitecre E-Cmmerce Fundamental Editin 1.1 Payment Methd Reference Guide Rev: 2011-05-19 Sitecre E-Cmmerce Fundamental Editin 1.1 Payment Methd Reference Guide The payment methds supprted by the Sitecre

More information

Password Reset for Remote Users

Password Reset for Remote Users 1 Passwrd Reset fr Remte Users Curin prvides a cmpnent fr the PasswrdCurier Passwrd Prvisining System that manages the lcal passwrd cache in cnjunctin with self-service passwrd reset activities. The slutin

More information

MS SQL SERVER. Course Catalog 2012-2013

MS SQL SERVER. Course Catalog 2012-2013 MS SQL SERVER Curse Catalg 2012-2013 Micrs SQL Server 2012 Administratin This class cnsists f hands-n training that fcus n the fundamentals f administering the SQL Server 2012 database engine. Participants

More information

Cloud Services Frequently Asked Questions FAQ

Cloud Services Frequently Asked Questions FAQ Clud Services Frequently Asked Questins FAQ Revisin 1.0 6/05/2015 List f Questins Intrductin What is the Caradigm Intelligence Platfrm (CIP) clud? What experience des Caradigm have hsting prducts like

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

An Oracle White Paper January 2013. Comprehensive Data Quality with Oracle Data Integrator and Oracle Enterprise Data Quality

An Oracle White Paper January 2013. Comprehensive Data Quality with Oracle Data Integrator and Oracle Enterprise Data Quality An Oracle White Paper January 2013 Cmprehensive Data Quality with Oracle Data Integratr and Oracle Enterprise Data Quality Executive Overview Pr data quality impacts almst every cmpany. In fact, accrding

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

DocAve 6 ediscovery. User Guide. Service Pack 6. Issued October 2015. DocAve 6: ediscovery

DocAve 6 ediscovery. User Guide. Service Pack 6. Issued October 2015. DocAve 6: ediscovery DcAve 6 ediscvery User Guide Service Pack 6 Issued Octber 2015 1 Table f Cntents What s New in this Guide... 4 Abut DcAve ediscvery... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint...

More information

ScaleIO Security Configuration Guide

ScaleIO Security Configuration Guide ScaleIO Security Cnfiguratin Guide 1 Intrductin This sectin prvides an verview f the settings available in ScaleIO t ensure secure peratin f the prduct: Security settings are divided int the fllwing categries:

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

Solving the Patch Management Dilemma Using SCCM 2007

Solving the Patch Management Dilemma Using SCCM 2007 White Paper Slving the Patch Management Dilemma Using SCCM 2007 Abstract If yu find it difficult t patch r update yur enterprise cmputers, a Micrsft System Center Family prduct System Center Cnfiguratin

More information

Gateway Agent - First Amendment to the High Level Design Document

Gateway Agent - First Amendment to the High Level Design Document Gateway Agent - First Amendment t the High Level Design Dcument Scpe The Gateway Agent HLD thrugh update 1 assumes that nly the Cntrl App, while cnnected t the prximal netwrk, can initiate new clud services.

More information

Junos Pulse Instructions for Windows and Mac OS X

Junos Pulse Instructions for Windows and Mac OS X Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.

More information

Security in Business and Applications. Madison Hajeb Stefan Hurst Benjamin Von Slade

Security in Business and Applications. Madison Hajeb Stefan Hurst Benjamin Von Slade Security in Business and Applicatins Madisn Hajeb Stefan Hurst Benjamin Vn Slade Intrductin Prject Cncept - Implement security in a small business setting Original Plan - D sme security audits fr small

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

OnX is uniquely positioned to help your organization rapidly gain the necessary skills to enable the successful deployment of SDN.

OnX is uniquely positioned to help your organization rapidly gain the necessary skills to enable the successful deployment of SDN. Slutin Brief SDN Training OVERVIEW SDN is mving faster than previus netwrking advancements. Sme teams have already deplyed and are mnitring their envirnments, while thers are just starting t ask abut SDN

More information

How To Upgrade A Crptocard To A 6.4 Migratin Tl (Cpl) For A 6Th Generation Of A Crntl (Cypercoder) On A Crperd (Cptl) 6.

How To Upgrade A Crptocard To A 6.4 Migratin Tl (Cpl) For A 6Th Generation Of A Crntl (Cypercoder) On A Crperd (Cptl) 6. BlackShield ID Upgrade and Migratin Guide Fr CRYPTO-Server 6.4 Users Cpyright 2010 CRYPTOCard Inc. website: http://www.cryptcard.cm Trademarks CRYPTOCard and the CRYPTOCard lg are registered trademarks

More information

DocAve Governance Automation. User Guide for Administrators

DocAve Governance Automation. User Guide for Administrators DcAve Gvernance Autmatin User Guide fr Administratrs Service Pack 5 Revisin K Issued August 2014 Table f Cntents Abut... 10 Submitting Dcumentatin Feedback t AvePint... 11 Understanding Gvernance Autmatin

More information

iseeu GLOBAL Software as a Service Software as a Service Service description iseeu Telecare Service Desk G-Cloud 7

iseeu GLOBAL Software as a Service Software as a Service Service description iseeu Telecare Service Desk G-Cloud 7 Service descriptin iseeu Telecare Service Desk Sftware as a Service Sftware as a Service G-Clud 7 Cntents Overview f Scial Care management service... 3 Telecare Service Desk - verview... 4 Benefits...

More information

AvePoint Perimeter 1.6. Administrator Guide

AvePoint Perimeter 1.6. Administrator Guide AvePint Perimeter 1.6 Administratr Guide Issued May 2016 Table f Cntents What s New in this Guide... 10 Abut AvePint Perimeter... 11 AvePint Perimeter Pr Features... 11 Licensing AvePint Perimeter... 11

More information

DocAve 6 Report Center

DocAve 6 Report Center DcAve 6 Reprt Center User Guide Service Pack 6 Issued Octber 2015 DcAve 6: Reprt Center 1 Table f Cntents What s New in this Guide... 10 Abut Reprt Center... 11 Available Reprts in Reprt Center... 12 Cmplementary

More information

Architecting HP Server Solutions

Architecting HP Server Solutions HP ExpertOne exam preparatin guide Architecting HP Server Slutins Exam descriptin This certificatin attests that yu can: gather and analyze business and technical requirements and then plan and design

More information

Migrating to SharePoint 2010 Don t Upgrade Your Mess

Migrating to SharePoint 2010 Don t Upgrade Your Mess Migrating t SharePint 2010 Dn t Upgrade Yur Mess by David Cleman Micrsft SharePint Server MVP April 2011 Phne: (610)-717-0413 Email: inf@metavistech.cm Website: www.metavistech.cm Intrductin May 12 th

More information