Using the SQL CI TeamCity plugin in SQL Automation Pack

Size: px
Start display at page:

Download "Using the SQL CI TeamCity plugin in SQL Automation Pack"

Transcription

1 Using the SQL CI TeamCity plugin in SQL Automation Pack We recommend upgrading to the DLM Automation Suite so you can take advantage of the latest features and fixes. For more information, see Upgrading. This example works with SQL Automation Pack v1 and later. If you're using an earlier version, see Using the SQL CI TeamCity plugin (v0.2 and earlier). It shows how to use Red Gate's TeamCity plugin to: link TeamCity to SQL Source Control configure TeamCity to build a development database every time a change is checked in to source control automatically deploy the development database to a staging database, or publish a NuGet package to a NuGet feed, every time a build is triggered NuGet is the package manager used by the Microsoft development platform. A NuGet package (.nupkg) contains every file needed to recreate the database. A NuGet feed is a repository (private or public) that packages can be published to and accessed from. For more information about NuGet, see NuGet docs. We've tested the plugin against TeamCity v 8. Working through this example By the end of this example, you'll have configured TeamCity as your continuous integration server. Every time you check in code to source control, a build of the GizmoDev development database will be triggered. You'll also be able to automatically synchronize the development database with the GizmoStaging staging database, or publish a NuGet package to a release management tool ready for deployment. The steps are: Install the Red Gate TeamCity plugin on the machine running the TeamCity server Install LocalDB,.NET 3.5 and.net 4 on your build agents Create a new TeamCity project Link TeamCity to SQL Source Control Add a build step using the Red Gate SQL CI Build runner Either: Add a build step using the Red Gate SQL CI Sync runner or: Publish the package to a NuGet feed Add a VCS trigger Make a database change Install the Red Gate TeamCity plugin To install the plugin on the machine running your TeamCity server: 3. On a computer with SQL Automation Pack installed, run Intro to SQL Automation Pack. Under the section TeamCity plugin, click Open Folder. Move the sqlci-teamcity.zip file to the plugins folder of the TeamCity data directory. If TeamCity was installed to its default location, the plugins folder is located at: %ALLUSERSPROFILE%\JetBrains\TeamCity\plugins or C:\ProgramData\JetBrains\TeamCity\plugins The location of the plugins folder may be different if TeamCity was not installed in its default location. For more information, see: TeamCity Data Directory (TeamCity documentation). Restart the TeamCity server. In the Windows Start menu search box, type services.msc, and then press Enter:

2 5. In the list of services, right-click TeamCity Server, and select Restart: Red Gate's TeamCity plugin is now installed. Install LocalDB,.NET 3.5 and.net 4 on your build agent You must install.net 3.5 and.net 4 on the machine running your build agent. You only need LocalDB if you plan to use it to recreate and validate your database during the build step (recommended). You have two options: Install the version of SQL CI included in SQL Automation Pack versions 1950 and later. If your machine has an internet connection, this installs the.net versions and LocalDB automatically. See Installing SQL CI in SQL Automation Pack Install each tool manually: Microsoft.NET Framework 3.5 Microsoft.NET Framework 4 SQL LocalDB 3. Create a new TeamCity project In TeamCity Administration, under Projects, click Create project: On the Create New Project page, enter a name for the project. In this example, we'll call the project Gizmo update. The Project ID is created automatically:

3 3. Click Create. Under Build Configurations, click Create build configuration: 5. On the Create Build Configuration page, enter a name for the build. In this example, we'll call it Integration build: 6. Click Create. The New VCS Roots page is displayed. Link TeamCity to SQL Source Control

4 Continuous integration is driven by checked in code changes, so the first stage of the database deployment pipeline gets your schema and data under source control. Once you've created a TeamCity project, you need to link your development database to the version control system you're using. In this example, we're using SQL Source Control to link our GizmoDev development database to a Subversion (SVN) server. To link to source control: In the Type of VCS box, select the source control system you are using with your development database. In this example, we're using Subversion. Under VCS Root, in the VCS root name box, enter a unique name for this root. For example, SVN Gizmo. 3. Under SVN Connection Settings, in the URL box, specify the location that TeamCity will monitor for changes. In SQL Source Control, the location of a database in source control is displayed on the Setup tab: To copy the location, right-click on the path, and then click Copy: In this example, the location is :

