XenDesktop 5 Database Sizing and Mirroring Best Practices

Size: px
Start display at page:

Download "XenDesktop 5 Database Sizing and Mirroring Best Practices"

Transcription

1 XenDesktop 5 Database Sizing and Mirroring Best Practices

2 Table of Contents Database Planning... 2 Database Sizing... 2 Sizing the database file... 2 Sizing the transaction log... 3 Database Mirroring... 4 Database Mirroring Options... 4 Database Mirroring Setup... 4 Broker SQL Configuration String Setup... 5 Database Mirroring Best Practices... 6 Controller configuration changes... 6 Database Mirroring Maintenance... 7 Deleting a Mirrored Database... 7 External References... 8 Page 1

3 Database Planning There are a number of important areas to consider when planning an SQL database for XenDesktop 5.0, including: Database Sizing Database Mirroring This article provides information about database sizing and mirroring, discusses some best practices, and provides links to additional information. Database Sizing When sizing an SQL database, two aspects are important: 1. The database file 2. The database transaction log file Sizing the database file The size of the database file depends on the following factors: The number of configured and registered workstations The number of connected sessions The connection rate The number of managed desktops The number of provisioned desktops Each of the above factors impacts the sizing requirements. Each desktop (managed or unmanaged) requires: Approximately 2.9 KB for registration and worker state information Approximately 5.1 KB for session state KB for each connection log record. By default, these are purged after 48 hours. Each MCS provisioned desktop also requires: Approximately 1.8 KB for Active Directory computer account information Approximately 1.94 KB for MCS machine information For example, with 20,000 unmanaged desktops, in a normal day users will log on once, with some users perhaps roaming and reconnecting multiple times, allowing an average per user of two connections per day. Using these numbers and the data above, we can calculate the database file size as: Per Worker: 2.9 KB X 20,000 = 58,000 KB Per Session: 5.1 KB X 20,000 = 102,000 KB Per Connection: KB X 40,000 X 2 days = 3,360 KB Total: 163,360 KB or approximately 160 MB Page 2

4 Based on Citrix testing, this database sizing matches the size of a database for 20,000 users. Using the above data we can calculate expected database sizes for different user counts. The sizing for a variety of user counts is shown in the following table: Unmanaged Desktops 5,000 10,000 20,000 Per Worker (KB) 14,500 29,000 58,000 Per Session (KB) 25,500 51, ,000 Per Connection (KB) 840 1,680 3,360 Total (KB) 40,840 81, ,360 Total (MB) Provisioned Desktops 5,000 10,000 20,000 Per Worker (KB) 14,500 29,000 58,000 Per Session (KB) 25,500 51, ,000 Per Connection (KB) 840 1,680 3,360 Per AD Account (KB) 9,000 18,000 36,000 Per MCS machine (KB) 9,700 19,400 38,800 Total (KB) 59, , ,160 Total (MB) Note that this sizing information is a guide only. Your exact database usage might be slightly larger because of the SQL server having spare pages in tables. Also, we have not allowed for the number of catalogs and other smaller tables. Sizing the transaction log The transaction log is more difficult to size because this depends on a number of factors, including: The SQL Database recovery model in use Launch rate at peak times The number of desktops In testing, with the full recovery model, it was found that a launch rate of 40 users a second to 20,000 desktops consumed approximately 1.3 MBs of transaction log space. This would consume approximately 670 MB of transaction log. Idle desktops consume approximately 62 KB of transaction log every hour. Note that this will depend on the heartbeat setting discussed later; increasing the heartbeat interval will decrease the log usage. In a 24 hour period, one desktop will consume 1.45 MB, 20,000 desktops will consume approximately 29 GB. In a large environment this level of transaction log usage requires careful management. Page 3

