Load Balancing and Clustering in EPiServer

Size: px
Start display at page:

Download "Load Balancing and Clustering in EPiServer"

Transcription

1 Load Balancing and Clustering in EPiServer Abstract This white paper describes the main differences between load balancing and clustering, and details EPiServer's possibilities of existing in a clustered infrastructure. Product version: 4.50 Document version: 1.0

2 2 Load Balancing and Clustering in EPiServer Table of Contents INTRODUCTION 3 CLUSTERING AND LOAD BALANCING 3 Clustering 3 Load Balancing 4 Combine Clustering and Load Balancing 4 CONFIGURATION OF THE ENVIRONMENT 5 EPISERVER IN A CLUSTERED ENVIRONMENT 5 Files 5 Cache 5 Schedules 6 Access Rights and Authorities 6 CONCLUSION 6 APPENDIX LOAD BALANCING CASE STUDY 7 System Overview 7 Network Load Balancing Manager 7 File Replication via Distributed File System 8 Installation 9 EPiServer Configuration 10 Performance Tests 11 The contents of this document are protected by copyright. Changes to the content or partial copying of the content may not be carried out without permission from ElektroPost Stockholm AB. The document may be freely distributed in its entirety, either digitally or in printed format, to all EPiServer users. EPiServer is a registered trademark of ElektroPost Stockholm AB. Other product and company names mentioned in this document may be the trademarks for their respective owners.

3 Introduction 3 Introduction Load balancing is often required when building solutions that handle large volumes of client requests or that have high demands on security and redundancy. EPiServer fully supports load balancing, for session handling, cache and common files. For more technically detailed information about EPiServer, see EPiServer Operator's Guide. See Microsoft's Web site for information about clustering in the Windows environment. Note A standard EPiServer installation is normally enough from a performance point of view. Load balancing is only required when the Web site experiences very heavy traffic. Clustering and Load Balancing There is some confusion surrounding the concepts clustering and load balancing. This chapter concentrates on defining the differences between the two technologies. Clustering Clustering is an alternative when it is important to minimize downtime and high redundancy in a solution, and is preferably used in business-critical applications, such as databases and servers. Reliability is high in a clustered solution; at least one server handles the incoming requests for the clients and fetches its data from a common disk, which is accessible from the other servers in the cluster. If the active server fails for some reason, another server in the cluster takes over the requests without it greatly affecting the end users. This process is called failover. A server cluster is a collection of physically independent servers with one collective storage area. Clustered servers are physically connected to each other with cables, and are logically connected with the cluster software. The clusters do not need to have identical hardware or configuration. Clients sending requests to the cluster see the cluster as one unit, where it is not possible to differentiate between the different nodes. Figure 1 Clustering services secure availability by letting one of the servers take over from another server at failover.

4 4 Load Balancing and Clustering in EPiServer Load Balancing Load balancing or Network Load Balancing (NLB), which distributes incoming traffic through a network of connected servers, should be seen as a complement to clustering. Load balancing balances the load of incoming network traffic and distributes the requests to the servers that best can handle them. Load balancing is mainly used for scalability and performance reasons. If you want to scale the solution, new servers can be added to the cluster as required. In a load-balanced environment, you set up at least 2 servers that handle incoming requests from the clients. Figure 2 The load balancing distributes incoming requests to a group of servers. Combine Clustering and Load Balancing Large scalable system solutions can be built using both clustering and load balancing, by balancing the loads in a so-called Web server farm and building a cluster of the mission-critical systems, e.g. the database. This results in high availability for the database and high scalability for Web servers.

5 Configuration of the Environment 5 Configuration of the Environment Configuration and dimensions of a cluster for EPiServer is unique for every customer. Some of the factors that can affect this are, for example, expected workload, required reply times, and calculated time for unplanned downtime. These areas are not covered in this document. Further information about this can be found on Microsoft's home page for clustering services, It is important to note that SQL servers can only support clustering and cannot be load-balanced. You should, therefore, plan for upgradeable hardware, if you expect the workload on the database to be high. EPiServer in a Clustered Environment When building a load-balanced EPiServer solution, the Web servers and database must be stored separately, as SQL Server cannot be load-balanced. Refer to EPiServer Operator's Guide for information on how to configure EPiServer to support load balancing, with reference to caching and file management. Files To avoid different file setups, set up the Web site so that the Web servers read files, documents, etc. from a common file server, which also serves as an upload area for editors. Cache As soon as the cache is changed on one of the servers in the cluster, the other servers in the cluster must also be notified of the change and update their own cache. For this reason, each server in the cluster must know about the other servers. These notifications occur via Web service requests between Web services in the cluster. The other nodes in the cluster are registered in web.config. For further information on how authorization and cache notifications are configured, refer to the EPiServer Technical Notes, and EPiServer Operator's Guide.

