JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for JISC-SHIBBOLETH Archives


JISC-SHIBBOLETH Archives

JISC-SHIBBOLETH Archives


JISC-SHIBBOLETH@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

JISC-SHIBBOLETH Home

JISC-SHIBBOLETH Home

JISC-SHIBBOLETH  August 2008

JISC-SHIBBOLETH August 2008

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: idp logging question

From:

Bruce Rodger <[log in to unmask]>

Reply-To:

Discussion list for Shibboleth developments <[log in to unmask]>

Date:

Mon, 18 Aug 2008 10:29:34 +0100

Content-Type:

TEXT/PLAIN

Parts/Attachments:

Parts/Attachments

TEXT/PLAIN (237 lines)

Hi Sam,

That appears to have done the trick!

Thanks,
Bruce.

On Fri, 15 Aug 2008, ROWLEY Sam wrote:

> Hi Bruce,
>
> I've been digging in the IdP source code and it looks like the logger
> for the transaction log is created with an unusual name so it's
> bypassing your log4j configuration.
>
> The messages you're getting in your tomcat log are generated by this
> class
>
> edu/internet2/middleware/shibboleth/idp/provider/ShibbolethV1SSOHandler.
> java
>
> which uses a transactionLog object which is created by this class
>
> edu/internet2/middleware/shibboleth/idp/IdPResponder.java
> line 108 : transactionLog = Logger.getLogger("Shibboleth-TRANSACTION");
>
> As you can see, the logger is called Shibboleth-TRANSACTION which means
> it won't get configured by any of the directives in your
> log4j.properties file. That would account for the messages appearing in
> your tomcat log.
>
> Try adding a line for this Shibboleth-TRANSACTION logger to your
> log4j.properties file. Your list of loggers should end up looking like
> this:
>
> ## Shibboleth-IdP
> log4j.logger.org.apache.xml.security=INFO, SHIB_APPENDER, SYSLOG
> log4j.logger.edu.internet2.middleware.shibboleth=INFO, SHIB_APPENDER,
> SYSLOG
> log4j.logger.Shibboleth-TRANSACTION=INFO, SHIB_APPENDER, SYSLOG
>
> With any luck this will configure the Shibboleth-TRANSACTION logger to
> append it's messages to your Shibboleth IdP log and the syslog.
>
> Your idp.xml file should have the original logging section commented out
> in favour of the log4j logging section as below.
>
> <!--
>         <Logging>
>                 <ErrorLog level="INFO"
> location="file:/usr/local/shibboleth-idp/logs/shib-error.log" />
>                 <TransactionLog level="INFO"
> location="file:/usr/local/shibboleth-idp/logs/shib-access.log" />
>         </Logging>
> -->
>         <!-- Uncomment the configuration section below and comment out
> the one above if you would like to manually configure log4j -->
>         <Logging>
>                 <Log4JConfig
> location="file:/usr/local/tomcat5.5/common/classes/log4j.properties" />
>         </Logging>
>
>
> Hope it works. Let us know how you get on.
>
> Cheers,
>
> Sam
>
>
> Sam Rowley
> Learning Development Manager
> Learning Development and Innovation
> Academic Development Institute
> Staffordshire University
> College Road
> Stoke-on-Trent
> ST4 2XS
>
> Telephone: 01782 29 5730
> Email: [log in to unmask] <mailto:[log in to unmask]>
>
>
>> -----Original Message-----
>> From: Discussion list for Shibboleth developments
>> [mailto:[log in to unmask]] On Behalf Of Bruce Rodger
>> Sent: 15 August 2008 14:54
>> To: [log in to unmask]
>> Subject: Re: idp logging question
>>
>> On Fri, 15 Aug 2008, ROWLEY Sam wrote:
>>
>>> Hi Bruce,
>>>
>>> Can you show us the contents of your log4j.properties file? The IdP
>>> configuration
>>
>> Ooop - I meant to append it to the original message!
>>
>> Largely unmodified, as far as I can see, other than the
>> addition of the SYSLOG clauses.
>>
>>
>> #### Configures Log4j as the Tomcat system logger #### #
>> Configure the logger to output info level messages into a
>> rolling logfile.
>> log4j.rootLogger=INFO, TOMCAT_APPENDER
>> #
>> # To continue using the "catalina.out" file (which grows
>> forever), # comment out the above line and uncomment the next.
>> #log4j.rootLogger=ERROR, A1
>>
>> ## Shibboleth-IdP
>> log4j.logger.org.apache.xml.security=INFO, SHIB_APPENDER,
>> SYSLOG #log4j.logger.org.apache.xml.security=DEBUG,
>> SHIB_APPENDER, SYSLOG
>> log4j.logger.edu.internet2.middleware.shibboleth=INFO,
>> SHIB_APPENDER, SYSLOG
>> #log4j.logger.edu.internet2.middleware.shibboleth.xml=DEBUG
>> #log4j.logger.edu.internet2.middleware.shibboleth.idp=DEBUG
>> #log4j.logger.edu.internet2.middleware.shibboleth.idp.IdPRespo
>> nder=DEBUG
>> #log4j.logger.edu.internet2.middleware.shibboleth.idp.IdPConfi
>> gLoader=DEBUG
>> #log4j.logger.edu.internet2.middleware.shibboleth.aa=DEBUG
>> #log4j.logger.edu.internet2.middleware.shibboleth.aa.attrresolv=DEBUG
>>
>> # Configuration for standard output ("catalina.out").
>> log4j.appender.A1=org.apache.log4j.ConsoleAppender
>> log4j.appender.A1.layout=org.apache.log4j.PatternLayout
>>
>> # Configuration for a rolling log file ("tomcat.log").
>> log4j.appender.TOMCAT_APPENDER=org.apache.log4j.DailyRollingFi
>> leAppender
>> log4j.appender.TOMCAT_APPENDER.DatePattern='.'yyyy-MM-dd
>> # Edit the next line to point to your logs directory.
>> # The last part of the name is the log file name.
>> log4j.appender.TOMCAT_APPENDER.File=${catalina.home}/logs/tomcat.log
>> log4j.appender.TOMCAT_APPENDER.layout=org.apache.log4j.PatternLayout
>> #log4j.appender.R.MaxBackupIndex=10
>> #log4j.appender.R.MaxFileSize=10MB
>> # Print the date in ISO 8601 format:
>> #log4j.appender.TOMCAT_APPENDER.layout.ConversionPattern=%d
>> [%t] %-5p %c - %m%n
>> log4j.appender.TOMCAT_APPENDER.layout.ConversionPattern=%d{HH:
>> mm:ss,SSS} [%t] %-5p %m - %c [%d{yyyyMMdd}]%n
>>
>> # Configuration for a rolling log file ("shibboleth-idp.log").
>> log4j.appender.SHIB_APPENDER=org.apache.log4j.DailyRollingFileAppender
>> log4j.appender.SHIB_APPENDER.DatePattern='.'yyyy-MM-dd
>> # Edit the next line to point to your logs directory.
>> # The last part of the name is the log file name.
>> log4j.appender.SHIB_APPENDER.File=${catalina.home}/logs/shibbo
>> leth-idp.log
>> log4j.appender.SHIB_APPENDER.layout=org.apache.log4j.PatternLayout
>> # Print the date in ISO 8601 format:
>> #log4j.appender.SHIB_APPENDER.layout.ConversionPattern=%d
>> [%t] %-5p %c - %m%n
>> log4j.appender.SHIB_APPENDER.layout.ConversionPattern=%d{HH:mm
>> :ss,SSS} %-5p %m - %c [%t;%d{yyyyMMdd}]%n
>>
>>
>> ## Here is a syslog example
>> log4j.appender.SYSLOG=org.apache.log4j.net.SyslogAppender
>> log4j.appender.SYSLOG.syslogHost=loghost.net.strath.ac.uk
>> log4j.appender.SYSLOG.layout=org.apache.log4j.PatternLayout
>> #log4j.appender.SYSLOG.layout.ConversionPattern=%d{dd-MM-yyyy
>> HH:mm:ss}  %-5p (%C :%M:%L) - %m%n
>> log4j.appender.SYSLOG.layout.ConversionPattern=%d{HH:mm:ss,SSS
>> } [%t] %-5p %m - %c [%d{yyyyMMdd}]%n
>> log4j.appender.SYSLOG.Facility=LOCAL6
>>
>>
>> ###
>> ### original file contents
>> ###
>>
>> # Configuration for a rolling log file ("tomcat.log").
>> log4j.appender.R=org.apache.log4j.DailyRollingFileAppender
>> log4j.appender.R.DatePattern='.'yyyy-MM-dd
>> # Edit the next line to point to your logs directory.
>> # The last part of the name is the log file name.
>> log4j.appender.R.File=/var/log/shibboleth/tomcat.log
>> log4j.appender.R.layout=org.apache.log4j.PatternLayout
>> #log4j.appender.R.MaxBackupIndex=10
>> #log4j.appender.R.MaxFileSize=10MB
>> #
>> # Print the date in ISO 8601 format
>> log4j.appender.R.layout.ConversionPattern=%d [%t] %-5p %c - %m%n
>>
>>
>> #REALM log settings
>> log4j.logger.org.apache.catalina.realm=DEBUG
>> #
>> # Application logging options
>> #log4j.logger.org.apache=DEBUG
>> #log4j.logger.org.apache=INFO
>> #log4j.logger.org.apache.struts=DEBUG
>> #log4j.logger.org.apache.struts=INFO#log4j.logger.org.apache.c
>> atalina.core.ContainerBase.[Catalina]=DEBUG, R
>> #log4j.logger.org.apache.catalina.core=DEBUG, R
>> #log4j.logger.org.apache.catalina.session=DEBUG, R
>>
>>
>>
>>
>>
>>
>>
>> --
>> Bruce Rodger                      [log in to unmask]
>> Network Manager, IT Services
>> |http://www.strath.ac.uk/IT/People/bruce.html
>> The University of Strathclyde     | +44 (0)141 548 3300
>> Glasgow G4 0LN, Scotland.         | Fax        553 4100
>>
>> "The University of Strathclyde is a charitable body,
>> registered in Scotland, number SC015263."
>>
>
>
> The information in this email is confidential and is intended solely for the addressee.  Access to this email by anyone else is unauthorised.
>
>
>
> If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, except for the purpose of delivery to the addressee, is prohibited and may be unlawful.  Kindly notify the sender and delete the message and any attachment from your computer.
>

-- 
Bruce Rodger                      [log in to unmask]
Network Manager, IT Services      |http://www.strath.ac.uk/IT/People/bruce.html
The University of Strathclyde     | +44 (0)141 548 3300
Glasgow G4 0LN, Scotland.         | Fax        553 4100

"The University of Strathclyde is a charitable body, registered in
Scotland, number SC015263."

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

November 2023
February 2023
January 2023
November 2022
October 2022
September 2022
June 2022
January 2022
November 2021
October 2021
September 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
October 2020
September 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
October 2019
September 2019
August 2019
June 2019
May 2019
March 2019
February 2019
January 2019
November 2018
July 2018
June 2018
May 2018
April 2018
March 2018
January 2018
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
March 2017
February 2017
January 2017
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
March 2016
February 2016
January 2016
December 2015
November 2015
September 2015
August 2015
June 2015
April 2015
March 2015
February 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager