Windows 2012 R2 Sunucu Üzerinde IIS Server Farm Oluşturma
Windows 2012 R2 Sunucu Üzerinde IIS Server Farm Oluşturmak
Üzerinde uygulama barındıran iki iis sunucumuzu yine bir iis sunucu üzerine kuracağımız server farm metoduyla load balancing yapabilir.Yine DMZ ortamına konumlandıracağımız bu sunucuyla sistemlerimizi güvenlik altına alabiliriz.
Sistem Gereksinimleri
Sunucumuza Power Shell Metoduyla Aşağıdaki Paketleri PowerShell Komut Penceresinden Kurabiliriz.
Install-WindowsFeature FileAndStorage-Services,Storage-Services,Web-Server,Web-WebServer,Web-Common-Http,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Static-Content,Web-Health,Web-Http-Logging,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-App-Dev,Web-Net-Ext,Web-Mgmt-Tools,Web-Mgmt-Console,NET-Framework-Features,NET-Framework-Core,NET-Framework-45-Features,NET-Framework-45-Core,NET-Framework-45-ASPNET,NET-WCF-Services45,RSAT,RSAT-Feature-Tools,RSAT-SNMP,FS-SMB1,SNMP-Service,Telnet-Client,Telnet-Server,User-Interfaces-Infra,Server-Gui-Mgmt-Infra,Server-Gui-Shell,PowerShellRoot,PowerShell,PowerShell-V2,PowerShell-ISE,WoW64-Support -Source d:\sources\sxs
Server Farm Paketlerinin Sunucuya Yüklenmiş Durumu Aşağıdaki Gibi Olmalıdır.
IIS Manager Açılarak Server Farm Oluşturulur.
Server Farm Objesine İlgili Sunucular Eklenir.
IIS \ wwwroot \ Dizinine Web.config Dosyası Eklenir. İçeriği Aşağıdaki Şekilde Olmalıdır.
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”Redirect to HTTPS” stopProcessing=”true”>
<match url=”(.*)” />
<conditions>
<add input=”{HTTPS}” pattern=”^OFF$” />
</conditions>
<action type=”Redirect” url=”https://{HTTP_HOST}/{R:1}” redirectType=”SeeOther” />
</rule>
</rules>
</rewrite>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2147483648″ />
</requestFiltering>
</security>
</system.webServer>
</configuration>
İlgili Linkler
https://technet.microsoft.com/en-us/library/hh831515(v=ws.11).aspx
https://blogs.technet.microsoft.com/erezs_iis_blog/2013/11/27/installing-arr-manually-without-webpi/
Etiket Bulunmuyor
Bir Cevap Yazın