...
Code Block |
---|
language | bash |
---|
title | Watch IDP und Webserver logs |
---|
|
multitail -f /opt/shibboleth-idp/logs/idp-process.log /var/log/tomcat8tomcat9/access.log |
Code Block |
---|
language | bash |
---|
title | Search for IDP Warnings and Errors |
---|
|
egrep 'WARN|ERROR' /opt/shibboleth-idp/logs/idp-process.log |
...
Code Block |
---|
language | bash |
---|
title | Tomcat STDOUT/STDERR (formerly catalina.out) |
---|
|
journalctl -u tomcat8tomcat9.service -e -f |
Code Block |
---|
language | bash |
---|
title | Trail all relevant logs at once |
---|
|
multitail -f /opt/shibboleth-idp/logs/idp-process.log /var/log/tomcat8tomcat9/access.log -l 'journalctl -u tomcat8tomcat9.service -f' |
Who logged in and where, with what attributes sent?
...
Code Block |
---|
language | bash |
---|
title | HTTP User-Agent IP address in audit and access log |
---|
|
fgrep 192.168.1.99 /opt/shibboleth-idp/logs/idp-audit.log /var/log/tomcat8tomcat9/access.log |
Statistics
ACOnet has contributed a log analysis tool for parsing the Shibboleth IDP's audit logs. For the current day use /opt/shibboleth-idp/logs/idp-audit.log
.
...