5 By default, Desktop Studio configures any new SQL databases to use the simple recovery model. However, Citrix recommends that if full recovery model is in use, that the transaction log be sized so that it rarely has to grow. Testing showed that when SQL Server auto-grew the transaction log, all transactions stalled causing an increase in controller response times. Instead, Citrix recommends that a fixed-size transaction log be used and that an SQL Alert is set up so that when the transaction log reaches 50 percent full, the transaction log is backed up, thus freeing it up. This maintains the transaction log at a reasonable size, without impacting SQL Server performance. Database Mirroring This section provides information about SQL database mirroring and discusses best practices. Database Mirroring Options There are multiple methods of setting up a mirrored SQL database. The models are: asynchronous mirroring synchronous mirroring, with witness synchronous mirroring, without witness Of these models only synchronous mirroring, with witness supports automatic failover. Therefore, Citrix recommends using this model for any production environment; otherwise, if the principal database fails, user intervention is required to fail over the database. For more information about the different models and their performance characteristics, see: Database Mirroring Setup This document does not discuss the initial setup of mirroring; for information about this, see: Microsoft s documentation: Note that SQL mirroring can be configured before or after the SQL database is populated. Also, an empty SQL database (mirrored or unmirrored) can be populated using scripts generated by Desktop Studio, the Power Shell SDK, or using Desktop Studio to directly populate the database. Page 4

6 Broker SQL Configuration String Setup If mirroring is configured after the initial deployment of XenDesktop, you must update the connection strings so that the controllers can locate the mirrored SQL server in the event that the principal SQL Server fails. To do this, use the PowerShell SDK. To retrieve your current connection string, use: PS C:\> Get-BrokerDbConnection Server=camr3e1b01.xds2.chsys2.citrix.com;Database=CitrixXenDesktopDB;Trusted_Connection=true To the above string, add the Failover Partner clause, for example: Server=camr3e1b02.xds2.chsys2.citrix.com;Database=CitrixXenDesktopDB;Trusted_Connection=true; Failover Partner=camr3e2b01.xds2.chsys2.citrix.com Next, update the connection string for all the XenDesktop services on all the controllers. To do this, use the following script (with the MirroredConnectionString updated appropriately): $MirroredConnectionString = Server=camr3e1b02.xds2.chsys2.citrix.com;Database=CitrixXenDesktopDB;Trusted_Connection=true; Failover Partner=camr3e2b01.xds2.chsys2.citrix.com $brokers = Get-BrokerController foreach ($broker in $brokers) { = $broker.dnsname Set-ConfigDBConnection DBConnection $null adminaddress Set-ConfigDBConnection DBConnection $MirroredConnectionString adminaddress Set-AcctDBConnection DBConnection $null adminaddress Set-AcctDBConnection DBConnection $MirroredConnectionString adminaddress Set-BrokerDBConnection DBConnection $null adminaddress Set-BrokerDBConnection DBConnection $MirroredConnectionString adminaddress Set-HypDBConnection DBConnection $null adminaddress Set-HypDBConnection DBConnection $MirroredConnectionString adminaddress Set-PvsVmDBConnection DBConnection $null adminaddress Set-PvsVmDBConnection DBConnection $MirroredConnectionString adminaddress Set-ProvDBConnection DBConnection $null adminaddress Set-ProvDBConnection DBConnection $MirroredConnectionString adminaddress } Page 5

7 Database Mirroring Best Practices Controller configuration changes Citrix recommends that you change the default heartbeat timeout when using database mirroring. You can do this by changing registry settings. The two settings you need to change are stored in: HKEY_LOCAL_MACHINE\SOFTWARE\Citrix\DesktopServer These settings are: HeartbeatPeriodMs controls the interval that the workstations heartbeat with the controller. Note that the workstations actually heartbeat at half the specified interval. The Controller will terminate a workstation if it does not communicate at the specified interval. The default is 60,000 ms. MaxHeartbeatIntervalMs specifies how long before a controller terminates a workstation; you can use this to override the above setting. By default, this is not configured. In testing, it was found that if network connectivity on the principal SQL Server fails, it can take up to one minute for the XenDesktop services to failover to the mirrored SQL Server. This is because TCP and network timeouts having to occur. When workstations heartbeat every 30 seconds, which requires an SQL operation, this results in workstations de-registering and then attempting to re-register. Also, the controllers attempt to unregister any workers that do not heartbeat for over one minute, which can lead to workstations being marked as unregistered, although these are alive and capable of accepting a session. Based on these findings, Citrix recommends you increase the default HeartbeatPeriodMS to 10 minutes (600,000 ms). Although workstations might still fail to heartbeat during the SQL failover period, this prevents the controllers from de-registering them, so workstations are still available for users. This works well with managed workstations as XenDesktop 5 will remove any session records and automatically de-register any virtual machines that are powered off, but which do not unregister cleanly for any reason. With unmanaged workstations, this increases the risk that a user may be directed to a workstation that is not available; however, the use case for unmanaged workstations is for workstations to be assigned, so it is expected that the user is more aware of the state of their workstation. Note that, when this occurs, the user receives a launch failure error in Web Interface. Page 6

