Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

Files of Indeed AM Log Server reside in: indeed AM\Indeed AM Log Server\<Version number>\

  • IndeedAM.LogServer-x64.msi is the installation package of Indeed AM Log Server.
  • IndeedAM.Server.EventLog-x64.msi is the package that provides for the necessary log infrastructure in Windows EventLog.

Installation

  1. Install the Indeed AM Log Server by running IndeedAM.LogServer-x64.msi installer.
  2. Add HTTPS binding in Default Web Site settings of IIS Manager.

    Info

    Indeed AM Log Server 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 logserver.


    1. Run IIS Manager and expand the Sites item.
    2. Select the Default Web Site site and click Bindings item in the Actions section.
    3. Click Add:
      1. Type - https.
      2. Port - 443.
      3. Select the SSL Certificate.
    4. Save the binding.
  3. Install the Indeed EventLog by running IndeedAM.Server.EventLog-x64.msi.

Modifying a configuration file.

  1. Open the server configuration file clientApps.config (C:\inetpub\wwwroot\ils\clientApps.config).
  2. Specify sampleEventLog in TargetId and ReadTargetId tags for segment with "Application Id="ea"”.
Info

The TargetId and ReadTargetId tags specify an identifier of the selected log storage type.

The identifiers are defined in <Targets>...</Targets> tag. Configuration files for each storage types reside in targetConfigs folder with the corresponding name.


Code Block
languageyml
titleExempleExample
<Application Id="ea" SchemaId="eaSchema">
  <ReadTargetId>sampleEventLog</ReadTargetId>
  <WriteTargets>
    <TargetId>sampleEventLog</TargetId>
  </WriteTargets>
  <AccessControl>
    <!--<CertificateAccessControl CertificateThumbprint="001122...AA11" Rights="Read" />-->
  </AccessControl>
</Application>

Example of data display

  • Log display in Indeed Admin Console.
  • Log display in Windows Event Log.



Backtotop