
70 Enterprise Server Installation and Migration Guide
Another method to troubleshoot this error is to ensure that there is not a mismatch between the Dell Enterprise Server FQDN
and the certificates (by configuring certificates using a DNS alias instead of the FQDN). This mismatch can happen if you
installed the Dell Enterprise Server using the FQDN, but configured certificates using a DNS alias.
To troubleshoot this issue, change the “web.config” file in c:\inetpub\wwwroot\Console to reflect the CN of the certificate, as
follows:
For this example, change the Dell Enterprise Server name from the FQDN (server01.domain.com) to the DNS alias (server01).
Once finished, restart the World Wide Web Publishing Service.
<?xml version=”1.0” encoding=”UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation targetFramework=”4.0” />
<pages>
<namespaces>
<add namespace=”Credant.Console.Resources” />
</namespaces>
</pages>
</system.web>
<appSettings>
<!-- Credant.Console Default Settings -->
<add key=”Login.UseWindowsAuth” value=”False” lockItem=”true” />
<add key=”Settings.PageSize” value=”25” lockItem=”true” />
<add key=”Settings.StartScreen” value=”Home” lockItem=”true” />
<add key=”Settings.Brand” value=”Credant” />
<add key=”Help.Uri” value=”Help/” />
<add key=”Help.DefaultDocument” value=”get_started.htm” />
<!-- Credant.Server Settings -->
<add key=”ServercoreHostname” value=”server01.domain.com” “server01” />
<add key=”ServercorePort” value=”8888” />
<add key=”ServerHostname” value=”server01.domain.com” “server01” />
<add key=”ServerPort” value=”9011” />
<!-- Credant.ComplianceReporter Settings -->
<add key=”ReporterHost” value=”server01.domain.com” “server01” />
<add key=”ReporterPort” value=”8084” />
<add key=”ReporterSslRequired” value=”true” />
<!-- Credant.Authorization.Sts Settings -->
<add key=”StsHost” value=”server01.domain.com” “server01” />
<add key=”StsPort” value=”9000” />
<add key=”DisableSSLCertTrust” value=”True” />
<add key=”MaxReceivedMessageSize” value=”1500000” />
</appSettings>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value=”Default.htm” />
<add value=”Default.asp” />
<add value=”default.aspx” />
<add value=”index.htm” />
<add value=”index.html” />
<add value=”iisstart.htm” />
</files>
</defaultDocument>
</system.webServer>
</configuration>
Commenti su questo manuale