RE: Release 0.7.7-alpha-1 Startup Issue
"Steve Mactaggart" <[email protected]>
| Newsgroups | gmane.comp.java.openjms.user |
|---|---|
| Message-ID | <[email protected]> |
Thanks heaps for that, I have used log4j in heaps of places and assumed that by configuring the <root> logger it would show all the output, but it seems like ur right and by enabling that specific logger I can see the output. Thanks again. Steve -----Original Message----- From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of Tim Anderson Sent: Thursday, 7 July 2005 10:20 AM To: [email protected] Subject: RE: [openjms-user] Release 0.7.7-alpha-1 Startup Issue The log4j configuration is described here: http://wiki.apache.org/logging-log4j/Log4jXmlFormat For reasons yet to be determined, specifying a <root> logger doesn't work. It may be being overridden by a 3rd party log4j configuration. However, the following minimal configuration should display the addresses the server is listening on: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'> <appender name="STDOUT" class="org.apache.log4j.ConsoleAppender"> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d{HH:mm:ss.SSS} %-5p [%t] - %m\n"/> </layout> </appender> <category name="org.exolab.jms.server.net.RemoteServerConnector" additivity="false"> <priority value="INFO"/> <appender-ref ref="STDOUT"/> </category> </log4j:configuration> > -----Original Message----- > From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org > [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf > Of Steve Mactaggart > Sent: Wednesday, 6 July 2005 5:50 PM > To: [email protected] > Subject: RE: [openjms-user] Release 0.7.7-alpha-1 Startup Issue > > Hey all, > > I'm having the same issue, but when following the advice > below still don't see anything. > When I update the log4j config file to DEBUG level there is > still no output. > > I even went as far as to enable debug on the config file, and > that works fine with the output of log4j configuring itself > showing on the console, but no internal log messages. > > Any idea what this could be? > > Steve > > ------ Output when running startup with debug=true configured > in log4j. > > [oracle@bbbrdb01 bin]$ ./startup.sh > > Using OPENJMS_HOME: /usr/local/openjms > > Using JAVA_HOME: /usr/java/j2sdk > > OpenJMS: JMS 0.7.7-alpha-1 > > The OpenJMS Group. (C) 1999-2005. All rights reserved. > > http://openjms.sourceforge.net > > log4j: Threshold ="null". > > log4j: Retreiving an instance of org.apache.log4j.Logger. > > log4j: Setting [org.exolab] additivity to [true]. > > log4j: Level value for org.exolab is [DEBUG]. > > log4j: org.exolab level set to DEBUG > > > log4j: Class name: [org.apache.log4j.ConsoleAppender] > > log4j: Parsing layout of class: "org.apache.log4j.PatternLayout" > > log4j: Setting property [conversionPattern] to > [%d{HH:mm:ss.SSS} %-5p [%t] - > %m]. > > > log4j: Adding appender named [STDOUT] to category [org.exolab]. > > log4j: Class name: [org.apache.log4j.FileAppender] > > log4j: Setting property [file] to [openjms.log]. > > log4j: Parsing layout of class: "org.apache.log4j.PatternLayout" > > log4j: Setting property [conversionPattern] to > [%d{HH:mm:ss.SSS} %-5p [%t] - %m]. > log4j: setFile called: openjms.log, true > > log4j: setFile ended > > log4j: Adding appender named [openjms] to category [org.exolab]. > > > -----Original Message----- > From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org > [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf > Of Francisco J. > Bido > Sent: Monday, 4 July 2005 2:09 PM > To: [email protected] > Subject: Re: [openjms-user] Release 0.7.7-alpha-1 Startup Issue > > Worked just fine. Thanks! > > On Jul 2, 2005, at 10:50 PM, Tim Anderson wrote: > > >> From: Francisco J. Bido > >> > >> Hi, > >> > >> This release may have some startup issues. > >> > >> 1. I can create the tables successfully. At least I got > a success > >> message at the end of the process. > >> 2. Corrected a missing double quote at the end of the setenv.sh > >> script. > >> > > > > Thanks - will be fixed in the next release. > > > > > >> 3. I then ran the startup script and immediately get : > >> > >> > >> [NYCmac:JMS/openjms-0.7.7-alpha-1/bin] bido% ./startup.sh Using > >> OPENJMS_HOME: /Users/bido/Dev/JMS/openjms-0.7.7-alpha-1 > >> Using JAVA_HOME: /System/Library/Frameworks/JavaVM.framework/ > >> Versions/1.4.2/Home > >> OpenJMS: JMS 0.7.7-alpha-1 > >> The OpenJMS Group. (C) 1999-2005. All rights reserved. > >> http://openjms.sourceforge.net > >> > >> > >> It just hangs there, no log messages or exceptions. I'm > expecting to > >> see a "listening on port whatever" kind of message. Not > sure what's > >> going on. > >> I tried running it earlier on a Linux box with the same results. > >> The output above is from MacOSX Tiger. > >> > > > > This is expected. If you want to know what ports its > listening on, you > > need to configure $OPENJMS_HOME/config/log4j.xml e.g: > > > > <category name="org.exolab.jms.server.net.RemoteServerConnector" > > additivity="false"> > > <priority value="INFO"/> > > <appender-ref ref="STDOUT"/> > > <appender-ref ref="openjms"/> > > </category> > > > > On startup it will print something like: > > > > 03:47:34.837 INFO [main] - Server accepting connections on > > tcp://10.0.0.1:3035/ > > 03:47:34.887 INFO [main] - JNDI service accepting connections on > > tcp://10.0.0.1:3035/ > > 03:47:34.907 INFO [main] - Admin service accepting connections on > > tcp://10.0.0.1:3035/ > > > > -Tim > > > > > > > > ------------------------------------------------------- > > SF.Net email is sponsored by: Discover Easy Linux Migration > Strategies > > from IBM. Find simple to follow Roadmaps, straightforward articles, > > informative Webcasts and more! Get everything you need to get up to > > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > > _______________________________________________ > > openjms-user mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/openjms-user > > > > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration > Strategies from IBM. Find simple to follow Roadmaps, > straightforward articles, informative Webcasts and more! Get > everything you need to get up to speed, fast. > http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > openjms-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/openjms-user > > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration > Strategies from IBM. Find simple to follow Roadmaps, > straightforward articles, informative Webcasts and more! Get > everything you need to get up to speed, fast. > http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > openjms-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/openjms-user > ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ openjms-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openjms-user ------------------------------------------------------- This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual core and dual graphics technology at this free one hour event hosted by HP, AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar