building drupal web farms with iis - part 1

61
Building Drupal Web Farms with IIS - Part 1 Alessandro Pilotti @alexpilotti MVP ASP.NET / IIS MCSD, MCAD, MCSE, MCDBA, MCT Red Hat Certified Engineer

Upload: alessandro-pilotti

Post on 08-May-2015

3.026 views

Category:

Technology


0 download

DESCRIPTION

This webcast covers the theoretical introduction to Web Farms and how to build Drupal Web Farms with IIS. Don't miss the second part of the webcast (also part of this series) where a full demo on creating Drupal Web Farms with 4 virtual machines will be presented. If you are already familiar with Web Farms, Application Request Router, Web Farm Framework you can skip to part 2. Otherwise, this webcast is highly recommended and propaedeutic to grasp all the basic knowledge that you might need later.

TRANSCRIPT

Page 1: Building drupal web farms with IIS - part 1

Building Drupal Web Farms with IIS - Part

1Alessandro Pilotti

@alexpilottiMVP ASP.NET / IIS

MCSD, MCAD, MCSE, MCDBA, MCTRed Hat Certified Engineer

Page 2: Building drupal web farms with IIS - part 1

Application Request Routing 2.5

IIS 7.x add-on installable via WebPI or setup available on http://iis.NET

Features HTTP based routing decisions Load balance algorithms Health monitoring Client affinity Host name Affinity Multiple server groups Managing and monitoring by using the UI Caching SSL offloading Failed Request Tracing rules

Page 3: Building drupal web farms with IIS - part 1

Web Farm Framework 2.1Features

Integration with ARRPlatform provisioning

Including frameworks (PHP, etc)Application provisioning via WebDeploySimplified farm managementRich UI for monitoring and

management

Page 4: Building drupal web farms with IIS - part 1

Architecture

Page 5: Building drupal web farms with IIS - part 1

Create a Server Farm

After installing ARR and/or WFF the node “Server Farms” shows up in the tree

Page 6: Building drupal web farms with IIS - part 1

Server FarmYou can enable independently

Load balancing Server farm provisioning

Enabling server farm provisioning only means that an alternative load balancing solution is planned, e.g.:

Hardware NLB

Varnish

Apache + HAProxy

WFF requires administrator credentials valid on all the hosts belonging to the farm

Creating an ARR farm via GUI creates also URL rewrite rules

Page 7: Building drupal web farms with IIS - part 1

Server Farm Details

Page 8: Building drupal web farms with IIS - part 1

WFF Server RolesWFF is based on the concept of a primary host and

multiple secondary hosts

Primary host Is the master Platform and applications get provisioned to

secondary hosts

Secondary hosts Are “clones” of the primary host

Roles can be switched A secondary host can become primary

Provisioning is customizable

Page 9: Building drupal web farms with IIS - part 1

Adding Servers

Page 10: Building drupal web farms with IIS - part 1

CLI To achieve the same result as seen before:

appcmd.exe set config -section:webFarms /+"[name='myServerFarm']" /commit:apphost

appcmd.exe set config -section:webFarms /+"[name='myServerFarm'].[address=’DrupalWeb1']" /commit:apphost

URL Rewrite rules: appcmd.exe set config

-section:system.webServer/rewrite/globalRules /+"[name='ARR_myServerFarm_loadbalance', patternSyntax='Wildcard',stopProcessing='True']" /commit:apphost

appcmd.exe set config -section:system.webServer/rewrite/globalRules /[name='ARR_myServerFarm_loadbalance',patternSyntax='Wildcard',stopProcessing='True'].match.url:"*" /commit:apphost

appcmd.exe set config -section:system.webServer/rewrite/globalRules /[name='ARR_myServerFarm_loadbalance',patternSyntax='Wildcard',stopProcessing='True'].action.type:"Rewrite" /[name='ARR_myServerFarm_loadbalance',patternSyntax='Wildcard',stopProcessing='True'].action.url:"http://myServerFarm/{R:0}" /commit:apphost

Page 11: Building drupal web farms with IIS - part 1

ARR Configuration

Page 12: Building drupal web farms with IIS - part 1

Health Test

Page 13: Building drupal web farms with IIS - part 1

Load Balance

Page 14: Building drupal web farms with IIS - part 1

Routing Rules

Page 15: Building drupal web farms with IIS - part 1

Server Affinity

Page 16: Building drupal web farms with IIS - part 1

CachingPrimary and secondary disk caches are configured at the server level

Page 17: Building drupal web farms with IIS - part 1

Add Drives

Page 18: Building drupal web farms with IIS - part 1

Cache Configuration

Page 19: Building drupal web farms with IIS - part 1

Cache Warm-up

Page 20: Building drupal web farms with IIS - part 1