8 Database Mirroring Maintenance As previously mentioned in Database Planning, when an SQL database uses the full recovery model the transaction log must be backed up. Full recovery model is a requirement of database mirroring. During testing, we found it best to avoid SQL transaction log growth because this impacts performance. Therefore, a system was used in which the transaction log is configured to a fixed size (2 GB) and an SQL alert is set so that, if the transaction log reaches 50 percent full, a job is run to backup the log. Note that, for alerts and jobs to be executed, the SQL Server Agent must be set up and configured to auto-start. The job is set up to run an SQL command similar to: BACKUP LOG [CitrixXenDesktopDB] TO DISK = N'D:\Rhone_Log_Backup\CitrixXenDesktopDB.bak' WITH NOFORMAT, NOINIT, COMPRESSION, NAME = N'Rhone-Transaction Log Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10 The alert is configured to monitor the SQL performance counter: SQLServer:Databases - Percent Log Used - CitrixXenDesktopDB For more details on configuring jobs, see: For more details on configuring alerts, see: Deleting a Mirrored Database To delete a mirrored database, you must first remove the mirroring configuration. This is done through the properties of the database on the current principal database. Once the database is no longer mirrored from the former principal database, you can delete the database. On the former mirror, it might not be possible to delete the database while it is in a restoring state. If this is the case, take the database out of the restoring state before you delete it. You can do this by rolling pending transactions forward using the SQL statement: RESTORE DATABASE CitrixXenDesktopDB WITH RECOVERY The database is then treated as a normal database and can be deleted. Page 7

9 External References Microsoft Whitepaper on Database Mirroring Best Practices; while written for SQL 2005, it still applies to SQL 2008 and SQL 2008 R2: o Microsoft s Database Mirroring Deployment How-to Topics: o Page 8

XenDesktop 7 Database Sizing

XenDesktop 7 Database Sizing XenDesktop 7 Database Sizing Contents Disclaimer... 3 Overview... 3 High Level Considerations... 3 Site Database... 3 Impact of failure... 4 Monitoring Database... 4 Impact of failure... 4 Configuration

More information

Using SQL Database Mirroring to Improve Citrix XenApp Server Farm Disaster Recovery Capabilities

Using SQL Database Mirroring to Improve Citrix XenApp Server Farm Disaster Recovery Capabilities Using SQL Database Mirroring to Improve Citrix XenApp Server Farm Disaster Recovery Capabilities www.citrix.com Summary... 3 Environment... 3 SQL Server Configuration... 3 XenApp Server Configuration...

More information

Configure SQL database mirroring

Configure SQL database mirroring App Orchestration 2.0 Configure SQL database mirroring Prepared by: Mohit Menghnani Commissioning Editor: Linda Belliveau Version: 4.0 Last Updated: December 12, 2013 Page 1 Contents Overview... 3 Configure

More information

Backing Up CNG SAFE Version 6.0

Backing Up CNG SAFE Version 6.0 Backing Up CNG SAFE Version 6.0 The CNG-Server consists of 3 components. 1. The CNG Services (Server, Full Text Search and Workflow) 2. The data file repository 3. The SQL Server Databases The three services

