User Tools

Site Tools


settings-mgmt:04-logging

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
settings-mgmt:04-logging [2020/03/28 08:14]
mpospisek [Overview]
settings-mgmt:04-logging [2020/03/28 09:02] (current)
mpospisek ↷ Page moved from settings:04-logging to settings-mgmt:04-logging
Line 12: Line 12:
 | ADUCID AIM | ADUCID.properties file | | ADUCID AIM | ADUCID.properties file |
  
-==== ADUCID Binder ====+==== Apache HTTPD ==== 
 + 
 +With default settings, log files are in /var/log/httpd. There are three files: 
 +  * access.log 
 +  * error.log 
 +  * aaa_https.log 
 + 
 +==== Apache Tomcat ==== 
 + 
 +With default settings, log files are in /opt/tomcat/logs. There are two files: 
 +  * catalina.out 
 +  * localhost_access_log.<date>.txt 
 + 
 +==== Binder ====
  
 Logging is controlled by system variable OPENAAA_VERBOSE, that can be set to the following values  Logging is controlled by system variable OPENAAA_VERBOSE, that can be set to the following values 
  
-Value Log Level  |+Value Log Level ^
 | 1 | ERROR  | | 1 | ERROR  |
 | 2 | WARN   | | 2 | WARN   |
Line 25: Line 38:
 | 7 | DEBUG4 | | 7 | DEBUG4 |
  
-As this component has several parts, the system variable neesds to be set in several files:+As this component has several parts, the system variable needs to be set in several files:
   * /etc/profile.d/openaaa.sh   * /etc/profile.d/openaaa.sh
   * /etc/sysconfig/openaaa   * /etc/sysconfig/openaaa
Line 31: Line 44:
   * /opt/aaa/conf/aducid-aaa.conf   * /opt/aaa/conf/aducid-aaa.conf
  
 +==== AIM ====
 +Logging is set in the ADUCID.properties file. Two parameters configure what and 
 +  * Parameters DEBUG_LOGGING_ON and AUDITING_ON switch on/off debug logging and audit logging, respectively.
 +  * Parameters SYSLOG_LOGGING_ON and SYSLOG_AUDITING_ON switch on/off messages destination, to a file or to syslog for debug logging and audit logging, respectively. 
 +   
 +^DEBUG_LOGGING_ON^SYSLOG_LOGGING_ON^Output to aim.log^Output to SYSLOG^
 +|false|false|[INFO], [WARNING]|x |
 +|false|true|x|[INFO], [WARNING] |
 +|true|false|[INFO], [WARNING], [DEBUG], [ERROR]|x |
 +|true|true|x|[INFO], [WARNING], [DEBUG], [ERROR] |
 +^AUDITING_ON^SYSLOG_AUDITING_ON^Output to aim_audit.log^Output to SYSLOG^
 +|false|false|x|x|
 +|false|true|x|x |
 +|true|false|[AUDIT]|x |
 +|true|true|x|[AUDIT]|
 +
 +Files aim.log and aim_audit.log are located in /opt/tomcat/log.
 +
 +There are other settings in the ADUCID properties file, controlling syslog integration:
 +<sxh bash>
 +# syslog
 +SYSLOG_PROTOCOL=UDP
 +SYSLOG_HOST=127.0.0.1
 +SYSLOG_PORT=514
 +SYSLOG_FACILITY=LOCAL3
 +
 +# syslog - audit
 +SYSLOG_AUDIT_PROTOCOL=UDP
 +SYSLOG_AUDIT_HOST=127.0.0.1
 +SYSLOG_AUDIT_PORT=514
 +SYSLOG_AUDIT_FACILITY=LOCAL3 
 +</sxh>
  
- +[<>]
settings-mgmt/04-logging.1585383258.txt.gz · Last modified: 2020/03/28 08:14 by mpospisek