Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to download Web Farm Framework and External Cache for IIS 8?

I have a Windows Server 2012 R2 Standard (x64-based processor), and it has IIS 8. I need to configure reverse proxy on it, and it is missing the URL Rewrite module. From what I have read, URL Rewrite requires the Application Request Routing (ARR) module, which itself also requires the Web Farm Framework module and External Cache module.

For URL Rewrite, I can download from https://www.iis.net/downloads/microsoft/url-rewrite

For ARR, I can download from https://www.iis.net/downloads/microsoft/application-request-routing

Where can I download Web Farm Framework and External Cache modules for IIS 8? I have searched and what I have found so far are only for up to IIS 7.5.

like image 962
user3573403 Avatar asked Jan 18 '17 06:01

user3573403


People also ask

How do I install Application Request Routing Cache in IIS?

Navigate to Application Request Routing UI at the server level in IIS Manager. Click on Browse cache content in the actions pane on the right. Verify that responses are cached on the primary cache drive. Verify that the contents also exist on the secondary cache drive location.

What is web farm in IIS?

When a web application is hosted on multiple web servers and access based on the load on servers, it is called Web Farm. In web farm, a single application is hosted on multiple IIS server and these IIS servers are connected with the VIP (Virtual IP) with load balancer.


1 Answers

I managed to download what I needed and got the reverse proxy to work. In case anyone is interested, here are the steps to install all the necessary modules.

(1) Stop IIS 8 first by entering "net stop was /y" in a command window.

(2) Download URL Rewrite from this link and install it: https://www.iis.net/downloads/microsoft/url-rewrite

To use the reverse proxy function in URL Rewrite module, the Application Request Routing module is required, which itself requires the Web Farm Framework module and External Cache module.

(3) Download Web Farm Framework module from this link and install it: http://download.microsoft.com/download/5/7/0/57065640-4665-4980-a2f1-4d5940b577b0/webfarm_v1.1_amd64_en_us.msi

(4) Download External Cache module from this link and install it: https://web.archive.org/web/20161025003123/http://download.microsoft.com/download/3/4/1/3415F3F9-5698-44FE-A072-D4AF09728390/ExternalDiskCache_amd64_en-US.msi

http://download.microsoft.com/download/3/4/1/3415F3F9-5698-44FE-A072-D4AF09728390/ExternalDiskCache_amd64_en-US.msi

(5) Download Application Request Routing module from this link and install it: https://www.iis.net/downloads/microsoft/application-request-routing

(6) Go to Windows services and start "World Wide Web Publishing Service", which is IIS.

like image 134
user3573403 Avatar answered Oct 27 '22 22:10

user3573403