Reputation: 69
after installing ARR module and URL rewrite in IIS 10 (Windows Server 2016) the icon for ARR configuration don't appear. (s. screenshot) Of course, I tried already several restarts of the machine. Any help will be appreciated.
Greets.
Upvotes: 1
Views: 8403
Reputation: 13083
The issue is actually with the Web Platform installer. When you add ARR 3.0 and click install it will say that it installed the ARR and it prerequisites however I discovered that was not the case. It did install URL Rewrite and it did install External cache plugins but it did not complete (or correctly at least) the ARR install.
The solution for me was to go back to WPI, select the ARR 3.0 to Add it again and run the install again.
Then close the IIS Manager, run iisreset (I did it just as a precaution) and open IIS Manager again. You should see the Application Request Routing Cache icon under IIS section within your server node (Features tab -> IIS section).
Now, this is misleading because it is not only cache behind this icon, it is also the proxy feature. Open the feature (double click) and you should see cache settings. The proxy feature however, is located on the right hand side under Actions - Proxy - Server Proxy Settings. Click that link and there you now have an option to enable the (reverse) proxy feature of ARR.
HTH
Upvotes: 2
Reputation: 11486
Perhaps something off with your install? When I installed ARR on IIS 10 the icon came up right away without any restarts.
Did you stop the IIS service first?
net stop was /y
Did you install the IIS 10 ARR dependencies first?
According to this page (see "Install Instructions"):
ARR is dependent on several components:
URL Rewrite
External Cache module
In a nutshell, this worked for me:
net stop was /y
Install the URL Rewrite module. It should install without any problem.
Install the External Cache module, it will complain when
installed on IIS 10 and demand only IIS 7. This can be handled by
updating the IIS version registry key HKLM:\Software\Microsoft\InetStp\MajorVersion
from 10 to 7, then do the
install, then reverting it back to 10.
Finally, install the latest ARR module (v3.0 currently).
net start was /y
net start w3svc /y
Upvotes: 2