Re: Apache Tomcat/9.0.52 - New Install has 2 Tomcat Services Running?

2021-09-20 Thread Mark Eggers
Terrence, On 9/20/2021 11:49 AM, Terrence Rideau wrote: I have a new Linux install of Apache Tomcat/9.0.52.   When I start Tomcat using "/bin/systemctl start tomcat" it starts with 2 Tomcat services. My webapp runs but I have a issue importing and the application support team th

Apache Tomcat/9.0.52 - New Install has 2 Tomcat Services Running?

2021-09-20 Thread Terrence Rideau
I have a new Linux install of Apache Tomcat/9.0.52.   When I start Tomcat using "/bin/systemctl start tomcat" it starts with 2 Tomcat services.   My webapp runs but I have a issue importing and the application support team thinks it is related to my having 2 Tomcat Services. How d

Apache Tomcat/9.0.52 - New Install has 2 Tomcat Services Running?

2021-09-20 Thread Terrence Rideau
I have a new Linux install of Apache Tomcat/9.0.52.   When I start Tomcat using "/bin/systemctl start tomcat" it starts with 2 Tomcat services.   My webapp runs with one error related to import and the application support team thinks it is related to my having 2 Tomcat Services. How d

Re[2]: TomCat 9 service failed to start on Windows after TomCat 9 update