5 If authentication is required for your source control server, you must specify a username and password. 5. Click Test connection. TeamCity checks that it can connect to the source control location. If the connection is successful, click Create. The VCS root is created. 5. Add a build step using Red Gate SQL CI Build Add a build step that will create and validate the SQL creation script used to generate the GizmoDev database package. You do this by using a build runner called Red Gate SQL CI Build. A build runner allows a specific third party build tool, such as SQL CI, to integrate with TeamCity. In this example, a component of Red Gate's TeamCity plugin called the Red Gate SQL CI Build runner is used. It defines how to run the build and handle the output. For more information on build runners, see Configuring Build Steps (JetBrains documentation). Under Build Configuration Settings click Build steps, and then click Add build step. In the Runner type box, select Red Gate SQL CI Build:

6 Under Source-controlled database, the Database folder is my build VCS root option is selected by default. In this example, that's the correct option because VCS root is our database location. If it was located in a subfolder, you would need to select Database folder is a subfolder of my build VCS root and enter a path relative to your build VCS root. For example, if your VCS root is and your database folder location is n.example.com/adventureworks, enter AdventureWorks. 3. Under Output package, enter a unique package ID that does not contain spaces. The package ID is the name given to the NuGet package you're creating that'll be deployed to other databases, so you should use something relevant when you use it in your environment. In this example, we'll call it GizmoIntegration. Under Temporary database server, select SQL LocalDB. SQL CI will use LocalDB to recreate and validate your database. If you want to run full-text queries against your tables, you'll need to specify a different temporary server. LocalDB doesn't support Full-Text Search. 5. Click Save. 6. Update a target database or publish the package You have two options: If you want to update the GizmoStaging database with the updated GizmoDev database, see Add a build step using the Red Gate SQL CI Sync runner.

7 Choose this option if you're not using a release management tool such as Octopus Deploy. If you are using a release management tool, and want to publish the package to a NuGet feed, see Publish the package to a NuGet feed. The configuration instructions assume you're using Octopus Deploy, but the process should be similar for other release management tools. Add a build step using Red Gate SQL CI Sync Once this step is configured, it will automatically update the GizmoStaging database with the contents of the GizmoDev database after every build. Click Add build step. In the Runner type box, select Red Gate SQL CI Sync: 3. Under Database package, enter the package ID previously defined in the build step. In this example, we called it GizmoIntegration. Under Database server, enter the name of the target server and database you want to update. In this example, we're updating the Gizmo Staging database on the lt_tomc server using Windows authentication. 5. Click Save. You now need to add a VCS trigger. Publish the package to a NuGet feed There are two ways to publish a package to a NuGet feed: configure a build step in TeamCity to publish it to the NuGet feed in your release management tool. See Add a publish build step using the NuGet Publish runner configure your release management tool to pick up the package from TeamCity's feed. See Add a package to your release management tool Add a publish build step using the NuGet Publish runner

8 The NuGet Publish runner build step will publish the package to the NuGet feed of a release management tool such as Octopus Deploy Click Add build step. From the Runner type drop-down list, select NuGet Publish. Under NuGet settings in the Package Source text box, enter the URL for your release management tool package feed. Enter an API key if your release management tool requires one. By default, an API key isn't required when you push packages to the release management tool package feed. Under Packages in the Packages to upload text box, enter the name of the published package. In this example, we called it GizmoInte gration.nupkg. This will pick up the NuGet package output by the Red Gate SQL CI Build step. Click Save. For more information about the NuGet Publish runner, see NuGet Publish. Next, you need to enable the TeamCity NuGet server. Enable the TeamCity NuGet server In TeamCity Administration, under Integrations, click NuGet Settings: On the NuGet Server tab, click Enable:

