You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

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

IndeedAM.LogServer-x64.msi  is the installation package of Indeed 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.

    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. Creating a database to store log files and users.

Modifying a configuration file.

  1. Open the configuration file sampleDb.config (C:\inetpub\wwwroot\ils\targetConfigs\sampleDb.config).
  2. Specify the parameters for connection to database in connectionString tag.
    1. Data Source - this defines the server instance. The parameter is mandatory for all connections. Admissible values are: network name or server IP address, local or  localhost for local connections.
    2. Initial Catalog - this defines the database name.
    3. User Id is the user name to connect to the database.
    4. Password is user password to connect to the database.
  3. Open the server configuration file clientApps.config (C:\inetpub\wwwroot\ils\clientApps.config).
  4. Specify sampleDb in TargetId and ReadTargetId tags for segment with "Application Id="ea"”.

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.

Exemple
<Application Id="ea" SchemaId="eaSchema">
  <ReadTargetId>sampleDb</ReadTargetId>
  <WriteTargets>
    <TargetId>sampleDb</TargetId>
  </WriteTargets>
  <AccessControl>
    <!--<CertificateAccessControl CertificateThumbprint="001122...AA11" Rights="Read" />-->
  </AccessControl>
</Application>

Example of data display

  • Log display in Indeed AM Admin Console.
  • The structure of created tables at SQL server.



  • No labels