StoreFront deployment planning, configuration, and security hardening...
This skill provides guidance for planning, deploying, and configuring Citrix StoreFront infrastructure, including store configuration, authentication setup, high availability, and security hardening.
Single Server
Server Group
Multi-Site
| Users | Servers | CPU | Memory |
|---|---|---|---|
| <500 | 1 | 4 vCPU | 4 GB |
| 500-2000 | 2 | 4 vCPU | 8 GB |
| 2000-5000 | 3 | 8 vCPU | 8 GB |
| 5000+ | 4-5 | 8 vCPU | 16 GB |
Server Requirements
Network Requirements
Certificates
Install StoreFront
# Mount Citrix ISO and run installer
# Select StoreFront role
# Default installation path: C:\Program Files\Citrix\Receiver StoreFront
Initial Configuration
Add Delivery Controllers
# PowerShell configuration
$storeService = Get-STFStoreService -VirtualPath "/Citrix/Store"
Add-STFStoreFarm -StoreService $storeService `
-FarmName "Production" `
-FarmType XenDesktop `
-Servers @("DDC1.domain.com", "DDC2.domain.com") `
-LoadBalance $true `
-Port 443 `
-TransportType HTTPS
# Get store service
$store = Get-STFStoreService -VirtualPath "/Citrix/Store"
# Configure store settings
Set-STFStoreService -StoreService $store `
-LockedDown $true `
-AllowSessionReconnect $true
# Configure subscription store (favorites)
Enable-STFStorePna -StoreService $store `
-AllowUserPasswordChange $true
# Get authentication service
$auth = Get-STFAuthenticationService -VirtualPath "/Citrix/StoreAuth"
# Enable authentication methods
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
-Name "ExplicitForms"
# For pass-through authentication
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
-Name "IntegratedWindows"
# Configure two-factor (requires Gateway)
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
-Name "CitrixAGBasic"
# On primary server - get cluster configuration
$cluster = Get-STFClusterConfiguration
# On secondary server - join group
Start-STFServerGroupJoin -AuthorizerHostName "PRIMARY-SF.domain.com" `
-Confirm:$false
# Verify group membership
Get-STFServerGroup
# Propagate configuration changes
Publish-STFServerGroupConfiguration -Confirm:$false
NetScaler ADC (Recommended)
Windows NLB
# StoreFront Service Group
add serviceGroup sg_storefront SSL
bind serviceGroup sg_storefront SF1.domain.com 443
bind serviceGroup sg_storefront SF2.domain.com 443
# Monitor
add lb monitor mon_storefront STOREFRONT -storename "Store"
bind serviceGroup sg_storefront -monitorName mon_storefront
# Virtual Server
add lb vserver vs_storefront SSL 10.0.0.100 443
bind lb vserver vs_storefront sg_storefront
set lb vserver vs_storefront -persistenceType COOKIEINSERT
# Require HTTPS
Set-STFWebReceiverCommunication -WebReceiverService $receiver `
-RequiredLaunchProtocol "HTTPS"
# Configure strong ciphers via IIS/Registry
# Disable TLS 1.0, 1.1
# Enable TLS 1.2, 1.3
# Configure allowed access methods
Set-STFStoreService -StoreService $store `
-LockedDown $true
# Restrict to specific user groups
# Configure via Delivery Controller
Store not accessible
Applications not enumerating
Authentication failures
C:\Program Files\Citrix\Receiver StoreFront\admin\TraceC:\Program Files\Citrix\Receiver StoreFront\services\Trace# Export configuration
Export-STFConfiguration -Path "C:\Backup\sf-config.zip"
# Test farm connectivity
Test-STFStoreFarm -StoreService $store
# Check service status
Get-STFDeployment | Format-List *
For detailed StoreFront information, see:
citrix-knowledge/domain-knowledge/comprehensive-citrix-knowledge.mdcitrix-knowledge/runbooks/ for operational procedures