More information

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc.

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc. Protecting SQL Server Databases 1997-2008 Table of Contents Introduction... 2 Overview of the Backup Process... 2 Configuring SQL Server to Perform Scheduled Backups... 3 Configuring SureSync Relation

More information

UserLock advanced documentation

UserLock advanced documentation UserLock advanced documentation 1. Agent deployment with msi package or with the UserLock deployment module The UserLock deployment module doesn t deploy the msi package. It just transfers the agent file

More information

How to Backup Your Eclipse.Net Database Automatically. To clearly document a specific automatic SQL database backup method for Eclipse.net.

How to Backup Your Eclipse.Net Database Automatically. To clearly document a specific automatic SQL database backup method for Eclipse.net. Purpose: To clearly document a specific automatic SQL database backup method for Eclipse.net. Please note that it is not MLS s responsibility to support you in backing up your databases. Should you require

More information

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x Out n About! for Outlook Electronic In/Out Status Board Administrators Guide Version 3.x Contents Introduction... 1 Welcome... 1 Administration... 1 System Design... 1 Installation... 3 System Requirements...

More information

App Orchestration Setup Checklist

App Orchestration Setup Checklist App Orchestration Setup Checklist This checklist is a convenient tool to help you plan and document your App Orchestration deployment. Use this checklist along with the Getting Started with Citrix App

More information

Automated Database Backup. Procedure to create an automated database backup using SQL management tools

Automated Database Backup. Procedure to create an automated database backup using SQL management tools Automated Database Backup Procedure to create an automated database backup using SQL management tools Genetec Technical Support 6/29/2009 Notice This manual, and the software that it describes, is provided

More information

1 of 10 1/31/2014 4:08 PM

1 of 10 1/31/2014 4:08 PM 1 of 10 1/31/2014 4:08 PM copyright 2014 How to backup Microsoft SQL Server with Nordic Backup Pro Before creating a SQL backup set within Nordic Backup Pro it is first necessary to verify that the settings

More information

Recover a CounterPoint Database

Recover a CounterPoint Database Recover a CounterPoint Database Webinar: Radiant Webinar Mini-Series for Implementation Technicians To connect to phone conference, please call: 1.800.375.2612, and then enter Participant Code: 397670

More information

How to Backup and Restore a VM using Veeam

How to Backup and Restore a VM using Veeam How to Backup and Restore a VM using Veeam Table of Contents Introduction... 3 Assumptions... 3 Add ESXi Server... 4 Backup a VM... 6 Restore Full VM... 12 Appendix A: Install Veeam Backup & Replication

More information

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE Copyright 1998-2012, Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by

More information

Database Back-Up and Restore

Database Back-Up and Restore Database Back-Up and Restore Introduction To ensure the data held in People inc. is secure regular database backups of the databases must be taken. It is also essential that the procedure for restoring

More information

Remote Desktop Reporter Agent Deployment Guide

Remote Desktop Reporter Agent Deployment Guide Remote Desktop Reporter Agent Deployment Guide Table of Contents Overview... 2 Agent Components... 2 Agent Security... 2 Windows Firewall Considerations... 3 Installation Procedure and Configuration Parameters...

More information

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means

More information

Supporting MS SQL Server Failover Using Database Mirroring

Supporting MS SQL Server Failover Using Database Mirroring MERTECH DATA SYSTEMS, INC 18503 Pines Boulevard, Suite 312 Pembroke Pines, FL 33029, USA Tel: 1-954-585-9016 Fax: 1-866-228-1213 www.mertechdata.com Contents Supporting MS SQL Server Failover Using Database

More information

Hardware/Software Guidelines

Hardware/Software Guidelines There are many things to consider when preparing for a TRAVERSE v11 installation. The number of users, application modules and transactional volume are only a few. Reliable performance of the system is

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

Microsoft SQL Server 2005 Database Mirroring

Microsoft SQL Server 2005 Database Mirroring Microsoft SQL Server 2005 Database Mirroring Applied Technology Guide Abstract This document reviews the features and usage of SQL Server 2005, Database Mirroring. May 2007 Copyright 2007 EMC Corporation.