6 6 Load Balancing and Clustering in EPiServer Schedules In order to avoid collision between the scheduling services on the nodes in the load-balanced cluster, the list with command jobs is checked in the common database. This means that "first come, first served" applies for the different processes. It is also possible to let the scheduler exist on only one node, but then the objects must be identical on the different nodes. Access Rights and Authorities For access rights to work correctly and for all the nodes in the cluster to have access to the common file area, it is necessary to let the ASPNET account run under a user account with access rights to the common file area, so-called impersonation. This is achieved by changing the following in web.config: <identity impersonate="true" username="domain\user" password="pass"/> With this line included, all the anonymous users will be run under the stated account, which will then have access rights to the common file area. Conclusion EPiServer works well in a Windows environment with Clustering Services from Microsoft, from both a performance and scalability point of view. The best results are achieved after careful preparation with the organization, so that the load-balanced environment is configured to best meet the expected workload and security requirements. Experience tells us that a standard EPiServer installation is, in most cases, enough to handle heavy user workload. Clustering and load balancing can be used as a complement, when customers have high demands on performance and redundancy.

7 Appendix Load Balancing Case Study 7 Appendix Load Balancing Case Study System Overview In this case study we have used an environment containing Microsoft Windows Server The clustered Web servers are installed with Windows Server 2003 Web Edition and the domain controller has Windows Server 2003 Standard Edition. All the machines are based on a CPU of 1.3 GHz. Network Load Balancing Manager Network Load Balancing Manager is used to configure and monitor load balancing. In this case study, we have created a virtual IP address ( ). The two machines included in the cluster have their own IP address ( and ).

8 8 Load Balancing and Clustering in EPiServer NOTES: 1. One of the nodes in the cluster is always master. When a server crashes, another node in the cluster will take over the role as master. 2. If the service for IIS is switched off on one of the nodes, the cluster will not react. The entire node must be taken out of the cluster for maintenance. File Replication via Distributed File System To ensure that templates and uploaded files are identical on all the nodes in the cluster, there must either be a common area for files, or the files must be replicated to other nodes in the cluster. In this case study, we have chosen the latter solution with Distributed File System (DFS). With DFS it is possible to replicate both files and directories in real-time, as well as being possible to exclude files and directories, for example web.config, which must be unique for the node in question. DFS requires

9 Appendix Load Balancing Case Study 9 Active Directory, which is why we have also installed a primary domain controller (PDC) in this solution. NOTES: 1. In DFS it is possible to set up one or more replications, i.e. it is possible to synchronize entire Web sites or only parts of it, like /upload and /templates. The configuration file web.config must always be excluded, as it must be unique for each node in the cluster. 2. In the case study we also tested connection to normal file sharing, for example, common storage, which also worked. If the server with the shared directory were to fail, there would be obvious consequences for the other nodes in the cluster. This would not be the case with file replication. Installation We installed EPiServer 4.11 on both nodes in the cluster. It is important to manually reconfigure the settings for authorization, as DFS also synchronizes local access rights. The local accounts must be converted to the domain account this mainly applies to NETWORK_SERVICE (ASPNET in Windows 2000) and allow Execute and IUSR_XXX to allow anonymous access. A local group is created on each node in the cluster and it is important that they all have the same name. The domain account is then placed in the new group. Then the domain account is added to the group IIS_WPG. File access rights are finally set to the local groups. Firstly we changed the access rights by selecting Replace existing from the root directory for the Web sites that are not a master. Then we ran EPiServer Configuration Tool and edited the XML file, so that the necessary access rights were given for the domain account. EPiServer Configuration Tool can be downloaded from It is important that MachineKey is the same for all nodes in the cluster. Otherwise login can be requested when different Web servers in the cluster have different keys for signing data. This also effects functions like forms logon, ViewState and session management. The key is created and placed in machine.config.

