Indeed AM Admin Console is a Web application based on IIS. This module performs system administration. It also handles all the settings of the system and of the users.
Files of Admin Console reside in: indeed AM\Indeed AM Admin Console\<Version number>\
Additional AdminConsole installation files reside in: indeed AM\
|
Add HTTPS binding in Default Web Site settings of IIS Manager.
Indeed AM Admin Console is a web application on the basis of IIS. “Require SSL” is a default installation setting, which, in turn, requires active HTTPS binding. If you do not plan to use https protocol, then deactivate SSL requirement in IIS settings for Admin Console. |
Urlparameter is url address of Indeed server in the following format: http(s):// full_dns_name_of_server/easerver/
To ignore server certificate errors, change the "isIgnoreCertErrors" parameter to "true" in "applicationSettings. config" file ( iidemc\Config ). |
<amAuthServer Url="https://amserv.indeed-id.local/easerver"/> |
URL is url to connect to log server in the following format http(s)://full_dns_name_of_server/ils/api.
If several servers are used, then you have to specify the load balancer address |
CertificateFilePassword is the password for pfx.
<logServer Url="http://log.indeed-id.local/ils/api/" CertificateThumbprint="" CertificateFilePath="" CertificateFilePassword=""/> |
This setting is optional |
Specify a required value for the sessionExpirationTimeMinutes parameter. Default value: 30(minutes).
<amApplicationSettings findUsersMaxResultCount="200" isIgnoreCertErrors="false" sessionExpirationTimeInMinutes="60" allowOverrideRandomPasswordGeneration="false" /> |
This setting is optional |
loginUrl parameter is URL address of the server with Indeed SAML idp component installed in the following format: http(s)://full_dns_name_of_server/iidsamlidp/
<amAuthentication mode="Saml" loginUrl="http://saml.demo.local/iidsamlidp"/> |
In code:
<authentication mode="Windows"> <forms loginUrl="~/Account/Authenticate"></forms> </authentication> |
Change the value of mode parameter to Forms
<authentication mode="Forms"> <forms loginUrl="~/Account/Authenticate"></forms> </authentication> |
Save changes in configuration file.
To disable domain login and password prompt, activate “Anonymous authentication” and deactivate “Windows authentication” for iidsamlidp, at the SAML server. |
For amAuthentication tag, add enableLogout parameter set to true (false by default).
<amAuthentication mode="Saml" loginUrl="http://saml.demo.local/iidsamlidp/" enableLogout="true"/> |
Specify the Admin Console server URL address for EmcServiceUrl parameter of amPartnerServiceProviderSettings tag.
<amPartnerServiceProviderSettings SelfServiceUrl="http://dc.demo.local/iidselfservice/" EmcServiceUrl="http://dc.demo.local/iidemc/"/> |