9 Add a package feed to your release management tool 3. Enable the TeamCity NuGet server. The URLs for your TeamCity NuGet feed are displayed. Copy the URL for the feed you want to use. Add the URL as a package feed to your release management tool. If you're using Octopus Deploy, see Find the Octopus Deploy package feed. If you're using another release management tool, check the help documentation provided by the tool vendor. 7. Add a VCS trigger For TeamCity to trigger a build when changes are detected in source control, we need to add a VCS trigger: On the Build Steps page, under Build Configuration Settings, click Triggers: On the Triggers page, click Add new trigger and select VCS Trigger from the drop-down box: 3. Click Save. TeamCity will now run a build when a check-in to your VCS root is detected. 8. Make a database change Now that the build is set up in TeamCity, we can make a database change to trigger a build. In this example, we will add a new Image column to our Gizmos table:

10 We then commit the change using SQL Source Control: Once the change is committed to source control, TeamCity picks up the change and runs a build. You can view the status of the build by clicking Projects in TeamCity: For a summary of the log messages printed by the build, or for troubleshooting a failing build, move your cursor over the drop-down button and then click Change log.

11 To verify that continuous integration is working correctly: if you added a build step using the Red Gate SQL CI Sync runner, check that the target database has been updated successfully. if you published the package to a NuGet feed, check the NuGet feed in your release management tool. Adding a test build step You can also add a step using the Red Gate SQL CI Test runner to generate test data using SQL Data Generator, and run tsqlt tests against the package.

Use the TeamCity plugin

Use the TeamCity plugin Use the TeamCity plugin This example shows you how use the DLM Automation TeamCity plugin to validate, test and sync your development schema. In this example, you'll use TeamCity and DLM Automation's TeamCity

More information

Continuous integration for databases using Red Gate tools

Continuous integration for databases using Red Gate tools Whitepaper Continuous integration for databases using Red Gate tools A technical overview source control develop Dev Continuous Integration build test Deployment package TESTING QA V1.0 V2.0 STAGING /

More information

1. Deployment Manager 1 documentation Requirements Getting started How Deployment Manager works

1. Deployment Manager 1 documentation Requirements Getting started How Deployment Manager works 1. Deployment Manager 1 documentation........................................................................... 2 1.1 Requirements..........................................................................................

More information

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

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

More information

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

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

More information

Example setup of TC and Octopus with TDS

Example setup of TC and Octopus with TDS Example setup of TC and Octopus with TDS On the developers' machines: 1. Install TDS 2. Configure the source control repository 3. Configure the TDS Project a. Configure TDS to create.update packages during

More information

PASSPORTAL PLUGIN DOCUMENTATION

PASSPORTAL PLUGIN DOCUMENTATION Contents Requirements... 2 Install or Update Passportal Plugin Solution Center... 3 Configuring Passportal Plugin... 5 Client mapping... 6 User Class Configuration... 7 About the Screens... 8 Passportal

More information

McAfee MER for EPO 3.1 Walkthrough Guide. About this guide This guide provides information on how to use McAfee MER for EPO 3.1.

McAfee MER for EPO 3.1 Walkthrough Guide. About this guide This guide provides information on how to use McAfee MER for EPO 3.1. McAfee MER for EPO 3.1 Walkthrough Guide About this guide This guide provides information on how to use McAfee MER for EPO 3.1. 2 1. Scope: The MER for epo tool runs MER (Minimum Escalations Requirements)

More information

JetBrains TeamCity Comparison

JetBrains TeamCity Comparison JetBrains TeamCity Comparison TeamCity is a continuous integration and continuous delivery server developed by JetBrains. It provides out-of-the-box continuous unit testing, code quality analysis, and

More information

AD Sync Client Install Guide. Contents

AD Sync Client Install Guide. Contents AD Sync Client Install Guide Contents AD Sync Client Install Guide... 1 Introduction... 2 Deployment Prerequisites... 2 Configure SQL Prerequisites... 3 Switch SQL to Mixed Mode authentication... 3 Create