10 10 Load Balancing and Clustering in EPiServer NOTES: 1. Copy the Web sites that are not to be master in the cluster at installation, (especially web.config). At replication, the entire Web site is synchronized from one master, which results in web.config being written over and the access rights becoming incorrect. 2. IIS_WPG (Internet Information Services Worker Process Group) requires certain Read access rights to the [windir]\temp directory. Otherwise, Web Services will not work correctly, and this is blocked as standard in Windows Server EPiServer Configuration Add the key EPsCacheListener in web.config on all the nodes in the cluster. This makes the nodes react to change and replicate changes in the local cache to other nodes in the cluster. Note that WEB1 should only have WEB2 in this field, and the opposite for WEB2, so that the respective Web servers do not update themselves. This field can also include a comma-separated list, if there are more than 2 servers in the cluster. Go to Remote Web sites in EPiServer Admin mode to set up the Web sites. All the Web sites should have the same name, e.g. WEB. This is so that the cache will know that all the pages belong to the same Web site. Two virtual Web sites, e.g. WEB1 and WEB2, are created after this, so that the nodes in the cluster can reach each other.

11 Appendix Load Balancing Case Study 11 NOTES: 1. It is important that the name of the Web sites are written correctly. 2. Dynamic properties are not synchronized in version 4.11, but this will be changed in future versions. Performance Tests We have used Application Center Test (ACT), which is included in Visual Studio.NET for performance tests. TEST CASE 1 All the page types in the Web site where called individually (without logon). This resulted in a reply frequency of 70 RPS (requests per second). Both of the nodes in the cluster were loaded equally and work at maximum with 100% CPU workload. If one of the machines is removed from the cluster, the reply frequency decreases to approx. 35 RPS, which is as expected. Note Only one connection is used in the test, but this nevertheless results in the traffic being distributed to both nodes, which is preferred. TEST CASE 2 Only calling the start page, which has more content than most pages, results in a reply frequency of 50 RPS. Both of the machines have 100% CPU workload. When we close down one IIS on one of the nodes in the cluster, we receive an HTTP error, The page cannot be found. The reply frequency decreases to 3-5 RPS. This means that a dead IIS process does not remove the node from the cluster. This node will, however, continue to receive calls, which it does not reply to, resulting in the test process being extremely slow, as it sends the calls after one another in the test script. The second node is, in this case, hardly loaded at all. If, however, you remove the node from the cluster, all traffic is directed to the second node in the cluster. The reply frequency is also halved in this case, which is the expected result, and indicates that performance increases in line with the node's hardware.

12 12 Load Balancing and Clustering in EPiServer Note When you remove one of the nodes from the cluster, the cluster receives NO calls for seconds. After this it will reply normally. When you plug in a machine, it is connected without interruption.

Load Balancing and Clustering in EPiServer

Load Balancing and Clustering in EPiServer Load Balancing and Clustering in EPiServer Abstract This white paper describes the main differences between load balancing and clustering, and details EPiServer's possibilities of existing in a clustered

More information

Load Balancing and Clustering in EPiDesk

Load Balancing and Clustering in EPiDesk Load Balancing and Clustering in EPiDesk Product version: 2.04 Document version: 1.0 Document creation date: 30-10-2007 Purpose This document describes the main differences between load balancing and clustering

More information

EPiServer Operator's Guide

EPiServer Operator's Guide EPiServer Operator's Guide Abstract This document is mainly intended for administrators and developers that operate EPiServer or want to learn more about EPiServer's operating environment. The document

More information

AxCMS.net on Network Load Balancing (NLB) Environment

AxCMS.net on Network Load Balancing (NLB) Environment AxCMS.net on Network Load Balancing (NLB) Environment This article contains step-by-step instructions on how to install AxCMS.net PremiumSample on a demo NLB cluster using IIS7. For installing on older

More information

High Availability Essentials

High Availability Essentials High Availability Essentials Introduction Ascent Capture s High Availability Support feature consists of a number of independent components that, when deployed in a highly available computer system, result

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Using LDAP for User Authentication

Using LDAP for User Authentication Using LDAP for User Authentication Product version: 4.60 Document version: 1.0 Document creation date: 31-03-2006 Purpose This technical note describes how to configure and set up EPiServer to use an LDAP

More information

Building a Scale-Out SQL Server 2008 Reporting Services Farm

Building a Scale-Out SQL Server 2008 Reporting Services Farm Building a Scale-Out SQL Server 2008 Reporting Services Farm This white paper discusses the steps to configure a scale-out SQL Server 2008 R2 Reporting Services farm environment running on Windows Server

More information