More information

System Requirements Table of contents

System Requirements Table of contents Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

SQL Server Database Administrator s Guide

SQL Server Database Administrator s Guide SQL Server Database Administrator s Guide Copyright 2011 Sophos Limited. All rights reserved. No part of this publication may be reproduced, stored in retrieval system, or transmitted, in any form or by

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

4cast Server Specification and Installation

4cast Server Specification and Installation 4cast Server Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements Item Minimum Recommended Operating system

More information

1002-001-002. Database Server Maintenance Plan

1002-001-002. Database Server Maintenance Plan 1002-001-002 Database Server Maintenance Plan Contents Database Server Maintenance Plan REQUIREMENTS AND RECOMMENDATION DISCLAIMER... 3 OBJECTIVE... 4 SQL SERVER INSTALLATION... 4 HOW TO TAKE BACKUP...

More information

Using the Citrix Service Provider License Reporting Tool

Using the Citrix Service Provider License Reporting Tool TECHNIAL GUIDE Citrix Service Provider Using the Citrix Service Provider License Reporting Tool Version 3, Updated June 4, 2013 www.citrix.com Introduction Citrix Service Providers (CSP) need to generate

More information

Migrating your custom settings to version 7.6

Migrating your custom settings to version 7.6 Migrating your custom settings to version 7.6 Webinar July 2011 web security data security email security 2009, Inc. All rights reserved. Webinar Presenter Greg Didier Title: Support Specialist Accomplishments:

More information

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design Implementing Microsoft SQL Server 2008 Exercise Guide Database by Design Installation Lab: This lab deals with installing the SQL Server 2008 database. The requirements are to have either a Windows 7 machine

More information

Installation Guide. Release Management for Visual Studio 2013

Installation Guide. Release Management for Visual Studio 2013 1 Installation Guide Release Management for Visual Studio 2013 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may

More information

SQM. Maintaining Microsoft SQL for Broadcast Engineers. Training Course Outline

SQM. Maintaining Microsoft SQL for Broadcast Engineers. Training Course Outline SQM Maintaining Microsoft SQL for Broadcast Engineers Training Course Outline 2015 Marcangelo Limited Copyright 2015 www.marcangelo.co.uk SQM : Duration: 2 Days Maintaining Microsoft SQL for Broadcast

More information

MIRRORING: START TO FINISH. Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams

MIRRORING: START TO FINISH. Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams MIRRORING: START TO FINISH Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams About Me http://www.ryanjadams.com @ryanjadams Objectives Define Mirroring Describe how mirroring fits into HA and

More information

IBM XIV Storage System. MSCS Guide. Version 1.0.x

IBM XIV Storage System. MSCS Guide. Version 1.0.x MSCS Guide Version 1.0.x Second Edition (April 2010) This edition applies to IBM XIV Storage System Software and to all subsequent releases and modifications until otherwise indicated in new editions.

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Consulting Solutions WHITE PAPER Citrix XenDesktop Citrix Personal vdisk Technology Planning Guide

Consulting Solutions WHITE PAPER Citrix XenDesktop Citrix Personal vdisk Technology Planning Guide Consulting Solutions WHITE PAPER Citrix XenDesktop Citrix Personal vdisk Technology Planning Guide www.citrix.com Overview XenDesktop offers IT administrators many options in order to implement virtual

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

Networking Best Practices Guide. Version 6.5

Networking Best Practices Guide. Version 6.5 Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Citrix XenDesktop, XenServer & XenApp

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Citrix XenDesktop, XenServer & XenApp Connection Broker Managing User Connections to Workstations, Blades, VDI, and More Quick Start with Citrix XenDesktop, XenServer & XenApp Version 8.0 December 9, 2014 Contacting Leostream Leostream Corporation

More information

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3 Citrix EdgeSight Administrator s Guide Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for enapp 5.3 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior

More information

50238: Introduction to SQL Server 2008 Administration