2021-01-17 Thread Igor Sluge
Hello, Thanks for your answer. Do you know is anyway to specify «Local System» user for «tomcat9.exe" //IS//» command  via cmd? >Пятница, 15 января 2021, 16:34 +03:00 от Robert Turner : >  >I would check permissions on the folders/files. The account running the >windows service may not have per

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-14 Thread Rémy Maucherat
On Thu, Mar 14, 2019 at 2:58 PM Santhosh Kumar wrote: > I have tried the same set of testcases using h2load with tomcat 9.0.17 > from github releases > (https://github.com/apache/tomcat/releases/tag/9.0.17) . > > h2load -n 100 -d /tmp/1k https://localhost:8443/ > requests: 100 total, 64 started,

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-14 Thread Santhosh Kumar
I have tried the same set of testcases using h2load with tomcat 9.0.17 from github releases (https://github.com/apache/tomcat/releases/tag/9.0.17) . h2load -n 100 -d /tmp/1k https://localhost:8443/ requests: 100 total, 64 started, 63 done, 63 succeeded, 37 failed, 37 errored, 0 timeout h2load -n

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-07 Thread Rémy Maucherat
On Thu, Mar 7, 2019 at 5:22 PM Rémy Maucherat wrote: > On Thu, Mar 7, 2019 at 2:54 PM Rémy Maucherat wrote: > >> On Thu, Mar 7, 2019 at 1:47 PM Mark Thomas wrote: >> >>> On 07/03/2019 07:40, Santhosh Kumar wrote: >>> > From some of the test cases I can safely say that tomcat is hitting >>> some

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-07 Thread Rémy Maucherat
On Thu, Mar 7, 2019 at 2:54 PM Rémy Maucherat wrote: > On Thu, Mar 7, 2019 at 1:47 PM Mark Thomas wrote: > >> On 07/03/2019 07:40, Santhosh Kumar wrote: >> > From some of the test cases I can safely say that tomcat is hitting some >> > limits, I have two test cases ran with two diff size of payl

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-07 Thread Santhosh Kumar
I have executed few test cases in both NIO and NIO2 as Mark has requested for testing NIO connector. --Below is NIO h2load -n50 -c1 -m1 --header="Content-Type:application/json" -d /home/local/santhosh/A-Test/n

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-07 Thread Rémy Maucherat
On Thu, Mar 7, 2019 at 1:47 PM Mark Thomas wrote: > On 07/03/2019 07:40, Santhosh Kumar wrote: > > From some of the test cases I can safely say that tomcat is hitting some > > limits, I have two test cases ran with two diff size of payload and > without > > any queryParams. The servlet is a empty

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-07 Thread Mark Thomas
On 07/03/2019 07:40, Santhosh Kumar wrote: > From some of the test cases I can safely say that tomcat is hitting some > limits, I have two test cases ran with two diff size of payload and without > any queryParams. The servlet is a empty servlet just returns after > receiving without doing any busi

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-06 Thread Santhosh Kumar
>From some of the test cases I can safely say that tomcat is hitting some limits, I have two test cases ran with two diff size of payload and without any queryParams. The servlet is a empty servlet just returns after receiving without doing any business side logic h2load -n100 -c1 -m1 --header="Co

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-06 Thread John Dale
When you run your test(s), does it fail after a certain period of time, or just keep on going under a certain number of requests? Also, to confirm: you're sending 1000 Byte + query strings? Are you doing anything in the server side component to verify that your parameters have been received succe

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-06 Thread Santhosh Kumar
I hope so, I used updated packages/components at the time of development. few may be outdated like tomcat native as I was using 1.2.18 while developing but 1.2.21 got released recently. On Wed, Mar 6, 2019 at 6:18 PM John Dale wrote: > Have you upgraded to the most recent release of your major v

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-06 Thread John Dale
Have you upgraded to the most recent release of your major version? If so, and if this issue still persists, it is something that the core development team might want to look at assuming they can replicate the issue. On 3/5/19, Santhosh Kumar wrote: > Sometimes more than 10x > > On Tue, Mar 5, 2

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread Santhosh Kumar
Sometimes more than 10x On Tue, Mar 5, 2019 at 10:00 PM John Dale wrote: > How many orders of magnitude slower are the post requests? > > On 3/5/19, Santhosh Kumar wrote: > > I was testing in the localhost > > > > On Tue, Mar 5, 2019 at 9:32 PM John Dale wrote: > > > >> Are you running your te

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread John Dale
How many orders of magnitude slower are the post requests? On 3/5/19, Santhosh Kumar wrote: > I was testing in the localhost > > On Tue, Mar 5, 2019 at 9:32 PM John Dale wrote: > >> Are you running your test client (h2load) on the same machine, same >> network, or is it over the net (so, like 20

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread Santhosh Kumar
I was testing in the localhost On Tue, Mar 5, 2019 at 9:32 PM John Dale wrote: > Are you running your test client (h2load) on the same machine, same > network, or is it over the net (so, like 20ms latency on each > request)? The reason I ask is that if you are local (especially), it > may queue

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread John Dale
Are you running your test client (h2load) on the same machine, same network, or is it over the net (so, like 20ms latency on each request)? The reason I ask is that if you are local (especially), it may queue up too many requests for tomcat to handle in the testing period with its thread pool. Wi

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread Santhosh Kumar
Bytes On Tue, Mar 5, 2019 at 9:28 PM John Dale wrote: > 1000-1500 MB or KB? > > On 3/4/19, Santhosh Kumar wrote: > > As per the documentation, > > > https://tomcat.apache.org/tomcat-9.0-doc/config/http.html#SSL_Support_-_SSLHostConfig > > > > this connector supports maxPostSize, by default the

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-05 Thread John Dale
1000-1500 MB or KB? On 3/4/19, Santhosh Kumar wrote: > As per the documentation, > https://tomcat.apache.org/tomcat-9.0-doc/config/http.html#SSL_Support_-_SSLHostConfig > > this connector supports maxPostSize, by default the limit is set to 2MB > > On Tue, Mar 5, 2019 at 5:09 AM John Dale wrote:

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread Santhosh Kumar
As per the documentation, https://tomcat.apache.org/tomcat-9.0-doc/config/http.html#SSL_Support_-_SSLHostConfig this connector supports maxPostSize, by default the limit is set to 2MB On Tue, Mar 5, 2019 at 5:09 AM John Dale wrote: > Does anyone know if this connector supports maxPostSize param

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread John Dale
Does anyone know if this connector supports maxPostSize parameter? On 3/4/19, Santhosh Kumar wrote: > Hi, > > We have a tomcat instance which is http2 enabled and it needs to serve > large number of requests using multiplexing, so we have configured our > instance as follows, > > sslImplementati

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread John Dale
Nice test case. Is the JVM able to garbage collect fast enough? Are you releasing the resources properly in your components as early as possible? Java VM's achieve a steady-state after a certain period of time, but I've found in some cases garbage collection doesn't keep-up with my load tests be

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread Santhosh Kumar
> Do you actually need all those values and where do they come from in the first place ? Do you understand what they do ? I was just experimenting with all available attributes related to socket and multiplexing. I have followed the documentations, https://tomcat.apache.org/tomcat-9.0-doc/config/h

Re: Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread Rémy Maucherat
On Mon, Mar 4, 2019 at 10:40 AM Santhosh Kumar wrote: > Hi, > > We have a tomcat instance which is http2 enabled and it needs to serve > large number of requests using multiplexing, so we have configured our > instance as follows, > > sslImplementationName="org.apache.tomcat.util.net > .openssl.

Http/2 : Tomcat NIO2 fails on large number of POST request with payload

2019-03-04 Thread Santhosh Kumar
Hi, We have a tomcat instance which is http2 enabled and it needs to serve large number of requests using multiplexing, so we have configured our instance as follows, This instance mainly serves concurrent POST request which will have payload of size, approx 1000

Re: Cluster more than 2 tomcat servers

2018-09-07 Thread Tim K
On Fri, Sep 7, 2018, 2:35 AM Jäkel, Guido wrote: > Dear Tim, > > maybe you can do an "independent" check using the JGroups lib stand-alone, > which offers two sets of a cluster demo. This may help to narrow down the > issue to the Tomcat setup or the "other" (OS or network configuration) > areas.

RE: Cluster more than 2 tomcat servers

2018-09-06 Thread Jäkel , Guido
Dear Tim, maybe you can do an "independent" check using the JGroups lib stand-alone, which offers two sets of a cluster demo. This may help to narrow down the issue to the Tomcat setup or the "other" (OS or network configuration) areas. Please refer to http://www.jgroups.org/tutorial-3.x/html_

Re: Cluster more than 2 tomcat servers

2018-09-06 Thread Tim K
> > Can you post your configuration(s)? Presumably, all 4 are nearly > identical. Please post one of them (minus any secrets) and describe or > copy/paste the differences for the other notes. > > - -chris > > Here is my cluster config that I got working, all 4 nodes can talk to each other after I a

Re: Cluster more than 2 tomcat servers

2018-08-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Tim, On 8/27/18 10:19, Tim K wrote: > I'm experimenting with Tomcat 9.0.8 enabling Cluster support. > I've uncommented the line for it within the server.xml. I have 4 > separate servers on different hosts, all with the same config, > except unique

Cluster more than 2 tomcat servers

2018-08-27 Thread Tim K
I'm experimenting with Tomcat 9.0.8 enabling Cluster support. I've uncommented the line for it within the server.xml. I have 4 separate servers on different hosts, all with the same config, except unique jvmRoute values. Upon startup, it appears that server1 and server4 pair up and server2 and s

Re[2]: Tomcat 7/8/9 context path restrictions/validation

2017-09-26 Thread Konstantin Ryadov
>Четверг, 21 сентября 2017, 11:27 +03:00 от Mark Thomas : > >On 20/09/17 10:47, Konstantin Ryadov wrote: >> >> Hello! >> Could you explain context path (e.g. described on >> https://tomcat.apache.org/tomcat-7.0-doc/config/context.html ) value set in >> server.xml limitations? >> Does it exist a

Re[2]: Tomcat 7.0.23 startup freezes at "INFO: Deploying web application directory ..."

2011-11-29 Thread ~ ~
so, regarding this: http://www.mail-archive.com/users@tomcat.apache.org/msg94585.html i think it's obvious it's a bug. so i was right ;) synchonization bug in 7.0.23 release. 29 ноября 2011, 14:47 от ma...@apache.org: > ~ ~ wrote: > > >Nuances: > >- no errors are displayed in logs > >- tomcat

Re[2]: Tomcat 7.0.23 startup freezes at "INFO: Deploying web application directory ..."

2011-11-29 Thread ~ ~
i''ve added inside Engine tag: and now it works, but it worked without this tag prior to 7.0.23. what has changed? 29 ноября 2011, 13:38 от Felix Schumacher : > Am 29.11.2011 10:19, schrieb ~ ~: > > Nuances: > > - no errors are displayed in logs > > - tomcat process can't be shutted down with

Re: Re[2]: Tomcat 7.0.23 startup freezes at "INFO: Deploying web application directory ..."

2011-11-29 Thread Felix Schumacher
Am 29.11.2011 12:34, schrieb ~ ~: 2. where do i find Michael Zampani's report? http://www.mail-archive.com/users@tomcat.apache.org/msg94574.html 29 ноября 2011, 14:47 от ma...@apache.org: ~ ~ wrote: >Nuances: >- no errors are displayed in logs >- tomcat process can't be shutted down with

Re[2]: Tomcat 7.0.23 startup freezes at "INFO: Deploying web application directory ..."

2011-11-29 Thread ~ ~
2. where do i find Michael Zampani's report? 29 ноября 2011, 14:47 от ma...@apache.org: > ~ ~ wrote: > > >Nuances: > >- no errors are displayed in logs > >- tomcat process can't be shutted down with shutdown.sh script > >- http request on 80 port wait forever > >- it's a mu > > ti host configu

Re: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-30 Thread Richard Levy
Hi, first of all, thanks to everyone that's replied - this is definitely the #1 source for information and expertise! We went with Rainers advice and it's worked a treat, so thanks very much. This thread can be considered resolved. Thanks Rich On Tue, Mar 29, 2011 at 11:09 PM, Stefan Mayr wro

Re: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Stefan Mayr
Am 29.03.2011 16:19, schrieb Jeffrey Janner: OK, I'm sure some of you guys can weigh in better on this than me, but: If he already has two "intelligent" load-balancers terminating the SSL, couldn't he simplify the configuration a good bit by removing the Apache servers all together? That is, co

Re: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Stefan Mayr
Hi Am 29.03.2011 12:28, schrieb Rainer Jung: On 29.03.2011 12:07, Richard Levy wrote: ... The current setup involves two intelligent load-balancers that terminates SSL then hands over to Oracle 10g. The 10g stack has custom Oracle versions of Apache which have configuration options not found in

RE: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Jeffrey Janner
> -Original Message- > From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] > Sent: Tuesday, March 29, 2011 9:17 AM > To: 'Tomcat Users List' > Subject: RE: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 > cluster > > OK, I'm sure some

RE: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Jeffrey Janner
n Tomcat as a stand-alone cluster with HTTP/HTTPS connectors instead of AJP? -- Jeff > -Original Message- > From: Richard Levy [mailto:rich@gmail.com] > Sent: Tuesday, March 29, 2011 5:07 AM > To: users@tomcat.apache.org > Subject: Simulating HTTPS in terminated S

Re: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Rainer Jung
Additional remark: I still think you should try my first suggestion, because overall the config is much simpler But if for some reason you need the setup like you tried already, you can trick mod_jk to use the right worker: worker.tomcatSSL1.domain=tomcat1 worker.tomcatSSL2.domain=tomcat2 wil

Re: Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Rainer Jung
On 29.03.2011 12:07, Richard Levy wrote: Hi all, First of all, sorry for the long post, but the reasoning and architecture requires explanation to get the full understanding of the situation. We are currently migrating our website from Oracle 10g to Apache 2/Tomcat 6.0.29. The site itself is

Simulating HTTPS in terminated SSL/Apache 2/Tomcat 6 cluster

2011-03-29 Thread Richard Levy
Hi all, First of all, sorry for the long post, but the reasoning and architecture requires explanation to get the full understanding of the situation. We are currently migrating our website from Oracle 10g to Apache 2/Tomcat 6.0.29. The site itself is a set of pages where customers select what

Re: apache 2 + tomcat 6 virtualhost question

2010-05-27 Thread Rainer Jung
On 27.05.2010 05:11, Caldarale, Charles R wrote: From: Bithost Ltda. [mailto:bithost.ch...@gmail.com] Subject: Re: apache 2 + tomcat 6 virtualhost question Well it seems that such is for only one domain, and i will be deploying more than one, thats why i cant use ROOT Then declare multiple

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Bithost Ltda.
El 26-05-10 23:11, Caldarale, Charles R escribió: From: Bithost Ltda. [mailto:bithost.ch...@gmail.com] Subject: Re: apache 2 + tomcat 6 virtualhost question Well it seems that such is for only one domain, and i will be deploying more than one, thats why i cant use ROOT Then

RE: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Caldarale, Charles R
> From: Bithost Ltda. [mailto:bithost.ch...@gmail.com] > Subject: Re: apache 2 + tomcat 6 virtualhost question > > Well it seems that such is for only one domain, and i will be deploying > more than one, thats why i cant use ROOT Then declare multiple elements in Tomcat, ea

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Hassan Schroeder
On Wed, May 26, 2010 at 4:29 PM, Bithost Ltda. wrote: > I appreciate this very helpful guide, i have some of these configs already > in motion (got the ajp connector port, workers.properties and mod_jk > included in apache), but what if i have more than 2 sites which need the > same way of deploy

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Borut Hadžialić
In that case you can have one tomcat instance per application. Each application can run inside its own tomcat process and have different ajp port, mod_jk worker and apache virtual host. On Thu, May 27, 2010 at 1:29 AM, Bithost Ltda. wrote: > El 26-05-10 18:31, Borut Hadžialić escribió: >> >> Hi P

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Bithost Ltda.
El 26-05-10 18:31, Borut Hadžialić escribió: Hi Patricio, try this: 1. Redeploy your app in tomcat so it shows at http://mydomain:8080/ instead of http://mydomain:8080/myapp How you do this depends on how you deployed the app in the first place - a) if you deployed a myapp.war and use autode

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Borut Hadžialić
Small mistake - put worker.myapp.port=8009 instead of worker.myapp.port=8109 (port needs to be the same as the one in tomcat's conf/server.xml wrote: > Hi Patricio, try this: > > 1. Redeploy your app in tomcat so it shows at http://mydomain:8080/instead of > http://mydomain:8080/myapp > > How y

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Borut Hadžialić
Hi Patricio, try this: 1. Redeploy your app in tomcat so it shows at http://mydomain:8080/ instead of http://mydomain:8080/myapp How you do this depends on how you deployed the app in the first place - a) if you deployed a myapp.war and use autodeploy, then rename it to ROOT.war and redeploy it

Re: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Bithost Ltda.
El 26-05-10 17:39, Caldarale, Charles R escribió: From: Bithost Ltda. [mailto:bithost.ch...@gmail.com] Subject: apache 2 + tomcat 6 virtualhost question what i need is that when i type www.mydomain.com it goes to my app and stays with the mydomain.com url. The Tomcat side

RE: apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Caldarale, Charles R
> From: Bithost Ltda. [mailto:bithost.ch...@gmail.com] > Subject: apache 2 + tomcat 6 virtualhost question > > what i need is that when i type www.mydomain.com it goes > to my app and stays with the mydomain.com url. The Tomcat side of the configuration is covered i

apache 2 + tomcat 6 virtualhost question

2010-05-26 Thread Bithost Ltda.
Hello I'm new to tomcat and i have some experience with apache, i have a debian server with apache 2.2 + mod_jk and tomcat 6 server. My doc root for my site is /home/mydomain/htdocs and i have a site which is using a WAR which i deployed it via the tomcat manager. So far if i go to http://myd

Re: 2 tomcat beginer problems

2007-10-29 Thread Grzegorz Borkowski
Why do you want to call doGet on init? it looks like invalid approach. You hava init method for this, or application listeners; doGet is for handling HTTP requests, not for initializing servler... G. loredana loredana wrote: 1. I have installed tomcat 6.0.14. Everytime I make a modification in

RE: 2 tomcat beginer problems

2007-10-29 Thread Auke Noppe
:23 Aan: users@tomcat.apache.org Onderwerp: 2 tomcat beginer problems 1. I have installed tomcat 6.0.14. Everytime I make a modification in a jsp page I either have to rename the file or delete the jsp from work directory in order to see the modifications. How can I make jsp reload automatically? So

2 tomcat beginer problems

2007-10-29 Thread loredana loredana
1. I have installed tomcat 6.0.14. Everytime I make a modification in a jsp page I either have to rename the file or delete the jsp from work directory in order to see the modifications. How can I make jsp reload automatically? So that if I make a modifications in my jsp, a simple refresh page w

Re: 2 Tomcat

2007-10-14 Thread Markus Schönhaber
lissette wrote: > But I have other question, is neccesary to change redirectPort, > topLostenPort, mcastPort..? See the docs to get an idea what these are good for and decide for yourself if/how you have to set them. > And I see that a AJP 1.3 Connector on port is 8009 is correct that I put my >

Re: 2 Tomcat

2007-10-14 Thread lissette
Hello! Thanks my 2 tomcat running Ok. But I have other question, is neccesary to change redirectPort, topLostenPort, mcastPort..? And I see that a AJP 1.3 Connector on port is 8009 is correct that I put my port 8009 or I can use other port? Thanks -- View this message in context: http

Re: 2 Tomcat

2007-10-14 Thread Markus Schönhaber
lissette wrote: > What ports your recommending? I only change the ports that appears in > server.xml or I need change more choices. All ports Tomcat binds to are configured in server.xml. In my previous post I said that you shouldn't forget to make sure that also the shutdown ports of your Tomc

Re: 2 Tomcat

2007-10-14 Thread lissette
Thanks for your response. What ports your recommending? I only change the ports that appears in server.xml or I need change more choices. Thanks veru much. Regards. -- View this message in context: http://www.nabble.com/2-Tomcat-tf4618234.html#a13198987 Sent from the Tomcat - User mailing

Re: 2 Tomcat

2007-10-13 Thread Markus Schönhaber
lissette wrote: > I would like to put to run two tomcat at the same time ( tomcat 5.5 and > tomcat 5.0 jwsdp), Is it possible? Yes. > I try to change the port of one tomcat (8080 for 8009) but do not working > the two tomcat at time. You have to make sure that *all* ports are different. Espec

2 Tomcat

2007-10-13 Thread lissette
://www.nabble.com/2-Tomcat-tf4618234.html#a13189449 Sent from the Tomcat - User mailing list archive at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: 2 Tomcat instances

2007-09-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andrew, Andrew Hole wrote: > I've two tomcat instantes and an apache web server with mod_jk. Mod_jk > balance request to each tomcat. > Think on following situation; > - TomcatA and TomcatB up > - I make a request to Apache that redirects to TomcatA.

RE: 2 Tomcat instances

2007-09-17 Thread Gerhardus.Geldenhuis
can issue a kill -3 for the tomcat process to dump your applications status. Regards > -Original Message- > From: Andrew Hole [mailto:[EMAIL PROTECTED] > Sent: 17 September 2007 14:54 > To: Tomcat Users List > Subject: 2 Tomcat instances > > Hello! > > I

2 Tomcat instances

2007-09-17 Thread Andrew Hole
Hello! I've two tomcat instantes and an apache web server with mod_jk. Mod_jk balance request to each tomcat. Think on following situation; - TomcatA and TomcatB up - I make a request to Apache that redirects to TomcatA. I'm editing text on JSP (lot of input texts). In this moment TomcatA craches.

[OT] Re: Re[2]: Tomcat Server CPU utilization goes upto 400%

2007-06-15 Thread Ronald Klop
Install this: http://www.freshports.org/games/wtf/ (There is probably a Linux port somewhere also) $ wtf afaik AFAIK: as far as I know On Fri Jun 15 10:21:37 CEST 2007 Tomcat Users List wrote: ?AFAIK? What it mean? > AFAIK 400% of zero is still zero :D > ?

Re[2]: Tomcat Server CPU utilization goes upto 400%

2007-06-15 Thread 吴熊敏
“AFAIK” What it mean? > AFAIK 400% of zero is still zero :D > 吴熊敏 <[EMAIL PROTECTED]> - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re[2]: Tomcat Server CPU utilization goes upto 400%

2007-06-15 Thread 吴熊敏
400%? what do you mean?? On Thu, 14 Jun 2007 21:14:45 +0200 Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: > man, I need to get a CPU like that, that can actually work 4 times its > max capacity :) > > Filip 吴熊敏 <[EMAIL PROTECTED]> --

loadbalancer + 2 tomcat

2007-04-19 Thread andrew00x
27;t moves request to other instance. What can I add to workers.properties to fix this problem? Thanks! And I am sorry about my English! -- View this message in context: http://www.nabble.com/loadbalancer-%2B-2-tomcat-tf3605763.html#a10073935 Sent from the Tomcat - User mailing list archive at

RE: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-27 Thread Nelson, Tracy
| From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] | Subject: OT: Re: Solaris 10 Apache 2 Tomcat mod_jk | | What's the story on Solaris? You need to buy C Compiler? I think they have | some Developer's Studio, but I haven't checked licensing. Solaris 10 comes with gcc and frie

Re: OT: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread Rainer Jung
wrote: >> Date sent: Fri, 24 Nov 2006 14:26:34 -0800 (PST) >> From: Nikola Milutinovic <[EMAIL PROTECTED]> >> Subject:OT: Re: Solaris 10 Apache 2 Tomcat mod_jk >> To: Tomcat Users List >> Send re

Re: OT: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread William Bonnet
Hi What's the story on Solaris? You need to buy C Compiler? I think they have some Developer's Studio, but I haven't checked licensing. gnu gcc works great on solaris And Sun Studio 11 can be freely downloaded fron Sun's website Regards William -- William http://ww

Re: OT: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread ben short
TED]> Subject:OT: Re: Solaris 10 Apache 2 Tomcat mod_jk To: Tomcat Users List Send reply to: Tomcat Users List > > Installing from source is super simple. It's a pretty basic "untar, > > configure, make, install" kinda pa

Re: OT: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread Steve Ochani
Date sent: Fri, 24 Nov 2006 14:26:34 -0800 (PST) From: Nikola Milutinovic <[EMAIL PROTECTED]> Subject:OT: Re: Solaris 10 Apache 2 Tomcat mod_jk To: Tomcat Users List Send reply to: Tomcat Users List > > Ins

OT: Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread Nikola Milutinovic
> Installing from source is super simple. It's a pretty basic "untar, > configure, make, install" kinda package, and always results in the > binary that is appropriate for your setup. You just need to make sure > that you have a C compiler handy (which, as I recall, Solaris does not > always have).

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread ben short
Chris, Are these not binary releases then? http://www.mirrorservice.org/sites/ftp.apache.org/tomcat/tomcat-connectors/jk/binaries/ On 11/24/06, Christopher Schultz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben, ben short wrote: > Chris, > > Um, a good question.

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben, ben short wrote: > Chris, > > Um, a good question. I thought that mod_jk was only available as > source and pkg_get -i ap2_mod_jk seemed like an easier option. Altough > it turned out to be a headache. > > If i get time I might try out the bina

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread ben short
Chris, Um, a good question. I thought that mod_jk was only available as source and pkg_get -i ap2_mod_jk seemed like an easier option. Altough it turned out to be a headache. If i get time I might try out the binary from apache. Ben On 11/24/06, Christopher Schultz <[EMAIL PROTECTED]> wrote:

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben, ben short wrote: > Rainer, > After looking at the package on the blastwave site i noticed it has > Apache 2.2 prefork MPM as a dependancy. Why are you using a 3rd-party distribution of mod_jk instead of the official one? I didn't even though 3r

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-22 Thread ben short
Rainer, I did a find for apachectl and it finds it in three locations /usr/apache/bin/apachectl /usr/apache2/bin/apachectl /opt/csw/apache2/sbin/apachectl The first is an apache 1.3 install, the second an apache 2.0.52 install the the third is an apache 2.2.3 install. After looking at the pack

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-22 Thread Rainer Jung
ben short schrieb: > Rainer, > > Running the svcadm enable apache2 command without the LoadModule > starts apache correctly. > > Someone else pointed out that using svcs -xv will show me the logfile > I need to look at, and I see the following error.. > > [ Nov 22 19:35:06 Method "start" exited

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-22 Thread ben short
Rainer, Running the svcadm enable apache2 command without the LoadModule starts apache correctly. Someone else pointed out that using svcs -xv will show me the logfile I need to look at, and I see the following error.. [ Nov 22 19:35:06 Method "start" exited with status 1 ] [ Nov 22 19:35:06 Ex

Re: Solaris 10 Apache 2 Tomcat mod_jk

2006-11-22 Thread Rainer Jung
Hi Ben, before you integrate your apache into Solaris SMF (service management facility) you should first check, if apache does really work. So begin by using the usual apachectl script and once you debugged your configuration and the functionality looks good, you can use SMF to reliably star

Solaris 10 Apache 2 Tomcat mod_jk

2006-11-22 Thread ben short
Hi, Sorry if that this is a bit off topic but i figured someone might have some experience. I'm trying to get Apache 2 to use mod_jk in a Solaris 10 Zone. I have installed the ap2_mod_jk package from blastwave with no errors. I added the following line to the correct httpd.conf LoadModule jk_mo

Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-13 Thread Rainer Jung
t up an environment with Apache2, mod_jk and 2 Tomcat instances. Apache2 / mod_jk will route requests to Tomcat1 and Tomcat2 (load balancing). How can I install a log analysis tool like AWstats into this environment? I mean which log files should I use, Apache2-log, Tomcat1-log or

Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-12 Thread Marc Richards
requests. > > -Tim > > Frank Niedermann wrote: > > Hello, > > > > for a project I had to set up an environment with > Apache2, mod_jk and 2 Tomcat > > instances. Apache2 / mod_jk will route requests to > Tomcat1 and Tomcat2 (load > > balancing). > > >

Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-12 Thread Tim Funk
Hello, for a project I had to set up an environment with Apache2, mod_jk and 2 Tomcat instances. Apache2 / mod_jk will route requests to Tomcat1 and Tomcat2 (load balancing). How can I install a log analysis tool like AWstats into this environment? I mean which log files should I use, Apache

Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-11 Thread Frank Niedermann
Hello, for a project I had to set up an environment with Apache2, mod_jk and 2 Tomcat instances. Apache2 / mod_jk will route requests to Tomcat1 and Tomcat2 (load balancing). How can I install a log analysis tool like AWstats into this environment? I mean which log files should I use, Apache2

Re: 2 tomcat on the same PC

2006-08-24 Thread Yan Bai
Thanks, for all your kind helps. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: 2 tomcat on the same PC

2006-08-24 Thread Peter Crowther
> From: Yan Bai [mailto:[EMAIL PROTECTED] > what does CATALINA_BASE mean here? I only setup CATALINA_HOME as a > system environmental variable, don't know which directory shall > $c_base point to. It's where the Tomcat instance's config files, work files and webapps live. If you don't separate o

RE: 2 tomcat on the same PC

2006-08-23 Thread Roger Alix-Gaudreau
ame. You might also be interested in reading through the batch file itself, for more details. Roger Alix-Gaudreau Manhattan Associates, Inc. -Original Message- From: Yan Bai [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 2:56 PM To: Tomcat Users List Subject: Re: 2 tomcat

Re: 2 tomcat on the same PC

2006-08-23 Thread Yan Bai
mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 10:31 AM To: Tomcat Users List Subject: Re: 2 tomcat on the same PC It doesn't work in my case. even after changed the port numbers in one server.xml. I have both T4.1 and T5.5 installed on win XP. becoz CATALINA_HOME point to where

Re: 2 tomcat on the same PC

2006-08-23 Thread Yan Bai
Thanks Peter. what does CATALINA_BASE mean here? I only setup CATALINA_HOME as a system environmental variable, don't know which directory shall $c_base point to. On 8/23/06, Peter Crowther <[EMAIL PROTECTED]> wrote: > From: Yan Bai [mailto:[EMAIL PROTECTED] > It doesn't work in my case. even

RE: 2 tomcat on the same PC

2006-08-23 Thread Peter Crowther
> From: Yan Bai [mailto:[EMAIL PROTECTED] > It doesn't work in my case. even after changed the port numbers in one > server.xml. > I have both T4.1 and T5.5 installed on win XP. > becoz CATALINA_HOME point to where T5 is, even explicitly call T4 > 'startup' script, T5 server is started. > Any othe

RE: 2 tomcat on the same PC

2006-08-23 Thread Robert Harper
user for each of them where the user specifies a different environment. Robert S. Harper Information Access Technology, Inc. -Original Message- From: Yan Bai [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 10:31 AM To: Tomcat Users List Subject: Re: 2 tomcat on the same PC It

Re: 2 tomcat on the same PC

2006-08-23 Thread Yan Bai
It doesn't work in my case. even after changed the port numbers in one server.xml. I have both T4.1 and T5.5 installed on win XP. becoz CATALINA_HOME point to where T5 is, even explicitly call T4 'startup' script, T5 server is started. Any other tricks to make both work? On 8/18/06, Peter Crowthe

RE: 2 tomcat on the same PC

2006-08-18 Thread Peter Crowther
> From: tamri [mailto:[EMAIL PROTECTED] > d:/tomcat_server_1/tomcat_5/bin/tomcat5w.exe I don't know for sure, but tomcat5w.exe *may* look for other Tomcats running and refuse to start if it sees one. I suggest using startup.bat instead. - Peter -

  1   2   >