Re: questions about tomcat 7 executor with rest services

2015-10-13 Thread Brian Millett
Thanks > On Oct 12, 2015, at 5:01 PM, Mark Thomas wrote: > > On 12 October 2015 21:26:30 BST, Brian Millett wrote: >> I’m looking for some insight / info into using executor thread pool for >> a tomcat 7 server that handles many REST services. >> Wondering

questions about tomcat 7 executor with rest services

2015-10-12 Thread Brian Millett
I’m looking for some insight / info into using executor thread pool for a tomcat 7 server that handles many REST services. Wondering if a large maxThreads in an Executor would have better through put than the same maxThreads for a normal connector? What scenario would encourage the use of an

Re: integrating Apache 2 server and Tomcat

2009-06-26 Thread Brian Millett
ewrite engine if this rule is matched RewriteRule "^.*/WEB-INF/?(.*)" - [L,F,NC] # Any jsp, jspx, do, servlet get proxied RewriteRule \.(jsp|jspx|do) "http://localhost:8080%{REQUEST_URI}"; [P,L] RewriteRule "^/(.*)/servlet/(.*)" "http://loc

Re: APR Native library on tomcat 6

2009-06-19 Thread Brian Millett
On Fri, 2009-06-19 at 02:05 -0700, lmk wrote: > --prefix=/usr/tomcat/apache-tomcat-6.0.18 I'd look where you told it to go. -- Brian Millett - [ Sinclair (re: The Line), "The Gathering"] "The sky was full of stars and every star an exploding ship...one of ours."

Re: jsvc problem with PID

2009-02-01 Thread Brian Millett
# PID=`cat /var/run/jsvc.pid` kill $PID ;; *) echo "Usage tomcat.sh start/stop" exit 1 ;; esac -- Brian Millett - [ Londo and Sinclair, "A Voice in the Wilderness I"] "If the Narns all stood together in one place and hated all at the same time,

Re: running tomcat with root user

2009-02-01 Thread Brian Millett
privileges to the home directories and > maintain a working jail. > > Can anyone suggest another alternative? I am not linux user expert so maybe > there is an obvious solution i am missing? > thanks > > http://commons.apache.org/daemon/jsvc.html works great, less fil

Re: Running Tomcat as Standalone in linux

2008-01-05 Thread Brian Millett
org.apache.catalina.startup.Bootstrap # # To get a verbose JVM #-verbose \ # To get a debug of jsvc. #-debug \ ;; stop) # # Stop Tomcat # PID=`cat /var/run/jsvc.pid` kill $PID ;; *) echo "Usage tomcat.sh start/stop" exit 1

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread Brian Millett
on http-8080 This handler scales and is quicker than the java handler. JBoss calls it JBossWeb. See http://labs.jboss.com/jbossweb/index.html for a nice graph of the performance differences between the native apr & java handlers. -- Brian Millett - [ Ivanova, "The Geometry of Sh

Re: Tomcat 6 and tomcat native

2007-09-07 Thread Brian Millett
o: http://tomcat.apache.org/download-connectors.cgi Then select "browse download area" Then go into the "native" folder. -- Brian Millett - [ Sheridan and G'Kar, "Soul Mates"] "People seem to be implying that I shouldn't get too comfortable." 'O

Re: Apache HTTP Server - Tomcat and PHP

2007-07-18 Thread Brian Millett
llum:8080 loadfactor=50 route=tomcat-c1 BalancerMember http://gollum:8081 loadfactor=50 route=tomcat-c2 BalancerMember http://gollum:8082 loadfactor=50 route=tomcat-c3 SetHandler balancer-manager Order Deny,Allow Deny from all Al

Re: questions about the classloader in tomcat 6

2007-05-21 Thread Brian Millett
n (for the appropriate classloader) I can duplicate the behavior of the older systems. That will help in migrating large installations that are running tomcat 5 to tomcat 6. Is there a need to move to the "newer" common classloader? I guess my question is if the older ways will be d

Re: questions about the classloader in tomcat 6

2007-05-21 Thread Brian Millett
Filip Hanik - Dev Lists escribío: > Brian Millett wrote: >> Filip Hanik - Dev Lists escribío: >> >>> $CATALINA_HOME/lib >>> >> >> Doesn't that defeat the CATALINA_BASE setup for multiple instances of >> tomcat? >> > I

Re: questions about the classloader in tomcat 6

2007-05-21 Thread Brian Millett
Filip Hanik - Dev Lists escribío: > $CATALINA_HOME/lib Doesn't that defeat the CATALINA_BASE setup for multiple instances of tomcat? > > Brian Millett wrote: >> Hello, I've setup my tomcat 6.0.13 with the CATALINA_HOME=/opt/tomcat and >> CATALINA_BASE=/opt/webB

pluto 1.1.3 & tomcat 6

2007-05-21 Thread Brian Millett
Anyone get pluto (or jetspeed2) working with tomcat 6? I have not figured out all of the classloading issues yet. -- Brian Millett - [] "Why are you here?" 'We were never away. For the first time, your mind is quiet enough to hear me.' "Why am I here?&qu

questions about the classloader in tomcat 6

2007-05-21 Thread Brian Millett
consistant? Do I need to add to the catalina.properties file "common.loader=${catalina.home}/lib,${catalina.home}/lib/*.jar,${catalina.base}/lib,${catalina.base}/lib/*.jar" ? What is the correct place for the "Common" jars to get loaded with a multiple tomcat instances? I