50238: Introduction to SQL Server 2008 Administration 50238: Introduction to SQL Server 2008 Administration 5 days Course Description This five-day instructor-led course provides students with the knowledge and skills to administer SQL Server 2008. The course

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Web Service for SKF @ptitude Observer. Installation Manual. Part No. 32179700 Revision A

Web Service for SKF @ptitude Observer. Installation Manual. Part No. 32179700 Revision A Web Service for SKF @ptitude Observer Part No. 32179700 Revision A Copyright 2009 by SKF Reliability Systems All rights reserved. Aurorum 30, 977 75 Luleå Sweden Telephone: +46 (0) 920 758 00, Fax: +46

More information

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Qiang Xu, Cloud Services Nanjing Team Last Updated: Mar 24, 2015 Contents Introduction... 2 Process Overview... 3 Before you begin...

More information

Setup and configuration for Intelicode. SQL Server Express

Setup and configuration for Intelicode. SQL Server Express Setup and configuration for Intelicode SQL Server Express Due to overwhelming demand and the increased load on support, we are providing a complete SQL Server installation walkthrough document. SQL Server

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Print Audit 6 Network Installation Guide

Print Audit 6 Network Installation Guide Print Audit 6 Network Installation Guide IMPORTANT: READ THIS BEFORE PERFORMING A PRINT AUDIT 6 INSTALLATION Print Audit 6 is a desktop application that you must install on every computer where you want

More information

Database Administration

Database Administration Unified CCE, page 1 Historical Data, page 2 Tool, page 3 Database Sizing Estimator Tool, page 11 Administration & Data Server with Historical Data Server Setup, page 14 Database Size Monitoring, page 15

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2 DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者

PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者 PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者 http://www.pass4test.jp 1 年 で 無 料 進 級 することに 提 供 する Exam : 70-667 Title : TS: Microsoft SharePoint Server 2010, Configuring Vendors : Microsoft Version : DEMO NO.1 You

More information

AdminToys Suite. Installation & Setup Guide

AdminToys Suite. Installation & Setup Guide AdminToys Suite Installation & Setup Guide Copyright 2008-2009 Lovelysoft. All Rights Reserved. Information in this document is subject to change without prior notice. Certain names of program products

More information

Exam Number/Code : 070-450. Exam Name: Name: PRO:MS SQL Serv. 08,Design,Optimize, and Maintain DB Admin Solu. Version : Demo. http://cert24.

Exam Number/Code : 070-450. Exam Name: Name: PRO:MS SQL Serv. 08,Design,Optimize, and Maintain DB Admin Solu. Version : Demo. http://cert24. Exam Number/Code : 070-450 Exam Name: Name: PRO:MS SQL Serv 08,Design,Optimize, and Maintain DB Admin Solu Version : Demo http://cert24.com/ QUESTION 1 A database is included by the instance, and a table

More information

Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1

Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1 Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1 www.citrix.com Table of contents Recommended upgrade process... 4 Prerequisites... 4 Upgrade the database... 5 Upgrade the platform components...

More information

OBSERVEIT DEPLOYMENT SIZING GUIDE

OBSERVEIT DEPLOYMENT SIZING GUIDE OBSERVEIT DEPLOYMENT SIZING GUIDE The most important number that drives the sizing of an ObserveIT deployment is the number of Concurrent Connected Users (CCUs) you plan to monitor. This document provides

More information

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases WHITE PAPER: ENTERPRISE SOLUTIONS Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases White Paper: Enterprise Solutions Symantec Backup Exec Continuous

More information

Configuring and Monitoring the Xen Desktop Broker. eg Enterprise v5.6

Configuring and Monitoring the Xen Desktop Broker. eg Enterprise v5.6 Configuring and Monitoring the Xen Desktop Broker eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of

More information

Stellar Phoenix Exchange Server Backup

Stellar Phoenix Exchange Server Backup Stellar Phoenix Exchange Server Backup Version 1.0 Installation Guide Introduction This is the first release of Stellar Phoenix Exchange Server Backup tool documentation. The contents will be updated periodically

More information

TANDBERG MANAGEMENT SUITE 10.0