Cache Rules

Page 21: Building drupal web farms with IIS - part 1

Enable Caching in the Farm

Page 22: Building drupal web farms with IIS - part 1

Platform Provisioning

Page 23: Building drupal web farms with IIS - part 1

Application Provisioning

Page 24: Building drupal web farms with IIS - part 1

Failed Request TracingDetailed requests log

Excellent troubleshooting tool

Launch IIS Manager

Select web site e.g. Default Web Site

Select Failed Request Tracing…

Page 25: Building drupal web farms with IIS - part 1

Enable Failed Request Tracing

Page 26: Building drupal web farms with IIS - part 1

Tracing RulesSelect Failed Request Tracing Rules in the

features pane

Add…

Page 27: Building drupal web farms with IIS - part 1

Trace Conditions

Page 28: Building drupal web farms with IIS - part 1

Select Providers

Page 29: Building drupal web farms with IIS - part 1

Analyze TracesTraces are located by default in

%SystemDrive%\inetpub\Logs\FailedReqLogFiles\

Sections to check:GENERAL_REQUEST_HEADERSARR_REQUEST_ROUTEDARR_SERVER_STATSGENERAL_RESPONSE_HEADERSGENERAL_RESPONSE_ENTITY_BUFFER

Page 30: Building drupal web farms with IIS - part 1

CLITo obtain what we did via GUI: appcmd set site "Default Web Site" -

traceFailedRequestsLogging.enabled:"true" /commit:apphost

appcmd.exe set config "Default Web Site" -section:system.webServer/tracing/traceFailedRequests /+"[path='*']”

appcmd.exe set config "Default Web Site" -section:system.webServer/tracing/traceFailedRequests /+"[path='*'].traceAreas.[provider='WWW Server',areas='Rewrite,RequestRouting',verbosity='Verbose']”

appcmd.exe set config "Default Web Site" -section:system.webServer/tracing/traceFailedRequests /[path='*'].failureDefinitions.statusCodes:"200-399"

Page 31: Building drupal web farms with IIS - part 1

Shared ConfigShare the same IIS server configuration among

two or more hosts

Obtained by saving the configuration files on a network share

An encryption key is set to protect sensitive data

Web sites reside on shared paths

Page 32: Building drupal web farms with IIS - part 1

Export Config

Page 33: Building drupal web farms with IIS - part 1

Enable Shared Config

Page 34: Building drupal web farms with IIS - part 1

Shared Config

Page 35: Building drupal web farms with IIS - part 1

Scenario

Page 36: Building drupal web farms with IIS - part 1

RolesLoad balancer / Farm controller (DrupalARR)

Web Server 1 (DrupalWeb1)

Web Server 2 (DrupalWeb2)

File Server (DrupalFileServer)

MySQL Server (DrupalDB) Note: In our demo and lab, we will install MySQL on

DrupalFileServer to limit the number of required VMs

Page 37: Building drupal web farms with IIS - part 1

DBMS Install MySQL on the DBMS server

Can be Windows, Linux, etc

CREATE DATABASE MyNewDrupalSite2;

Enable access to the MySQL database from the web servers. E.g.:  CREATE USER 'MyNewDrupalSite2'@'%'

IDENTIFIED BY 'Passw0rd'; GRANT ALL On MyNewDrupalSite2.* TO

'MyNewDrupalSite2'@'%’;

Note: in the Drupal web apps, connecting to MySQL using an IP address is preferred Avoid name resolution

Page 38: Building drupal web farms with IIS - part 1

Web Farm HostsWeb farm hosts (DrupalWeb1 and

DrupalWeb2)Install Web Deploy via WebPI, if not already

installedDisable UAC (User Account Control)Enable the following feature through the

local firewallCore NetworkingFile And Printer SharingRemote Administration

Page 39: Building drupal web farms with IIS - part 1

Web Farm HostsWe need a common account with administrator

rights on the hosts. It can be:A domain userA user with same username/password on all hostsMust be a member of the “Administrators” groupCheck that the user password is not set to expire

net user wfadmin Passw0rd /addwmic path Win32_UserAccount where

Name='wfadmin' set PasswordExpires=falsenet localgroup administrators wfadmin /add

Page 40: Building drupal web farms with IIS - part 1

Drupal Web SiteCreate a Drupal web site on the primary server

(DrupalWeb1)Via WebPI or manually

As seen in the previous lessons Install all necessary components

PHP 5.3, PHP Manager, WinCache, URL RewritePoint the Drupal DB configuration to the database on

the DBMS serverFor performance reasons, consider using an IP address

instead of name resolution

WFF will later use WebDeploy to replicate the site to the secondary servers (DrupalWeb2 in our case)

Page 41: Building drupal web farms with IIS - part 1