More information

Continuous Integration with Selenium and Jenkins

Continuous Integration with Selenium and Jenkins Continuous Integration with Selenium and Jenkins Continuous Integration Continuous Integration (CI) is a development practice that requires developers to integrate code into a shared repository several

More information

SOA Software Intermediary for Microsoft : Install Guide

SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft Install Guide SOAIM_60 August 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks

More information

Akana API Platform: Upgrade Guide

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

More information

BPMonline On-Site Setup Guide for MSSQL DBMS

BPMonline On-Site Setup Guide for MSSQL DBMS BPMonline On-Site Setup Guide for MSSQL DBMS 1 Contents About This Guide... 2 Server Requirements for BPMonline On-Site Deployment... 3 Client PC Requirements... 7 Recommended Procedure for Session Storage

More information

Using SQLCover with SQL Release PowerShell cmdlets

Using SQLCover with SQL Release PowerShell cmdlets Using SQLCover with SQL Release PowerShell cmdlets What is code coverage? Code coverage is a measure used to describe the degree to which the source code of a program is tested by a particular test suite.

More information

How to set up SQL Source Control The short guide for evaluators

How to set up SQL Source Control The short guide for evaluators GUIDE How to set up SQL Source Control The short guide for evaluators 1 Contents Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first

More information

Outlook Integration. Installation & Configuration

Outlook Integration. Installation & Configuration Outlook Integration Installation & Configuration Table of Contents Outlook Integration Installation... 2 Outlook Integration Configuration... 4 Additional Notes for Outlook... 5 User Configuration... 6

More information

Status Web Evaluator s Guide Software Pursuits, Inc.

Status Web Evaluator s Guide Software Pursuits, Inc. Status Web Evaluator s Guide 2018 Table of Contents Introduction... 2 System Requirements... 2 Contact Information... 2 Installing Microsoft IIS... 2 Verifying Microsoft IIS Features... 9 Installing the

More information

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI /

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI / Index A Agent platforms, 10 system and user capabilities, 10 Agent pool add user, 12 assign permissions, 55 56 default pool, 8 hosted Linux pool, 8 hosted pool, 7 set up assign administrator role, 45 auto-provision

More information

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English Kaseya v2 Integration of VSA with Vorex Configuration Guide Requires Vorex version 3.9 or later and VSA version 9.3.0.11 or later English September 15, 2017 Copyright Agreement The purchase and use of

More information

Working with SQL SERVER EXPRESS

Working with SQL SERVER EXPRESS Table of Contents How to Install SQL Server 2012 Express Edition... 1 Step 1.... 1 Step 2.... 2 Step 3.... 3 Step 4.... 3 Step 5.... 4 Step 6.... 5 Step 7.... 5 Step 8.... 6 Fixing Database Start-up Connection

More information

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product>

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product> RSA NETWITNESS Security Operations Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 05/01/2017 Solution Summary The RSA NetWitness integration

More information

Contents. Getting Set Up Contents 2

Contents. Getting Set Up Contents 2 Getting Set Up Contents 2 Contents Getting Set Up... 3 Best Practices...3 Installing the JAR File... 3 Configuring Community Manager Reports...4 Configure the Analytics Database...4 Enable the Analytics

More information

Tasktop Sync - Cheat Sheet

Tasktop Sync - Cheat Sheet Tasktop Sync - Cheat Sheet 1 Table of Contents Tasktop Sync Server Application Maintenance... 4 Basic Installation... 4 Upgrading Sync... 4 Upgrading an Endpoint... 5 Moving a Workspace... 5 Same Machine...

More information

PMAPS WebPro Installed Technical Requirements Checklist

PMAPS WebPro Installed Technical Requirements Checklist PMAPS WebPro Installed Technical Requirements Checklist This document contains a checklist of items that are required prior to the PMAPS WebPro installation. Please complete this form and return a copy

More information

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support SQL Server Deployment Installation Manual Call a Hygiena representative for more information or support 1.805.388.8007 Why SQL Server? Performance Quicker performance with reporting due to querying Security