TANDBERG MANAGEMENT SUITE 10.0 TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS

More information

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

More information

Dell Spotlight on Active Directory 6.8.4. Deployment Guide

Dell Spotlight on Active Directory 6.8.4. Deployment Guide Dell Spotlight on Active Directory 6.8.4 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Composite C1 Load Balancing - Setup Guide

Composite C1 Load Balancing - Setup Guide Composite C1 Load Balancing - Setup Guide Composite 2014-08-20 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 3 1.1 Who should read this

More information

Pearl Echo Installation Checklist

Pearl Echo Installation Checklist Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

Spector 360 Deployment Guide. Version 7

Spector 360 Deployment Guide. Version 7 Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...

More information

DNS must be up and running. Both the Collax server and the clients to be backed up must be able to resolve the FQDN of the Collax server correctly.

DNS must be up and running. Both the Collax server and the clients to be backed up must be able to resolve the FQDN of the Collax server correctly. This howto describes the setup of backup, bare metal recovery, and restore functionality. Collax Backup Howto Requirements Collax Business Server Collax Platform Server Collax Security Gateway Collax V-Cube

More information

http://support.microsoft.com/kb/878449 Notes Transfer instructions INTRODUCTION More information

http://support.microsoft.com/kb/878449 Notes Transfer instructions INTRODUCTION More information Page 1 of 6 How to transfer an existing Microsoft Dynamics GP, Microsoft Small Business Financials, or Microsoft Small Business Manager installation to a new server that is running Microsoft SQL Server

More information

Transferring AIS to a different computer

Transferring AIS to a different computer Transferring AIS to a different computer AIS can easily be transferred from one computer to another. There are several different scenarios for transferring AIS to another computer. Since AIS is designed

More information

Engagement Deployment Planning Guide

Engagement Deployment Planning Guide Engagement Deployment Planning Guide July 2015 2000-2015, CCH INCORPORATED, a part of Wolters Kluwer. All rights reserved. Material in this publication may not be reproduced or transmitted, in any form

More information

High Availability for Citrix XenApp

High Availability for Citrix XenApp WHITE PAPER Citrix XenApp High Availability for Citrix XenApp Enhancing XenApp Availability with NetScaler Reference Architecture www.citrix.com Contents Contents... 2 Introduction... 3 Desktop Availability...

More information

User Guide Release Management for Visual Studio 2013

User Guide Release Management for Visual Studio 2013 User Guide Release Management for Visual Studio 2013 ABOUT THIS GUIDE The User Guide for the release management features is for administrators and users. The following related documents for release management

More information

ClockWork Enterprise 5

ClockWork Enterprise 5 ClockWork Enterprise 5 Technical Overview rev 5.1 Table of Contents Overview... 3 Database Requirements... 4 Database Storage Requirements... 4 Sql Server Authentication and Permissions... 5 ClockWork

More information

INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES

INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES TECHNICAL ARTICLE November 2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information

Microsoft System Center: MS-50023 Data Protection 2007 Center Protection Manager Implementing 2012

Microsoft System Center: MS-50023 Data Protection 2007 Center Protection Manager Implementing 2012 coursemonster.com/me Microsoft System Center: MS-50023 Data Protection 2007 Center Protection Manager Implementing 2012 View training dates» Overview Elements of this syllabus may be subject to change

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

RES Workspace Manager 2012 SR2 Release Notes Fixpack 9.7.2.6

RES Workspace Manager 2012 SR2 Release Notes Fixpack 9.7.2.6 RES Workspace Manager 2012 SR2 Release Notes Fixpack 9.7.2.6 Contents 1. Enhancements and Improvements 6 Citrix XenApp 6: Registry value to make Citrix XenApp server act as Session Host Only server6 Workspace

More information

RAP as a Service for. Team Foundation Server. Prerequisites

RAP as a Service for. Team Foundation Server. Prerequisites RAP as a Service for Team Foundation Server Prerequisites Download the latest prerequisites from: http://www.microsoft.com/en-us/download/details.aspx?id=34698 Last modified: Sept 23, 2015 Internet connectivity

