We are trying to configure an ArcGIS Enterprise 10.5.1 on a MS Azure virtual machine. The OS is Win server 2016 with IIS 10. ArcGIS Enterprise was pre-installed on the machine (using the image available at my.esri), and ArcGIS Server and Potal are running properly on ports 6080/6443 and 7443 respectively.
It is a "single-machine" installation (only one GIS server machine/site).
Actually, we are facing the problem that http://localhost is responding with error 500. The same happens after we installed WebAdaptor accessing http://localhost/server/webadaptor.
We have an error regarding ASP.NET (see "aspnetERROR1325) and another on IIS (please see the image below).
We would need to configure properly the WebAdaptor to:
Another thing is that we noticed that, differently than what we were used to in previous installations, the account of the ArcGIS server is SYSTEM, not local (again, this was pre-configured in the image, we actually didn't touch that).
Does anybody have a clue about what could be wrong with the setup?
Thanks in advance for any help.
Solved! Go to Solution.
thanks for the suggestion. It did not work. Anyway, I solved installing some pending OS updates and reinstalling IIS.
I'd try dropping a web.config in the wwwroot, or if there's one already there, add or update this element:
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
</startup>
</configuration>
Essentially, make sure that the .net sku is pointing to the correct version.
see:
thanks for the suggestion. It did not work. Anyway, I solved installing some pending OS updates and reinstalling IIS.