More information

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide Note Before using this information and the product it supports,

More information

UCT Application Development Lifecycle. UCT Business Applications

UCT Application Development Lifecycle. UCT Business Applications UCT Business Applications Page i Table of Contents Planning Phase... 1 Analysis Phase... 2 Design Phase... 3 Implementation Phase... 4 Software Development... 4 Product Testing... 5 Product Implementation...

More information

Belle II - Git migration

Belle II - Git migration Belle II - Git migration Why git? Stash GIT service managed by DESY Powerful branching and merging capabilities Resolution of (JIRA) issues directly be map to branches and commits Feature freeze in pre-release

More information

Upgrade Guide. Version 8.2 May 2, For the most recent version of this document, visit our documentation website.

Upgrade Guide. Version 8.2 May 2, For the most recent version of this document, visit our documentation website. Upgrade Guide Version 8.2 May 2, 2014 For the most recent version of this document, visit our documentation website. Table of Contents 1 Relativity upgrade overview 5 2 Required upgrade steps for all Relativity

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

Version Control with Git ME 461 Fall 2018

Version Control with Git ME 461 Fall 2018 Version Control with Git ME 461 Fall 2018 0. Contents Introduction Definitions Repository Remote Repository Local Repository Clone Commit Branch Pushing Pulling Create a Repository Clone a Repository Commit

More information

8.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5

8.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5 for Google Docs Contents 2 Contents 8.0 Help for Community Managers... 3 About Jive for Google Docs...4 System Requirements & Best Practices... 5 Administering Jive for Google Docs... 6 Understanding Permissions...6

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview January 2015 2014-2015 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

How to Get Your Site Online

How to Get Your Site Online 2017-02-14 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 GETTING YOUR WEBSITE ONLINE... 3 1.1 Publishing Using WebMatrix 3 1.2 Publishing to Your Web

More information

StreamSets Control Hub Installation Guide

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

More information

About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle Database Client Software... 7

About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle Database Client Software... 7 P6 Professional Installation and Configuration Guide (P6 EPPM) for On-Premises Version 17 August 2017 Contents About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle

More information

Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode.

Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode. Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode. Abstract This Application Note describes the steps required for installing and configuring

More information

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x RSA ARCHER GRC Platform Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 11/02/2017 Solution Summary The RSA Archer integration allows Swimlane

More information

Anchore Container Image Scanner Plugin

Anchore Container Image Scanner Plugin Anchore Container Image Scanner Plugin Plugin Information View Anchore Container Image Scanner on the plugin site for more information. Older versions of this plugin may not be safe to use. Please review

More information

Installing Vovici EFM Community Version Fall 2007 (3.00) on Windows 2003 Server. November For support, contact Vovici Technical Support.

Installing Vovici EFM Community Version Fall 2007 (3.00) on Windows 2003 Server. November For support, contact Vovici Technical Support. Installing Vovici EFM Community Version Fall 2007 (3.00) on Windows 2003 Server November 2007 For support, contact Vovici Technical Support. Please contact Vovici Technical Support if you believe any of

More information

Product overview. McAfee Web Protection Hybrid Integration Guide. Overview

