Configure a XenApp 6.5 Farm from scratch – Part 1

Introduction

In this post I am going to detail the steps required in order to get a single XenApp 6.5 server deployed to a farm. In this series of steps I will detail the installation of 4 servers:

  • XA-DC1 - Active Directory Domain Controller
  • XA-SQL1 - Microsoft SQL Server 2008 R2
  • XA-WEB1 - Citrix Licensing and Web Interface Server
  • XA-XA1 - Citrix XenApp Server

Configure the Domain Controller (XA-DC1)

  1. Rename the computer

Netdom renamecomputer localhost /NewName:XA-DC1 /Reboot /Force

  1. Net the IP Address and DNS Server
    netsh interface ip set address "Local Area Connection" static 192.168.0.1 255.255.255.0 192.168.0.254 1
    netsh interface ip set dns "Local Area Connection" static 192.168.0.1 validate=no
  2. Install Active Directory Domain Controller using PowerShell
    Import-Module ServerManager
    Add-WindowsFeature ADDS-Domain-Controller
  3. Run DCPROMO

clip_image001

clip_image002

clip_image003

clip_image004

clip_image005

clip_image006

clip_image007

clip_image008

clip_image009

clip_image010

clip_image011

Configure the SQL Server

  1. Rename the computer
    netdom renamecomputer localhost /NewName:XA-SQL1 /Reboot /Force
  2. Set the IP Address and DNS Server
    netsh interface ip set address "Local Area Connection" static 192.168.0.2 255.255.255.0 192.168.0.254 1
    netsh interface ip set dns "Local Area Connection" static 192.168.0.1 validate=no
  3. Join the domain, using PowerShell
    Add-Computer -Domain xenapplab.local
    Restart-Computer

Install SQL Server

  1. Run Setup.exe from the SQL Server DVD

clip_image012

clip_image013

clip_image014

clip_image015

clip_image016

clip_image017

clip_image018

clip_image019

clip_image020

clip_image021

clip_image022

clip_image023

clip_image024

clip_image025

clip_image026

clip_image027

clip_image028

clip_image029

Create the XenApp Database

clip_image030

clip_image031

clip_image032

Popular posts from this blog

Get local computer UUID/GUID using Windows Powershell

gPLink and gPOptions

PSLoggedOn Getting Started on Windows Server 2008 R2