From: M T. <m....@gm...> - 2006-06-28 13:43:05
|
Hi bodders, I've installed bodington on a server that's running Tomcat 5.5.17. Does anyone have any advice / tip & trick regarding tomcat config? Thanks -- m.cha3l |
From: Colin T. <col...@ou...> - 2006-06-28 13:46:38
|
M Thomas wrote: > I've installed bodington on a server that's running Tomcat 5.5.17. > Does anyone have any advice / tip & trick regarding tomcat config? What do you mean? Are you having problems? -- ____________________________________ Colin Tatham VLE Team Oxford University Computing Services http://www.oucs.ox.ac.uk/ltg/vle/ http://bodington.org |
From: Alistair Y. <ali...@sm...> - 2006-06-28 13:48:11
|
I've just built bod on java 5 and running it on 5.5.17 - what's the prob? Alistair On 28 Jun 2006, at 14:43, M Thomas wrote: > Hi bodders, > > I've installed bodington on a server that's running Tomcat 5.5.17. > Does anyone have any advice / tip & trick regarding tomcat config? > > Thanks > > -- > m.cha3l > > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Alexis O'C. <ale...@ou...> - 2006-06-28 13:57:14
|
M Thomas wrote: > Hi bodders, > > I've installed bodington on a server that's running Tomcat 5.5.17. > Does anyone have any advice / tip & trick regarding tomcat config? > > Thanks > Well the key pitfall to manouver (and I quote from /bodington/docs/install/quickstart/Readme.txt here!) is: - - - - - - - - Tomcat 5.5 - Much work has gone into Tomcat 5.5 to enable it to run with just a JRE. Bodington currently requires the tools.jar (containing the javac java compiler), from the JDK, as this is used to compile the templates. If Tomcat is running, stop it and then perform these steps according to your platform. * Windows: From the 'Start' menu choose Programs -> Apache Tomcat 5.5 -> Configure Tomcat. In the dialog that appears, select the 'Java' tab. Append ;<path to jdk>\lib\tools.jar to the entry in the 'Java Classpath' box (so if you installed the JDK in C:\Program Files\Java\jdk1.5.0 you would append the string ;C:\Program Files\Java\jdk1.5.0\tools.jar). Click on OK and you can restart Tomcat from another tab on the same dialog. * Linux: Open $CATALINA_HOME/bin/setclasspath.sh in a text editor and add $JAVA_HOME/lib/tools.jar to the CLASSPATH, e.g.: CLASSPATH=$JAVA_HOME/lib/tools.jar - - - - - - - Other than that, there's nothing special to be aware of as far as I know (?) -- + - - - - - - - - - - - - - - - - - - - - - - - - - - - + | Alexis O'Connor, VLE Developer (http://bodington.org) | | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | | Tel. +44 (0)1865 283661 | + - - - - - - - - - - - - - - - - - - - - - - - - - - - + |
From: M T. <m....@gm...> - 2006-06-28 15:13:43
|
Sorry, no problems should have clarified the request... Oups Has anyone got any advice on configuring tomcat with regard to performance? M. On 28/06/06, Alexis O'Connor <ale...@ou...> wrote: > M Thomas wrote: > > Hi bodders, > > > > I've installed bodington on a server that's running Tomcat 5.5.17. > > Does anyone have any advice / tip & trick regarding tomcat config? > > > > Thanks > > > > Well the key pitfall to manouver (and I quote from > /bodington/docs/install/quickstart/Readme.txt here!) is: > > - - - - - - - > > - Tomcat 5.5 - > > Much work has gone into Tomcat 5.5 to enable it to run with just a JRE. > Bodington currently requires the tools.jar (containing the javac java > compiler), from the JDK, as this is used to compile the templates. If > Tomcat > is running, stop it and then perform these steps according to your > platform. > > * Windows: From the 'Start' menu choose Programs -> Apache Tomcat 5.5 -> > Configure Tomcat. In the dialog that appears, select the 'Java' tab. > Append > ;<path to jdk>\lib\tools.jar to the entry in the 'Java Classpath' box > (so if > you installed the JDK in C:\Program Files\Java\jdk1.5.0 you would > append the > string ;C:\Program Files\Java\jdk1.5.0\tools.jar). Click on OK and you can > restart Tomcat from another tab on the same dialog. > > * Linux: Open $CATALINA_HOME/bin/setclasspath.sh in a text editor and add > $JAVA_HOME/lib/tools.jar to the CLASSPATH, e.g.: > > CLASSPATH=$JAVA_HOME/lib/tools.jar > > - - - - - - - > > Other than that, there's nothing special to be aware of as far as I know (?) > > -- > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > | Alexis O'Connor, VLE Developer (http://bodington.org) | > | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | > | Tel. +44 (0)1865 283661 | > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > -- m.cha3l |
From: Alexis O'C. <ale...@ou...> - 2006-06-28 16:00:19
|
M Thomas wrote: > Sorry, no problems should have clarified the request... Oups > > Has anyone got any advice on configuring tomcat with regard to performance? > > M. > OK, you haven't said whether or not you've tried and have experienced performance problems ;-). Anyway, in the general scheme of things, one is far more likely to encounter performance problems with the database rather than the servlet container (if we're talking about bodington here!). I presume you're running on JDK 1.5, anyway, the combination with that should mean that things are running faster than Tomcat 5.0 + J2SDK v1.4.2 anyway. Other than that, I don't have any particular tips. I don't think it's generally regarded as a slouch in the performance department. Alexis |
From: Sean M. <se...@sm...> - 2006-06-28 16:03:15
|
++2 for that. tomcat ain't our problem. untuned sql, now there's a diff! s On 28 Jun 2006, at 17:00, Alexis O'Connor wrote: > Other than that, I don't have any particular tips. I don't think it's > generally regarded as a slouch in the performance department. > > Alexis |
From: Atif S. <BM...@bm...> - 2006-06-28 16:05:29
|
>Anyway, in the general scheme of things, one is far more likely to >encounter performance problems with the database rather than the servlet > container (if we're talking about bodington here!). > >I presume you're running on JDK 1.5, anyway, the combination with that >should mean that things are running faster than Tomcat 5.0 + J2SDK >v1.4.2 anyway. > >Other than that, I don't have any particular tips. I don't think it's >generally regarded as a slouch in the performance department. > >Alexis > > yep. |
From: M T. <m....@gm...> - 2006-06-29 08:12:03
|
Already done Jon... ;o) Thanks guys, was just checking... but it seems you're all in agreement that tomcat performs well with out too much config! M. On 28/06/06, Jon Maber <jo...@te...> wrote: > Atif Suleman wrote: > >> Anyway, in the general scheme of things, one is far more likely to > >> encounter performance problems with the database rather than the servlet > >> container (if we're talking about bodington here!). > >> > >> I presume you're running on JDK 1.5, anyway, the combination with that > >> should mean that things are running faster than Tomcat 5.0 + J2SDK > >> v1.4.2 anyway. > >> > >> Other than that, I don't have any particular tips. I don't think it's > >> generally regarded as a slouch in the performance department. > >> > >> Alexis > >> > >> > >> > > yep. > > > Most obvious tip - use JAVA_OPTS environment variable to set the size of > the JVM heap to much bigger than the default, including the option to > set the initial heap to the maximum too. > > Jon > > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > -- m.cha3l |
From: Jon M. <jo...@te...> - 2006-06-28 17:57:36
|
Atif Suleman wrote: >> Anyway, in the general scheme of things, one is far more likely to >> encounter performance problems with the database rather than the servlet >> container (if we're talking about bodington here!). >> >> I presume you're running on JDK 1.5, anyway, the combination with that >> should mean that things are running faster than Tomcat 5.0 + J2SDK >> v1.4.2 anyway. >> >> Other than that, I don't have any particular tips. I don't think it's >> generally regarded as a slouch in the performance department. >> >> Alexis >> >> >> > yep. > Most obvious tip - use JAVA_OPTS environment variable to set the size of the JVM heap to much bigger than the default, including the option to set the initial heap to the maximum too. Jon |
From: Colin T. <col...@ou...> - 2006-06-29 17:10:08
|
Dunno anything about it (apart from messages from Tomcat that it can't be found) but is it worth looking at the Apache Tomcat Native library: "INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found"... Colin M Thomas wrote: > Already done Jon... ;o) > > Thanks guys, was just checking... but it seems you're all in agreement > that tomcat performs well with out too much config! > > M. > > On 28/06/06, Jon Maber <jo...@te...> wrote: > >>Atif Suleman wrote: >> >>>>Anyway, in the general scheme of things, one is far more likely to >>>>encounter performance problems with the database rather than the servlet >>>> container (if we're talking about bodington here!). >>>> >>>>I presume you're running on JDK 1.5, anyway, the combination with that >>>>should mean that things are running faster than Tomcat 5.0 + J2SDK >>>>v1.4.2 anyway. >>>> >>>>Other than that, I don't have any particular tips. I don't think it's >>>>generally regarded as a slouch in the performance department. >>>> >>>>Alexis >>>> >>>> >>>> >>> >>>yep. >>> >> >>Most obvious tip - use JAVA_OPTS environment variable to set the size of >>the JVM heap to much bigger than the default, including the option to >>set the initial heap to the maximum too. >> >>Jon >> >> >> >> >>Using Tomcat but need to do more? Need to support web services, security? >>Get stuff done quickly with pre-integrated technology to make your job easier >>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>_______________________________________________ >>Bodington-developers mailing list >>Bod...@li... >>https://lists.sourceforge.net/lists/listinfo/bodington-developers >> > > > -- ____________________________________ Colin Tatham VLE Team Oxford University Computing Services http://www.oucs.ox.ac.uk/ltg/vle/ http://bodington.org |
From: M T. <m....@gm...> - 2006-07-04 09:08:35
|
Has anyone got the Apache Tomcat Native library stuff working on their live server or even a test server? M. On 29/06/06, Colin Tatham <col...@ou...> wrote: > > Dunno anything about it (apart from messages from Tomcat that it can't be > found) but is it worth > looking at the Apache Tomcat Native library: > > "INFO: The Apache Tomcat Native library which allows optimal performance > in production environments > was not found"... > > Colin > > M Thomas wrote: > > Already done Jon... ;o) > > > > Thanks guys, was just checking... but it seems you're all in agreement > > that tomcat performs well with out too much config! > > > > M. > > > > On 28/06/06, Jon Maber <jo...@te...> wrote: > > > >>Atif Suleman wrote: > >> > >>>>Anyway, in the general scheme of things, one is far more likely to > >>>>encounter performance problems with the database rather than the > servlet > >>>> container (if we're talking about bodington here!). > >>>> > >>>>I presume you're running on JDK 1.5, anyway, the combination with that > >>>>should mean that things are running faster than Tomcat 5.0 + J2SDK > >>>>v1.4.2 anyway. > >>>> > >>>>Other than that, I don't have any particular tips. I don't think it's > >>>>generally regarded as a slouch in the performance department. > >>>> > >>>>Alexis > >>>> > >>>> > >>>> > >>> > >>>yep. > >>> > >> > >>Most obvious tip - use JAVA_OPTS environment variable to set the size of > >>the JVM heap to much bigger than the default, including the option to > >>set the initial heap to the maximum too. > >> > >>Jon > >> > >> > >> > >> > >>Using Tomcat but need to do more? Need to support web services, > security? > >>Get stuff done quickly with pre-integrated technology to make your job > easier > >>Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > >>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > >>_______________________________________________ > >>Bodington-developers mailing list > >>Bod...@li... > >>https://lists.sourceforge.net/lists/listinfo/bodington-developers > >> > > > > > > > > > -- > ____________________________________ > Colin Tatham > VLE Team > Oxford University Computing Services > > http://www.oucs.ox.ac.uk/ltg/vle/ > http://bodington.org > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > -- m.cha3l |