Product overview. McAfee Web Protection Hybrid Integration Guide. Overview McAfee Web Protection Hybrid Integration Guide Product overview Overview The McAfee Web Protection hybrid solution is the integration of McAfee Web Gateway and McAfee Web Gateway Cloud Service (McAfee

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Quick Start Guide. CollabNet Subversion Connector to HP Quality Center

Quick Start Guide. CollabNet Subversion Connector to HP Quality Center Quick Start Guide CollabNet Subversion Connector to HP Quality Center A BOUT THE CONNECTOR About the Connector The CollabNet Subversion Connector to HP Quality Center enables Quality Center users to store

More information

How to transfer data between BPMonline 7.x environments

How to transfer data between BPMonline 7.x environments How to transfer data between BPMonline 7.x environments This manual covers schemas and data migration using subversion integration. If extra information is required please read introductory manuals: How

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Administering Jive Mobile Apps for ios and Android

Administering Jive Mobile Apps for ios and Android Administering Jive Mobile Apps for ios and Android TOC 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios...3 Custom App Wrapping for ios...3 Authentication with Mobile

More information

Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0. Last Revised: January 16, 2019

Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0. Last Revised: January 16, 2019 Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0 Last Revised: January 16, 2019 Table of Contents Welcome to the Tenable.sc-Tenable.io Upgrade Assistant 3 Get Started 4 Environment Requirements

More information

Administration Guide. 05 Apr TM and copyright Imagicle spa

Administration Guide. 05 Apr TM and copyright Imagicle spa Administration Guide 05 Apr 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Administration Guide...1/5 Jabber Gadgets Setup...1/5 Administration Guide Jabber Gadgets Setup The Imagicle Gadget

More information

Upgrade to Office 365 ProPlus

Upgrade to Office 365 ProPlus Upgrade to Office 365 ProPlus Page 1 Index 1 Purpose of this document... 3 2 Assumptions... 3 3 Create and Distribute Office 365 ProPlus 2016... 5 3.1 Prepare the Office 365 ProPlus installation files

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

SVN_Eclipse_at_home. 1. Download Eclipse. a. Go to: and select Eclipse IDE for Java Developers

SVN_Eclipse_at_home. 1. Download Eclipse. a. Go to:  and select Eclipse IDE for Java Developers 1. Download Eclipse SVN_Eclipse_at_home a. Go to: http://www.eclipse.org/downloads/ and select Eclipse IDE for Java Developers b. Select a mirror (which just means select which identical copy you should

More information

How to use IBM/Softlayer Object Storage for Offsite Backup

How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage is a redundant

More information

USER GUIDE. MADCAP FLARE 2017 r3. Source Control: Git

USER GUIDE. MADCAP FLARE 2017 r3. Source Control: Git USER GUIDE MADCAP FLARE 2017 r3 Source Control: Git Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

File Synchronization Service User Manual. Delogue

File Synchronization Service User Manual. Delogue File Synchronization Service User Manual Delogue 2012-2018 TABLE OF CONTENTS Table Of Contents... 1 1. General Information... 2 1.1. System Overview... 2 2. System Summary... 2 2.1. System Configuration...

More information

Manually Configure The Directory Server 2008 R2 Core Active

Manually Configure The Directory Server 2008 R2 Core Active Manually Configure The Directory Server 2008 R2 Core Active In Windows Server 2008 and Windows Server 2008 R2, you can forcefully Instead, you must update the forest metadata manually after you remove

More information

Installing the Cisco Unified MeetingPlace Web Server Software

Installing the Cisco Unified MeetingPlace Web Server Software Installing the Cisco Unified MeetingPlace Web Server Software Release 8.5 Revised: 2/19/13 : Install the Application Server (which includes the Software Media Server) : Install the Hardware Media Server

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

Administering isupport

Administering isupport Administering isupport Tracking and Monitoring isupport Usage Agents perform tasks in the background that are an integral part of isupport functionality. See Enabling and Scheduling Agents on page 2 for

More information

Install QlikView Expressor Standard and Enterprise Editions

Install QlikView Expressor Standard and Enterprise Editions Install QlikView Expressor Standard and Enterprise Editions The QlikView Expressor Full Installer installs both the Standard and Enterprise Editions. These two Editions consist of multiple components and

More information

Sage 300. Sage CRM 2018 Integration Guide. October 2017

Sage 300. Sage CRM 2018 Integration Guide. October 2017 Sage 300 Sage CRM 2018 Integration Guide October 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and

More information

Device Registration Service

Device Registration Service Document Imaging Solutions Device Registration Service Installation Guide Version 7.12 Contents Introduction... 3 Product features... 3 Device Registration Service Pre-Requisites... 3 Component prerequisites...

More information

NBC-IG Installation Guide. Version 7.2

NBC-IG Installation Guide. Version 7.2 Installation Guide Version 7.2 2017 Nuance Business Connect 7.2 Installation Guide Document Revision History Revision Date August 8, 2017 Revision List Updated supported SQL Server versions June 14, 2017

More information

Avaya Contact Centre Control Manager Release 7.0 Service Pack 1 (ACCCM 7.0 SP1 or ACCCM 7.0.1)

Avaya Contact Centre Control Manager Release 7.0 Service Pack 1 (ACCCM 7.0 SP1 or ACCCM 7.0.1) Avaya Contact Centre Control Manager Release 7.0 Service Pack 1 (ACCCM 7.0 SP1 or ) Avaya Inc Proprietary 1 DOCUMENT VERSION : 1.0 SW : 7.0.1 ISSUE DATE : AUG 22 ND 2013 Avaya Inc Proprietary 2 RELEASE

More information

vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes

vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes vrealize Operations Manager Management Pack for Hyperic 6.0 Last document update: 04 December 2014. Contents: New Features

More information

GlobalConnections for Microsoft SharePoint and OneDrive Guide

GlobalConnections for Microsoft SharePoint and OneDrive Guide GlobalConnections for Microsoft SharePoint and OneDrive Guide 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: education@square-9.com Square 9 Softworks Inc. 127 Church Street New Haven, CT

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: July 2017 Copyright 2014-2017 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

Contents Installing P6 Professional... 5 Installing P6 Visualizer Only Unattended Setup for P6 Professional... 18

Contents Installing P6 Professional... 5 Installing P6 Visualizer Only Unattended Setup for P6 Professional... 18 P6 Professional Installation and Configuration Guide (P6 EPPM) 16 R1 July 2016 Contents Installing P6 Professional... 5 Database Client Software... 5 Oracle Database Client Software... 5 Configuring Client

More information

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER NETWRIX ACTIVE DIRECTORY CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 7.2 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Task Flow, page 5 Reconfigure OpenAM SSO to SAML SSO Following an Upgrade, page 9 SAML SSO Deployment Interactions and Restrictions, page 9 Prerequisites NTP

More information

1. Prerequisites. Page 1 of 29

1. Prerequisites. Page 1 of 29 1. Prerequisites These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on

More information

Zoho Integration. Installation Manual Release. 1 P a g e

Zoho Integration. Installation Manual Release. 1 P a g e Zoho Integration Installation Manual Release 1 P a g e Table of Contents Zoho Integration... 3 Customizing the settings in LeadForce1... 6 Configuration Settings... 7 Schedule Settings... 8 2 P a g e Zoho

More information

Sql Server 2008 Service Not Starting Error Code 126

Sql Server 2008 Service Not Starting Error Code 126 Sql Server 2008 Service Not Starting Error Code 126 As domain admin I am attempting to install "SQL Server 2008 R2 with SP2" but it keeps It displays the same error even if I run the System Configuration

More information

SpiraTeam Build Server Integration Guide Inflectra Corporation

SpiraTeam Build Server Integration Guide Inflectra Corporation SpiraTeam Build Server Integration Guide Inflectra Corporation Date: October 11th, 2017 Contents 1. Introduction... 1 2. Integrating with Jenkins / Hudson... 2 3. Integrating with TeamCity... 9 4. Integrating

More information

Woo-Vtiger Sync Plugin - User Guide. For any query or support write us

Woo-Vtiger Sync Plugin - User Guide. For any query or support write us Woo-Vtiger Sync Plugin - User Guide For any query or support write us care@technologymindz.com www.technologymindz.com 2-Way Woo-Vtiger Syncing Plugin 1. In WordPress Dashboard, choose Plugins, and then

More information

Modern Requirements4TFS 2018 Update 1 Release Notes

Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements 6/22/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES...

More information

Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites...

Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites... Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites... 4 Requirements... 4 CDK Workflow... 5 Scribe Online

More information

Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0. December 2008

Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0. December 2008 Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0 December 2008 For installation support, please contact our Vovici installation experts at installefmc@vovici.com. If phone support is requested

More information

Addendum 2. Features. Addendum 2. Service Pack 2

Addendum 2. Features. Addendum 2. Service Pack 2 Addendum 2 Service Pack 2 Addendum 2 The SalesLogix v6.2 Service Pack 2 includes improved multi-user environment support, new options for creating Remote databases, an optional install for the a Client

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

Exchange Sync. for Microsoft Dynamics CRM. Installation

Exchange Sync. for Microsoft Dynamics CRM. Installation Exchange Sync for Microsoft Dynamics CRM Installation Contents 1 Introduction 1 About CRM Exchange Sync 2 About Brite Global 3 Installation and Configuration 3 Prerequisites 4 Installation Process 6 Configuration

More information

Trellis Magento 2 Salsify Connector

Trellis Magento 2 Salsify Connector Trellis Magento 2 Salsify Connector Version 0.x 09/01/2018 Table of Contents Introduction 3 Overview 3 Purpose of The Magento 2 Salsify Connector 3 Compatibility 4 Installation & Configuration 5 Magento

More information

Certificates for Live Data Standalone

Certificates for Live Data Standalone Certificates and Secure Communications, on page 1 Export Self-Signed Live Data Certificates, on page 2 Import Self-Signed Live Data Certificates, on page 3 Produce Certificate Internally, on page 4 Deploy

More information

Introduction. 1 of 42

Introduction. 1 of 42 Introduction Looking for information on how to host Rock internally? Well look no further. In this step-by-step guide we'll walk through the process of getting Rock up and running. Before we jump in, let's

More information

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar Software Version 1.0 Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar (1.0) Page 1 of 24 Contents What is Codar?... 3 Why is Codar

More information

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5 for Google Docs Contents 2 Contents 9.0 Help for Community Managers... 3 About Jive for Google Docs...4 System Requirements & Best Practices... 5 Administering Jive for Google Docs... 6 Quick Start...6

More information

IBM Campaign Version-independent Integration with IBM Watson Campaign Automation Version 1 Release 1.5 February, Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Watson Campaign Automation Version 1 Release 1.5 February, Integration Guide IBM IBM Campaign Version-independent Integration with IBM Watson Campaign Automation Version 1 Release 1.5 February, 2018 Integration Guide IBM Note Before using this information and the product it supports,

More information

Microsoft Official Course

Microsoft Official Course Microsoft Official Course Module 1 Deploying and Managing Microsoft Exchange Server 2013 Module Overview Exchange Server 2013 Prerequisites and Requirements Exchange Server 2013 Deployment Managing Exchange

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7 Directory Connector SonicWALL Directory Services Connector 3.1.7 Contents Platform Compatibility... 1 New Features... 2 Known Issues... 3 Resolved Issues... 5 Overview... 7 About SonicWALL Single Sign-On

More information

Software Release Notes for XSS AD/SQL version 5.1.3

Software Release Notes for XSS AD/SQL version 5.1.3 Software Release Notes for XSS AD/SQL version 5.1.3 Support Information: Ensure Technologies Technical Support is available to provide any needed assistance. Please contact us at (734) 668-8800 or at support@ensuretech.com.

More information

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

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

More information

The Directory Schema Is Not Accessible Because The Logon Attempt Failed

The Directory Schema Is Not Accessible Because The Logon Attempt Failed The Directory Schema Is Not Accessible Because The Logon Attempt Failed In addition, because the directory database is flat with no hierarchical Therefore, replicated updates do not perform schema checks,

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

Deploying the hybrid solution

Deploying the hybrid solution Deployment Guide McAfee Web Protection Hybrid Deploying the hybrid solution A McAfee Web Protection license provides all components needed to set up McAfee Web Gateway and McAfee Web Gateway Cloud Service

More information

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not?

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Trying to commit a first file. There is nothing on

More information

Business Insights Dashboard

Business Insights Dashboard Business Insights Dashboard Sage 500 ERP 2000-2013 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks

More information