How To Live Migrate In Hyperv On Windows Server 22 (Windows) (Windows V) (Hyperv) (Powerpoint) (For A Hyperv Virtual Machine) (Virtual Machine) And (Hyper V) Vhd (Virtual Hard Disk

How To Live Migrate In Hyperv On Windows Server 22 (Windows) (Windows V) (Hyperv) (Powerpoint) (For A Hyperv Virtual Machine) (Virtual Machine) And (Hyper V) Vhd (Virtual Hard Disk Poster Companion Reference: Hyper-V Virtual Machine Mobility Live Migration Without Shared Storage Storage Migration Live Migration with SMB Shared Storage Live Migration with Failover Clusters Copyright

More information

Astaro Deployment Guide High Availability Options Clustering and Hot Standby

Astaro Deployment Guide High Availability Options Clustering and Hot Standby Connect With Confidence Astaro Deployment Guide Clustering and Hot Standby Table of Contents Introduction... 2 Active/Passive HA (Hot Standby)... 2 Active/Active HA (Cluster)... 2 Astaro s HA Act as One...

More information

Using LDAP for User Authentication

Using LDAP for User Authentication Using LDAP for User Authentication Product version: 4.50 Document version: 1.1 Document creation date: 03-06-05 Purpose This technical note describes how to configure and set up EPiServer to use an LDAP

More information

Parallels. Clustering in Virtuozzo-Based Systems

Parallels. Clustering in Virtuozzo-Based Systems Parallels Clustering in Virtuozzo-Based Systems (c) 1999-2008 2 C HAPTER 1 This document provides general information on clustering in Virtuozzo-based systems. You will learn what clustering scenarios

More information

TIBCO Spotfire Platform IT Brief

TIBCO Spotfire Platform IT Brief Platform IT Brief This IT brief outlines features of the system: Communication security, load balancing and failover, authentication options, and recommended practices for licenses and access. It primarily

More information

TARGETPROCESS INSTALLATION GUIDE

TARGETPROCESS INSTALLATION GUIDE TARGETPROCESS INSTALLATION GUIDE v.2.19 Installation Guide This document describes installation of TargetProcess application and common problems with resolutions. 1 PREREQUISITES... 3 SERVER REQUIREMENTS...

More information

Polar Help Desk Installation Guide

Polar Help Desk Installation Guide Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

Load-Balanced Merak Mail Server

Load-Balanced Merak Mail Server Load-Balanced Merak Mail Server The most powerful solution for high traffic performance is to deploy Merak Mail Server in a load-balanced environment. This solution is shown in the demonstration below:

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Chapter 1 - Web Server Management and Cluster Topology

Chapter 1 - Web Server Management and Cluster Topology Objectives At the end of this chapter, participants will be able to understand: Web server management options provided by Network Deployment Clustered Application Servers Cluster creation and management

More information

Configuring Windows Server Clusters

Configuring Windows Server Clusters Configuring Windows Server Clusters In Enterprise network, group of servers are often used to provide a common set of services. For example, Different physical computers can be used to answer request directed

More information

THE WINDOWS AZURE PROGRAMMING MODEL

THE WINDOWS AZURE PROGRAMMING MODEL THE WINDOWS AZURE PROGRAMMING MODEL DAVID CHAPPELL OCTOBER 2010 SPONSORED BY MICROSOFT CORPORATION CONTENTS Why Create a New Programming Model?... 3 The Three Rules of the Windows Azure Programming Model...

More information

AppSense Environment Manager. Enterprise Design Guide

AppSense Environment Manager. Enterprise Design Guide Enterprise Design Guide Contents Introduction... 3 Document Purpose... 3 Basic Architecture... 3 Common Components and Terminology... 4 Best Practices... 5 Scalability Designs... 6 Management Server Scalability...

More information

K2 [blackpearl] deployment planning

K2 [blackpearl] deployment planning K2 [blackpearl] deployment planning UNDERSTANDING THE DEPLOYMENT SCENARIOS AND OPTIONS December 14 This paper describes the various deployment scenarios of the K2 [blackpearl] software, and discusses when

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

Overview... 1 Requirements... 1. Installing Roles and Features... 3. Creating SQL Server Database... 9 Setting Security Logins...

Overview... 1 Requirements... 1. Installing Roles and Features... 3. Creating SQL Server Database... 9 Setting Security Logins... Contents CHAPTER 1 IMail Server using Failover Clustering Overview... 1 Requirements... 1 CHAPTER 2 IIS Installing Roles and Features... 3 CHAPTER 3 Configuring Storage Area Network Requirements... 5 Connecting

More information

Kaseya Server Instal ation User Guide June 6, 2008

Kaseya Server Instal ation User Guide June 6, 2008 Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

Improving Application Performance, Scalability, and Availability using Microsoft Windows Server 2008 and NLB with Sanbolic Melio FS and SAN Storage

Improving Application Performance, Scalability, and Availability using Microsoft Windows Server 2008 and NLB with Sanbolic Melio FS and SAN Storage Improving Application Performance, Scalability, and Availability using Microsoft Windows Server 2008 and NLB with Sanbolic Melio FS and SAN Storage (A step-by-step guide) www.sanbolic.com Software to Simplify

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

Building a Highly Available and Scalable Web Farm

Building a Highly Available and Scalable Web Farm Page 1 of 10 MSDN Home > MSDN Library > Deployment Rate this page: 10 users 4.9 out of 5 Building a Highly Available and Scalable Web Farm Duwamish Online Paul Johns and Aaron Ching Microsoft Developer

More information

Quorum DR Report. Top 4 Types of Disasters: 55% Hardware Failure 22% Human Error 18% Software Failure 5% Natural Disasters

Quorum DR Report. Top 4 Types of Disasters: 55% Hardware Failure 22% Human Error 18% Software Failure 5% Natural Disasters SAP High Availability in virtualized environments running on Windows Server 2012 Hyper-V Part 1: Overview Introduction Almost everyone is talking about virtualization and cloud computing these days. This

More information

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 Overview With the Virtual Machine and Virtual Networking services of Windows Azure, it is now possible to deploy and

More information

Server Scalability and High Availability

Server Scalability and High Availability Server Scalability and High Availability GO!Enterprise GLOBO Plc. March 2015 Copyright Notice and Usage Terms This guide is Copyright 2012 GLOBO. All Rights Reserved. Permission is granted to make and

More information

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158 Index A Active Directory Active Directory nested groups, 96 creating user accounts, 67 custom authentication, 66 group members cannot log on, 153 mapping certificates, 65 mapping user to Active Directory

More information

Preinstallation Requirements Guide

Preinstallation Requirements Guide Preinstallation Requirements Guide Synergy 3.4.9 June 2015 Synergy 2015 TOC 1: Introduction 4 Synergy platform modules 4 Synergy install procedure - your responsibilities 4 Further information about Synergy

More information

Managing and Maintaining Windows Server 2008 Servers

Managing and Maintaining Windows Server 2008 Servers Managing and Maintaining Windows Server 2008 Servers Course Number: 6430A Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview This five day instructor led

More information

Gladinet Cloud Enterprise

Gladinet Cloud Enterprise GLADINET, INC Gladinet Cloud Enterprise Multi-Site Deployment Guide Gladinet, Inc. 9/27/2013 This document discusses the technologies behind Gladinet Cloud Enterprise Copyright 2013 Gladinet, Inc. Table

More information

Polycom CMA System Upgrade Guide

Polycom CMA System Upgrade Guide Polycom CMA System Upgrade Guide 5.0 May 2010 3725-77606-001C Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks and/or

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

Integrated Application and Data Protection. NEC ExpressCluster White Paper

Integrated Application and Data Protection. NEC ExpressCluster White Paper Integrated Application and Data Protection NEC ExpressCluster White Paper Introduction Critical business processes and operations depend on real-time access to IT systems that consist of applications and

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

IBM FileNet Image Services

IBM FileNet Image Services IBM FileNet Image Services Version 4.1 Microsoft Cluster Server Installation and Upgrade Procedures for Windows Server GC31-5531-01 IBM FileNet Image Services Version 4.1 Microsoft Cluster Server Installation

More information

Server Installation Manual 4.4.1

Server Installation Manual 4.4.1 Server Installation Manual 4.4.1 1. Product Information Product: BackupAgent Server Version: 4.4.1 2. Introduction BackupAgent Server has several features. The application is a web application and offers:

More information

NETWRIX ACCOUNT LOCKOUT EXAMINER

NETWRIX ACCOUNT LOCKOUT EXAMINER NETWRIX ACCOUNT LOCKOUT EXAMINER ADMINISTRATOR S GUIDE Product Version: 4.1 July 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute a

More information

Installing and Using the vnios Trial

Installing and Using the vnios Trial Installing and Using the vnios Trial The vnios Trial is a software package designed for efficient evaluation of the Infoblox vnios appliance platform. Providing the complete suite of DNS, DHCP and IPAM

More information

Composite C1 Load Balancing Product Sheet

Composite C1 Load Balancing Product Sheet Composite C1 Load Balancing Product Sheet Composite 2014-08-15 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Have the Load Balanced on Your Website 24/7 availability

More information

EMC VPLEX FAMILY. Continuous Availability and Data Mobility Within and Across Data Centers

EMC VPLEX FAMILY. Continuous Availability and Data Mobility Within and Across Data Centers EMC VPLEX FAMILY Continuous Availability and Data Mobility Within and Across Data Centers DELIVERING CONTINUOUS AVAILABILITY AND DATA MOBILITY FOR MISSION CRITICAL APPLICATIONS Storage infrastructure is

More information

CA ARCserve Replication and High Availability

CA ARCserve Replication and High Availability CA ARCserve Replication and High Availability Installation Guide r16 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Online Transaction Processing in SQL Server 2008

Online Transaction Processing in SQL Server 2008 Online Transaction Processing in SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 provides a database platform that is optimized for today s applications,

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

Windows SharePoint Services Installation Guide

Windows SharePoint Services Installation Guide Windows SharePoint Services Installation Guide Michael@SchmittDotNet.com www.schmittdotnet.com Version 1.4 10/11/2010 Copyright and Disclaimers This guide is for informational purposes only. THE AUTHOR

More information

Installing RMFT on an MS Cluster

Installing RMFT on an MS Cluster Installing RMFT on an MS Cluster RMFT Software Version 2.4.3 Supported on: Windows Server 2003 Enterprise Edition Windows Server 2000 Advanced Windows Server 2003 Datacenter Edition Windows Server 2008

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

Richmond Web Services Installation Guide Web Reporting Version 10.0

Richmond Web Services Installation Guide Web Reporting Version 10.0 Richmond Web Services Installation Guide Web Reporting Version 10.0 Richmond Systems Ltd, West House, West Street, Haslemere, Surrey, GU27 2AB Tel: +44 (0)1428 641616 - Fax: +44 (0)1428 641717 - info@richmondsys.com

More information

Load Balancing & High Availability

Load Balancing & High Availability Load Balancing & High Availability 0 Optimizing System Resources through Effective Load Balancing An IceWarp White Paper October 2008 www.icewarp.com 1 Background Every server is finite. Regardless of

More information

Simple Software for a Business Continuity Plan and a Disaster Recovery Plan (BCP DRP) pdf ppt

Simple Software for a Business Continuity Plan and a Disaster Recovery Plan (BCP DRP) pdf ppt For a recorded version of this webinar, go to http://www.evidian.com/products/high-availability-software-for-application-clustering/business-continuity-plan-disaster-recovery-plan-bcp-drp-pdf-ppt/ Transitions

More information

AVG Business SSO Connecting to Active Directory

AVG Business SSO Connecting to Active Directory AVG Business SSO Connecting to Active Directory Contents AVG Business SSO Connecting to Active Directory... 1 Selecting an identity repository and using Active Directory... 3 Installing Business SSO cloud

More information

Ignify ecommerce. Item Requirements Notes

Ignify ecommerce. Item Requirements Notes wwwignifycom Tel (888) IGNIFY5 sales@ignifycom Fax (408) 516-9006 Ignify ecommerce Server Configuration 1 Hardware Requirement (Minimum configuration) Item Requirements Notes Operating System Processor

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

CA ARCserve Replication and High Availability

CA ARCserve Replication and High Availability CA ARCserve Replication and High Availability Installation Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

Configuring MDaemon for High Availability

Configuring MDaemon for High Availability Configuring MDaemon for High Availability This document is intended to provide a general outline of the steps that are required to configure MDaemon for high availability. Modifications may be required

More information

NETWRIX IDENTITY MANAGEMENT SUITE

NETWRIX IDENTITY MANAGEMENT SUITE NETWRIX IDENTITY MANAGEMENT SUITE FEATURES AND REQUIREMENTS Product Version: 3.3 February 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Multi-site Best Practices

Multi-site Best Practices DS SOLIDWORKS CORPORATION Multi-site Best Practices SolidWorks Enterprise PDM multi-site implementation [SolidWorks Enterprise PDM 2010] [] [Revision 2] Page 1 Index Contents Multi-site pre-requisites...

More information

Non-Native Options for High Availability

Non-Native Options for High Availability The Essentials Series: Configuring High Availability for Windows Server 2008 Environments Non-Native Options for High Availability by Non-Native Options for High Availability... 1 Suitability and Cost...

More information

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Microsoft Corporation Published: May 2010 Abstract This guide describes the steps for configuring Remote Desktop Connection

More information

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers.

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. 1 How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. Back to Basics Series By Steve Smith, MVP SharePoint Server,

More information

Load Balancing. Outlook Web Access. Web Mail Using Equalizer

Load Balancing. Outlook Web Access. Web Mail Using Equalizer Load Balancing Outlook Web Access Web Mail Using Equalizer Copyright 2009 Coyote Point Systems, Inc. Printed in the USA. Publication Date: January 2009 Equalizer is a trademark of Coyote Point Systems

More information

IdP Clustering. You want to prevent service outages. High Availability and Load Balancing. Possible problems: HW failures

IdP Clustering. You want to prevent service outages. High Availability and Load Balancing. Possible problems: HW failures Clustering High Availability and Load Balancing SWITCHaai Team aai@switch.ch You want to prevent service outages Possible problems: HW failures Server component failure power failure. Network failure Software

More information

Active Directory Monitoring With PATROL

Active Directory Monitoring With PATROL Active Directory Monitoring With PATROL Contents What is Active Directory?...1 Why Monitor?...1 Active Directory and PATROL...2 Critical Active Directory Components to Monitor...3 Address Book...3 Domain

More information

Veritas Cluster Server Application Note: Disaster Recovery for Microsoft SharePoint Server

Veritas Cluster Server Application Note: Disaster Recovery for Microsoft SharePoint Server Veritas Cluster Server Application Note: Disaster Recovery for Microsoft SharePoint Server Windows Server 2003, Windows Server 2008 5.1 Veritas Cluster Server Application Note: Disaster Recovery for Microsoft

More information

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland Introducing Markus Erlacher Technical Solution Professional Microsoft Switzerland Overarching Release Principles Strong emphasis on hardware, driver and application compatibility Goal to support Windows

More information

NETWRIX PASSWORD MANAGER

NETWRIX PASSWORD MANAGER NETWRIX PASSWORD MANAGER ADMINISTRATOR S GUIDE Product Version: 6.1 February/2012 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Server application Client application Quick remote support application. Server application

Server application Client application Quick remote support application. Server application The system needs to be Online, with a server hosted as a HTTP/WEB interface. The WEB interface will have a login interface, Administrators can download the server & client application to any desktop to

More information

Planning Domain Controller Capacity

Planning Domain Controller Capacity C H A P T E R 4 Planning Domain Controller Capacity Planning domain controller capacity helps you determine the appropriate number of domain controllers to place in each domain that is represented in a

More information

Module 12: Microsoft Windows 2000 Clustering. Contents Overview 1 Clustering Business Scenarios 2 Testing Tools 4 Lab Scenario 6 Review 8

Module 12: Microsoft Windows 2000 Clustering. Contents Overview 1 Clustering Business Scenarios 2 Testing Tools 4 Lab Scenario 6 Review 8 Module 12: Microsoft Windows 2000 Clustering Contents Overview 1 Clustering Business Scenarios 2 Testing Tools 4 Lab Scenario 6 Review 8 Information in this document is subject to change without notice.

More information

Sage ACT! Premium 2013 Web Administrator's Guide

Sage ACT! Premium 2013 Web Administrator's Guide Copyright 2012 Sage Software, Inc. All Rights Reserved. Sage, the Sage logos, ACT!, and the Sage product and service names mentioned herein are registered trademarks or trademarks of Sage Software, Inc.

More information

Clustering in Parallels Virtuozzo-Based Systems

Clustering in Parallels Virtuozzo-Based Systems Parallels Clustering in Parallels Virtuozzo-Based Systems Copyright 1999-2009 Parallels Holdings, Ltd. ISBN: N/A Parallels Holdings, Ltd. c/o Parallels Software, Inc. 13755 Sunrise Valley Drive Suite 600

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

Microsoft 70-414 Exam

Microsoft 70-414 Exam Volume: 92 Questions Topic 1, Contoso Ltd Overview Contoso, Ltd. is a recruiting and staffing company that has offices throughout North America. The company has a main office and six branch offices. The

More information

Server Installation Procedure - Load Balanced Environment

Server Installation Procedure - Load Balanced Environment Server Installation Procedure - Load Balanced Environment 1. Introduction This document explains a step-by-step procedure in case BackupAgent BV performs an installation of the BackupAgent Server Software

More information

Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE

Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE Table of Contents Overview... 2 Installation and Initial Configuration of SharePoint services... 3 System Requirements...

More information

Log Service Installation Instructions

Log Service Installation Instructions Log Service Installation Instructions Abstract The purpose of the Log Service is to centrally handle log messages in one place for the entire Web site. This document describes how to install the Log Service

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532A: Developing Microsoft Azure Solutions Page 1 of 7 Developing Microsoft Azure Solutions Course 20532A: 4 days; Instructor-Led Introduction This course is intended for students who have experience

More information

Course Syllabus. Fundamentals of Windows Server 2008 Network and Applications Infrastructure. Key Data. Audience. Prerequisites. At Course Completion

Course Syllabus. Fundamentals of Windows Server 2008 Network and Applications Infrastructure. Key Data. Audience. Prerequisites. At Course Completion Key Data Product #: 3380 Course #: 6420A Number of Days: 5 Format: Certification Exams: Instructor-Led None This course syllabus should be used to determine whether the course is appropriate for the students,

More information

PCD Test Tools. These tools provide various test functions for the Power Chain Device Toolkit web services (BACnetWS+).

PCD Test Tools. These tools provide various test functions for the Power Chain Device Toolkit web services (BACnetWS+). PCD Test Tools The subfolders of this directory contain the install builds for the following tools: BnwsTest command line tool ImgMaker (formerly PxTkImgMaker) PunchingBag toolkit simulation server BACnetWsPlusTester.exe

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER QUICK-START GUIDE FOR THE ENTERPRISE EDITION Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information

Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET

Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET Unit 39: Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET Learning Outcomes A candidate following a programme of learning leading to this unit will

More information

Eylean server deployment guide

Eylean server deployment guide Eylean server deployment guide Contents 1 Minimum software and hardware requirements... 2 2 Setting up the server using Eylean.Server.Setup.exe wizard... 2 3 Manual setup with Windows authentication -

More information

You need to recommend a monitoring solution to ensure that an administrator can review the availability information of Service1. What should you do?

You need to recommend a monitoring solution to ensure that an administrator can review the availability information of Service1. What should you do? QUESTION 1 Your network contains the following: 20 Hyper-V hosts 100 virtual machines 2,000 client computers You need to recommend an update infrastructure design to meet the following requirements: Deploy

More information

ArcGIS for Server Reference Implementations. An ArcGIS Server s architecture tour

ArcGIS for Server Reference Implementations. An ArcGIS Server s architecture tour ArcGIS for Server Reference Implementations An Arc s architecture tour Basic Single Machine Site Advantages Easy to setup Fast performance (keep file resources local) Client Manager Data (Files) Uses:

More information

Web Application Hosting Cloud Architecture

Web Application Hosting Cloud Architecture Web Application Hosting Cloud Architecture Executive Overview This paper describes vendor neutral best practices for hosting web applications using cloud computing. The architectural elements described

More information

Mediasite for the enterprise. Technical planner: TP-05

Mediasite for the enterprise. Technical planner: TP-05 Mediasite for the enterprise Technical planner: TP-05 2011 Sonic Foundry, Inc. All rights reserved. No part of this document may be copied and/or redistributed without the consent of Sonic Foundry, Inc.

More information

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide LT Auditor+ 2013 Windows Assessment SP1 Installation & Configuration Guide Table of Contents CHAPTER 1- OVERVIEW... 3 CHAPTER 2 - INSTALL LT AUDITOR+ WINDOWS ASSESSMENT SP1 COMPONENTS... 4 System Requirements...

More information

EMC VPLEX FAMILY. Continuous Availability and data Mobility Within and Across Data Centers

EMC VPLEX FAMILY. Continuous Availability and data Mobility Within and Across Data Centers EMC VPLEX FAMILY Continuous Availability and data Mobility Within and Across Data Centers DELIVERING CONTINUOUS AVAILABILITY AND DATA MOBILITY FOR MISSION CRITICAL APPLICATIONS Storage infrastructure is

More information

The Benefits of Virtualizing

The Benefits of Virtualizing T E C H N I C A L B R I E F The Benefits of Virtualizing Aciduisismodo Microsoft SQL Dolore Server Eolore in Dionseq Hitachi Storage Uatummy Environments Odolorem Vel Leveraging Microsoft Hyper-V By Heidi

More information

Jive Connects for Microsoft SharePoint: Troubleshooting Tips

Jive Connects for Microsoft SharePoint: Troubleshooting Tips Jive Connects for Microsoft SharePoint: Troubleshooting Tips Contents Troubleshooting Tips... 3 Generic Troubleshooting... 3 SharePoint logs...3 IIS Logs...3 Advanced Network Monitoring... 4 List Widget

More information

INTERNET INFORMATION SERVICES (IIS) IMPLEMENTATION BEST PRACTICES: By: Terri Donahue, Microsoft IIS MVP

INTERNET INFORMATION SERVICES (IIS) IMPLEMENTATION BEST PRACTICES: By: Terri Donahue, Microsoft IIS MVP INTERNET INFORMATION SERVICES (IIS) IMPLEMENTATION BEST PRACTICES: SECURITY, LOAD TESTING, SCALABILITY, LOAD BALANCING By: Terri Donahue, Microsoft IIS MVP Internet information services (iis) Implementation

More information

High Availability Server Clustering Solutions

High Availability Server Clustering Solutions White Paper High vailability Server Clustering Solutions Extending the benefits of technology into the server arena Intel in Communications Contents Executive Summary 3 Extending Protection to Storage

More information