Files of Indeed AM Log Server reside in: indeed AM\Indeed AM Log Server\<Version number>\
|
Indeed AM Admin Console does not allow to read events from sysLog server. To display the log in Admin Console, you have to create a separate database (SQL Server or EventLog) to store LogServer events. |
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. |
Creating a database to store log files and users.
Indeed AM Log Server supports sys-log format. You can use any server that supports the format as well. Below is an example of configuring the sys-log server named Syslog Watcher v4.8.6. The utility is available for downloading at the official website https://syslogwatcher.com |
Specify parameters for connection to syslog in "Settings" tag.
<Settings HostName="localhost" Port="514" Protocol="udp" /> |
Specify sampleSyslog 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. |
<Application Id="ea" SchemaId="eaSchema"> <ReadTargetId>sampleSyslog</ReadTargetId> <WriteTargets> <TargetId>sampleSyslog</TargetId> </WriteTargets> <AccessControl> <!--<CertificateAccessControl CertificateThumbprint="001122...AA11" Rights="Read" />--> </AccessControl> </Application> |