Skip to main content

Management Console

Axidian Management Console (Management Console) is a web application that runs on the basis of IIS. It allows you to administer the system and user settings.

How to open Management Console
  • In the browser: http(s)://server dns/am/mc
  • In IIS: <machine name>\sites\Default Web Site\am\mc

Set up Management Console:

  1. Install the module.
  2. Create an HTTPS binding in the IIS settings.
  3. Set up authentication.
  4. If required, configure optional settings.

Install Management Console

System requirements

  1. To install Management Console, run Axidian.ManagementConsole-version number.x64.ru-ru.msi located at Axidian version number\Axidian Management Console version number.

  2. When the installation is complete, you will be prompted to generate a new IDP certificate. This is an optional setting.

    info

    The certificate is required for authentication in Management Console using Identity Provider. This certificate is not intended for establishing the SSL connection.

    If this certificate was generated earlier, disable the option.

    If this option is enabled, a new self-signed certificate is generated and installed in the Local MachinePersonal certificate store. The certificate is used to encrypt data transmitted between the authentication server and the client application.

Create HTTPS binding

If during the installation the requirement for SSL certificate is enabled in the IIS settings, you must create an HTTPS binding as follows:

  1. In IIS Services Manager, in the left menu, navigate to Axidian AccesssitesDefault Web Site.
  2. In the Actions section of the right menu, click Bindings.
  3. Click Add and set the following parameters in the window that appears:
    • In the Type field, select https.
    • In the Port field, specify 443.
    • In the SSL Certificate field, select the Core Server certificate.
  4. Click OK to save the link.

If you do not plan to use the HTTPS protocol, disable the SSL certificate requirement in the IIS settings for Management Console.

Also, in C:\inetpub\wwwroot\am\mc\Web.config, change the value of the requireSSL parameter to false as follows:

<httpCookies httpOnlyCookies="true" requireSSL="false" />

Configure authentication

You can set different authentication methods to log in to Management Console.

Authentication using Windows Authentication

To set up authentication using Windows Password, enable Windows Authentication and edit the console configuration file.

Enable Windows authentication

  1. Open IIS Services Manager and in the left menu, expand the Axidian AccesssitesDefault Web Siteammc node.
  2. Click Authentication.
  3. Turn on the Impersonation ASP.NET and Windows authentication. Disable all other authentication methods.

Modify the configuration file

  1. Open C:\inetpub\wwwroot\am\mc\Web.config for editing.
  2. In the amAuthServer section, in the Url parameter, specify the address for connecting to Core Server, such as http(s)://full_dns_name of the server/am/core/.
<amAuthServer Url="https://amcore.test.local/am/core/">
  1. In the LogServer section, in the Url parameter, specify the address for connecting to Log Server, such as http(s)://full_dns_name of the server/ls/api.
<logServer Url="http://amcore.test.local/ls/api/">

If multiple servers are used, specify the address of the load balancer.

  1. Save the changes and restart the IIS server.

Management Console will be available at: http(s)://full_dns_name of the server/am/mc/.

Note

To ignore server certificate errors when logging in to the console, in C:\inetpub\wwwroot\am\mc\Config\applicationSettings.config change the value of the isIgnoreCertErrors parameter to true.