Load Balancer ARRInstall ARR 2.5 and WFF 2.1 via WebPI

Page 42: Building drupal web farms with IIS - part 1

ARROpen IIS Manager and create Web Farm. 

Note: if IIS Manager was open during the setup of ARR, it needs to be closed and reopened to be able to access the installed features.

Page 43: Building drupal web farms with IIS - part 1

Server Farm DetailsSet the wfadmin user you created in the

previous steps

Page 44: Building drupal web farms with IIS - part 1

Add Primary Host to the Farm

In our case, DrupalWeb1 will become the primary server

This host contains the Drupal web site(s) to be served by the farm (can be added later)

Page 45: Building drupal web farms with IIS - part 1

Add Secondary Hosts to the Farm

Page 46: Building drupal web farms with IIS - part 1

URL Rewrite RulesCreate local URL Rewrite rules. This is the base

of the redirection process!

Page 47: Building drupal web farms with IIS - part 1

Platform ProvisioningAt this point, platform and application

synchronization between the hosts takes place.

Platform tools and frameworks that are available on the primary server get installed on the other servers.

Afterwards, application pools, sites and applications will be synchronized

Provisoning can be started manually

Check secondary web farm hosts afterwards

Page 48: Building drupal web farms with IIS - part 1

Platform Provisioning

Page 49: Building drupal web farms with IIS - part 1

ARR – Configure Health Test

Page 50: Building drupal web farms with IIS - part 1

ARR – Check Health Test

Page 51: Building drupal web farms with IIS - part 1

ARR – Set Affinity Cookie

Note: a distributed session management should also be evaluated.

Page 52: Building drupal web farms with IIS - part 1

The “drupalwp” User Create a common user on:

DrupalFileServerDrupalWeb1DrupalWeb2

No privileges requirednet user drupalwp Passw0rd /addwmic path Win32_UserAccount where

Name=’drupalwp' set PasswordExpires=falseCheck that the user password is not set to expire

Repeat on all the above hosts

Page 53: Building drupal web farms with IIS - part 1

WP IdentityOn the primary server, in IIS Manager, open the

server node, click on Application Pools and on the Drupal web site application pool.

Click on “Advanced Settings…”

Change the Identity to the drupalwp user and set it to “drupalwp”

In the PHP.ini configuration file on the PHP version used by the Drupal web site, set fastcgi.impersonate = 0

For performance, make sure also that WinCache is enabled.

Page 54: Building drupal web farms with IIS - part 1

Shared Storage AccessDrupal requires a shared “files” directory accessed by

the web farm hosts

Can be hosted on a SMB share

As an alternative FS sync solutions could be applied DFS, rsync, WebDeploy, etc

A valid user must exist on the web farm hosts and on the file server. It can be: A domain account A local user with same username and password

Proper permissions need to be set on the SMB share

Page 55: Building drupal web farms with IIS - part 1

Folder PermissionsCreate a directory where you want to store your

Drupal shared dataE.g: C:\Data\MyNewDrupalSiteAdd write permissions for the user “drupalwp”

Page 56: Building drupal web farms with IIS - part 1

SMB ShareCreate an SMB share for the directory and add

read/write permissions for the user “drupalwp”

Page 57: Building drupal web farms with IIS - part 1

CLImd C:\Data\MyNewDrupalSite

icacls C:\Data\MyNewDrupalSite /grant drupalwp:(OI)(CI)(RX,W)

net share MyNewDrupalSite=C:\Data\MyNewDrupalSite /grant:wpuser,Change

Page 58: Building drupal web farms with IIS - part 1

Troubleshoot SMB Access From the web farm hosts (DrupalWeb1, DrupalWeb2) try to

access the shared folder with the identity of the WP user:

Runas /u:drupalwp cmd

In the drupalwp command prompt:

net use \\drupaltest05\MyNewDrupalSite\

echo test > \\drupaltest05\MyNewDrupalSite\test.txt

dir \\drupaltest05\MyNewDrupalSite\

File exists: ok

del \\drupaltest05\MyNewDrupalSite\test.txt

Page 59: Building drupal web farms with IIS - part 1

Drupal ConfigurationLog on the drupal web site as administrator and

go to: Administer -> Site Configuration -> File System

Set the “File System”, “Temp” path on the shared storage area.Create a separate share on the file server for the

“Private” path if necessary

Page 60: Building drupal web farms with IIS - part 1

Drupal Configuration

Page 61: Building drupal web farms with IIS - part 1

Drupal 6 CaveatDrupal 6.19 published on WebPI doesn’t support

UNC paths. This can be easily solved with the following code patch:

File includes/file.inc

Line 126

Original if (!is_writable($directory)) {

Modified if (!touch($directory)) {