More information

High Availability for Internet Information Server Using Double-Take 4.x

High Availability for Internet Information Server Using Double-Take 4.x High Availability for Internet Information Server Using Double-Take 4.x High Availability for Internet Information Server Using Double-Take 4.x published December 2002 NSI and Double-Take are registered

More information

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE Copyright This document is provided "as-is." Information and views expressed in this document, including

More information

www.novell.com/documentation Database Maintenance ZENworks Mobile Management 2.7.x August 2013

www.novell.com/documentation Database Maintenance ZENworks Mobile Management 2.7.x August 2013 www.novell.com/documentation Database Maintenance ZENworks Mobile Management 2.7.x August 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

Installation Instructions Release Version 15.0 January 30 th, 2011

Installation Instructions Release Version 15.0 January 30 th, 2011 Release Version 15.0 January 30 th, 2011 ARGUS Software: ARGUS Valuation - DCF The contents of this document are considered proprietary by ARGUS Software, the information enclosed and any portion thereof

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange CA RECOVERY MANAGEMENT R12.5 BEST PRACTICES CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

250-310. Administration of Symantec Enterprise Vault 10.0 for Exchange. Version: Demo. Page <<1/12>>

250-310. Administration of Symantec Enterprise Vault 10.0 for Exchange. Version: Demo. Page <<1/12>> 250-310 Administration of Symantec Enterprise Vault 10.0 for Exchange Version: Demo Page 1.Enterprise Vault converts mail message attachments to text or HTML. What is a benefit of changing the

More information

Acronis SharePoint Explorer. User Guide

Acronis SharePoint Explorer. User Guide Acronis SharePoint Explorer User Guide Table of contents 1 Introducing Acronis SharePoint Explorer... 3 1.1 Supported Microsoft SharePoint versions... 3 1.2 Supported backup locations... 3 1.3 Licensing...

More information

FireSIGHT User Agent Configuration Guide

FireSIGHT User Agent Configuration Guide Version 2.2 August 20, 2015 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL

More information

Windows 7, Enterprise Desktop Support Technician

Windows 7, Enterprise Desktop Support Technician Course 50331D: Windows 7, Enterprise Desktop Support Technician Page 1 of 11 Windows 7, Enterprise Desktop Support Technician Course 50331D: 4 days; Instructor-Led Introduction This four-day instructor-ledcourse

More information

Herve Roggero 3/3/2015

Herve Roggero 3/3/2015 BLUE SYNTAX CONSULTING Enzo Cloud Backup Overview Herve Roggero 3/3/2015 Contents General Technical Overview... 3 Operation Modes... 3 Enzo Agent... 4 Running Multiple Enzo Agents... 4 How to deploy...

More information

If a database is using the Simple Recovery Model, only full and differential backups of the database can be taken.

If a database is using the Simple Recovery Model, only full and differential backups of the database can be taken. BEST PRACTICES FOR BACKUP OF MICROSOFT SQL 2005 DATABASES WITH UNITRENDS BACKUP PROFESSIONAL INTRODUCTION The information presented in this document is a supplement to the SQL Server Agent chapter in the

More information

IMF Tune v7.0 Backup, Restore, Replication

IMF Tune v7.0 Backup, Restore, Replication IMF Tune v7.0 Backup, Restore, Replication Contents WinDeveloper IMF Tune v7.0 Backup, Restore, Replication... 3 1. IMFTBak Requirements... 3 2. Using IMFTBak... 3 3. Backing-Up Configuration Settings...

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

Performance Monitoring AlwaysOn Availability Groups. Anthony E. Nocentino aen@centinosystems.com

Performance Monitoring AlwaysOn Availability Groups. Anthony E. Nocentino aen@centinosystems.com Performance Monitoring AlwaysOn Availability Groups Anthony E. Nocentino aen@centinosystems.com Anthony E. Nocentino Consultant and Trainer Founder and President of Centino Systems Specialize in system

More information

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,

More information

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

More information