Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-13 Thread Pid
On 13/09/2011 13:19, Darius D. wrote:
> 
> Hi,
> 
> well the problem is that we have the same problem, real strange NPEs in
> servlets.
> 
> It is more pronounced when using dedicated thread executor, moving to
> threads provided by connector itself (with maxThreads="500" option using NIO
> ) seems to be lowering counts of errors. You could try commenting out the
> executor pool and using thread pool provided by connector to see if it helps
> your case.
> 
> 
> Atm we are seeing 3 modes of failure in our tomcat setup ( nginx reverse
> proxy -> tomcat with NIO connector )
> 
> 
> 1) 
> SEVERE: Error finishing response
> java.lang.NullPointerException
> 
> and/or
> 
> SEVERE: Error processing request
> java.lang.NullPointerException
> 
> in logs. ( could be some app problem, but still shady, as no stack trace is
> given, like if exception object is gone itself??? )
> 
> 2) Sometimes we get 502 like Rakesh in servlets that should be fine ( result
> of NPE in real strange places )
> 
> 3) And most scary ones are the following:
> 
> 2011 09 13 14:18:20.568 WARN  Servlet  - error response: error=no action
> query: [type=groupsChangedAction&v=1315912033175] content type:null
> protocol: HTTP/1.0 length:-1 character encoding: null  GET
> 2011 09 13 14:18:20.937 WARN  Servlet  - error response: error=no action
> query: [type=groupsChangedAction&v=1315912699092] content type:null
> protocol: HTTP/1.0 length:-1 character encoding: null  GET
> 
> In tomcat access log they are shown as:
> 127.0.0.1 - - [13/Sep/2011:14:18:20 +0300] "GET
> /ourapp/servlet/Servlet?type=groupsChangedAction&v=1315912033175 HTTP/1.0"
> 200 15
> 127.0.0.1 - - [13/Sep/2011:14:18:20 +0300] "GET
> /ourapp/servlet/Servlet?type=groupsChangedAction&v=1315912699092 HTTP/1.0"
> 200 15
> 
> So as you can see, tomcat got that GET reqest with type and v params like it
> gets and processes thousands others.
> 
> Servlet code looks like:
> private void doProcess(HttpServletRequest request, HttpServletResponse
> response) throws IOException {
>   HttpSession session = request.getSession();
>   if (session != null) {
> 
>   String action = request.getParameter("type");
>   logger.debug("action: " + action);
>   
>   if (action == null) { 
> 
>   printError(request, response,"error=no action");
> 
> 
>   private void printError(HttpServletRequest request, HttpServletResponse
> response, String error) throws IOException {
>   logger.warn("error response: " + error + " ip: "  +
> request.getRemoteAddr() + " query: [" + request.getQueryString() + "]" + "
> content type:" + request.getContentType() + " protocol: " +
> request.getProtocol() +  " length:" + request.getContentLength() + "
> character encoding: " + request.getCharacterEncoding() + "  " +
> request.getMethod());
>   
>   response.setContentType("text/plain");
>   PrintWriter out = response.getWriter();
>   out.print(error);
>   out.flush();
>   out.close();
>   }
> 
> It happens several times in a day in bursts ( GC collecting something?).
> 
> 
> So really puzzling and random error, tomcat got proper request as shown in
> access logs (and even request.getQueryString() is valid :) ) , processed
> request from same user 5s ago, will process one more 5s later, but somehow
> request is NULL??? Now we handle it by retrying, but such random NULL is
> fatal for other servlets and services that throw NPEs and it seems that some
> tomcat code is affected too with (1).
> 
> 
> I'd grateful if some smart guys could look into this problem and willing to
> provide any other info.
> 
> BR,
> 
> Darius.
> 
> 
> P.S. this is kinda thread hijack, but i feel the root cause of these Y
> errors in  requests are the same.
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> rakesh k-3 wrote:
>>
>> Hi Darius
>>
>> Thanks for reviewing the configurations.
>>
>> in our catalina.out we had the stack trace which you had menitoned.
>>
>> please find the stack trace information which has been requested.
>> at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>> at java.lang.reflect.Method.invoke(Method.java:597)
>> at
>> org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
>> at
>> org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
>> at
>> org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
>> at
>> org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114)
>> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:173)
>> at
>> org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:167)
>> at
>> org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:142)
>> a

Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-13 Thread Darius D.
vlet.java:142)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> at
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
> at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
> at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
> at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> at
> org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:354)
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
> at java.lang.Thread.run(Thread.java:619)
> 
> 
> Darius, if you require more information, i ca provide you the details.
> 
> Regards
> Rakesh
> 
> 
> On Mon, Sep 12, 2011 at 5:49 PM, Darius D.  wrote:
> 
>>
>>
>> rakesh k-3 wrote:
>> >
>> > Hi Christopher
>> >
>> > thanks for viewing m configuration ..as mentioned we are using http
>> > connectors in my configuration not AJP.
>> >
>> > and here are my  configuration details.
>> >
>> > Apache tomcat configuration (server.xml)
>> >
>> > > > maxThreads="150" minSpareThreads="4"/>
>> > > >port="8080" protocol="HTTP/1.1"
>> >connectionTimeout="2"
>> >redirectPort="8443" />
>> >
>> > Apache httpd configuration Httpd.conf.
>> >
>> > ProxyPass / http://localhost:8080 route=msf1
>> >
>> > Regards
>> > Rakesh
>> >
>> >
>> >
>>
>>
>> Hi,
>>
>> can you check your catalina.out to see if there is something like:
>>
>> org.apache.coyote.http11.AbstractHttp11Processor endRequest
>> SEVERE: Error finishing response
>> java.lang.NullPointerException
>>
>> or
>>
>> SEVERE: Error processing request
>> java.lang.NullPointerException
>>
>> without any further details / stack traces ?
>>
>> Darius.
>>
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Apache-Tomcat-unable-to-send-the-request.-tomcat-throwing-502-Gate-Way-error-tp32248578p32447382.html
>> Sent from the Tomcat - User mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
>> For additional commands, e-mail: users-h...@tomcat.apache.org
>>
>>
> 
> 

-- 
View this message in context: 
http://old.nabble.com/Apache-Tomcat-unable-to-send-the-request.-tomcat-throwing-502-Gate-Way-error-tp32248578p32455189.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-13 Thread rakesh k
Hi Darius

Thanks for reviewing the configurations.

in our catalina.out we had the stack trace which you had menitoned.

please find the stack trace information which has been requested.
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
at
org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
at
org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at
org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:173)
at
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:167)
at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:142)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at
org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:354)
at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)


Darius, if you require more information, i ca provide you the details.

Regards
Rakesh


On Mon, Sep 12, 2011 at 5:49 PM, Darius D.  wrote:

>
>
> rakesh k-3 wrote:
> >
> > Hi Christopher
> >
> > thanks for viewing m configuration ..as mentioned we are using http
> > connectors in my configuration not AJP.
> >
> > and here are my  configuration details.
> >
> > Apache tomcat configuration (server.xml)
> >
> >  > maxThreads="150" minSpareThreads="4"/>
> >  >port="8080" protocol="HTTP/1.1"
> >connectionTimeout="2"
> >redirectPort="8443" />
> >
> > Apache httpd configuration Httpd.conf.
> >
> > ProxyPass / http://localhost:8080 route=msf1
> >
> > Regards
> > Rakesh
> >
> >
> >
>
>
> Hi,
>
> can you check your catalina.out to see if there is something like:
>
> org.apache.coyote.http11.AbstractHttp11Processor endRequest
> SEVERE: Error finishing response
> java.lang.NullPointerException
>
> or
>
> SEVERE: Error processing request
> java.lang.NullPointerException
>
> without any further details / stack traces ?
>
> Darius.
>
>
> --
> View this message in context:
> http://old.nabble.com/Apache-Tomcat-unable-to-send-the-request.-tomcat-throwing-502-Gate-Way-error-tp32248578p32447382.html
> Sent from the Tomcat - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-12 Thread Darius D.


rakesh k-3 wrote:
> 
> Hi Christopher
> 
> thanks for viewing m configuration ..as mentioned we are using http
> connectors in my configuration not AJP.
> 
> and here are my  configuration details.
> 
> Apache tomcat configuration (server.xml)
> 
>  maxThreads="150" minSpareThreads="4"/>
> port="8080" protocol="HTTP/1.1"
>connectionTimeout="2"
>redirectPort="8443" />
> 
> Apache httpd configuration Httpd.conf.
> 
> ProxyPass / http://localhost:8080 route=msf1
> 
> Regards
> Rakesh
> 
> 
> 


Hi,

can you check your catalina.out to see if there is something like:

org.apache.coyote.http11.AbstractHttp11Processor endRequest
SEVERE: Error finishing response
java.lang.NullPointerException

or 

SEVERE: Error processing request
java.lang.NullPointerException

without any further details / stack traces ?

Darius.


-- 
View this message in context: 
http://old.nabble.com/Apache-Tomcat-unable-to-send-the-request.-tomcat-throwing-502-Gate-Way-error-tp32248578p32447382.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-11 Thread rakesh k
Hi Christopher

thanks for viewing m configuration ..as mentioned we are using http
connectors in my configuration not AJP.

and here are my  configuration details.

Apache tomcat configuration (server.xml)




Apache httpd configuration Httpd.conf.

ProxyPass / http://localhost:8080 route=msf1


Regards
Rakesh



On Wed, Sep 7, 2011 at 12:39 AM, Christopher Schultz <
ch...@christopherschultz.net> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Rakesh,
>
> On 9/6/2011 7:39 AM, rakesh k wrote:
> > Can you brief me on that which part my configuration is insane.
>
> The configurations you are posting do not match your own assertions
> about your configuration.
>
> To wit: you think you have an AJP processor, yet you have configured
> an HTTP processor.
>
> > and can you please let me what are the things do you require from
> > me, so that it can help you out where the configurations are
> > disorder.
>
> What connectors do you want to configure? What is your current
> configuration?
>
> - -chris
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (MingW32)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAk5mb/0ACgkQ9CaO5/Lv0PBp1ACgkrJuX6BQI9C60Nz3W5jkW6GV
> MEYAn2xN8Mgc+fC5gsykU3pu2RYQpHoh
> =vYeV
> -END PGP SIGNATURE-
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Rakesh,

On 9/6/2011 7:39 AM, rakesh k wrote:
> Can you brief me on that which part my configuration is insane.

The configurations you are posting do not match your own assertions
about your configuration.

To wit: you think you have an AJP processor, yet you have configured
an HTTP processor.

> and can you please let me what are the things do you require from
> me, so that it can help you out where the configurations are
> disorder.

What connectors do you want to configure? What is your current
configuration?

- -chris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk5mb/0ACgkQ9CaO5/Lv0PBp1ACgkrJuX6BQI9C60Nz3W5jkW6GV
MEYAn2xN8Mgc+fC5gsykU3pu2RYQpHoh
=vYeV
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-06 Thread rakesh k
Hi Christopher Schultz

Thanks for replying back to my question.

can you brief me on that which part my configuration is insane.

and can you please let me what are the things do you require from me, so
that it can help you out where the configurations are disorder.

so that i can provide you the entire information you require from my side.

Regards
Rakesh

On Thu, Aug 25, 2011 at 9:36 PM, Christopher Schultz <
ch...@christopherschultz.net> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Rakesh,
>
> On 8/16/2011 3:08 AM, rakesh k wrote:
> >  > protocol="HTTP/1.1" connectionTimeout="2" redirectPort="8443"
> > />
>
> Still not an AJP connector.
>
> Something tells me that your configuration is completely insane.
>
> - -chris
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (MingW32)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAk5Wcv8ACgkQ9CaO5/Lv0PCDLACdHdT6nVOla/dy1w6OoXbSYAii
> 0gkAoLdNBfVn8bUVhGDbCh3fQb4g8275
> =hEvv
> -END PGP SIGNATURE-
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-09-06 Thread rakesh k
Hi Konstantin Kolinko

Thanks for replying back.

we are using *httpd-2.2.3-43 (*Apache HTTPD) version, we are not using
mod_jk . we are using mod_proxy
and please find  the apache httpd configuration we use

*ProxyPass / http://localhost:8082 route=msf1*


Regards
Rakesh

On Thu, Aug 25, 2011 at 9:03 PM, Konstantin Kolinko
wrote:

> 2011/8/12 rakesh k :
> > I am using Apache tomcat 6.0.18 version
>
> Can you upgrade? There is 3 years worth of fixes between 6.0.18 and 6.0.33.
>
> What version of Apache HTTPD is in front of Tomcat? How it is configured?
> Do you use mod_jk? What version?
>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Rakesh,

On 8/16/2011 3:08 AM, rakesh k wrote:
>  protocol="HTTP/1.1" connectionTimeout="2" redirectPort="8443"
> />

Still not an AJP connector.

Something tells me that your configuration is completely insane.

- -chris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk5Wcv8ACgkQ9CaO5/Lv0PCDLACdHdT6nVOla/dy1w6OoXbSYAii
0gkAoLdNBfVn8bUVhGDbCh3fQb4g8275
=hEvv
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-25 Thread Konstantin Kolinko
2011/8/12 rakesh k :
> I am using Apache tomcat 6.0.18 version

Can you upgrade? There is 3 years worth of fixes between 6.0.18 and 6.0.33.

What version of Apache HTTPD is in front of Tomcat? How it is configured?
Do you use mod_jk? What version?

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-24 Thread rakesh k
Hi Pid

Please find the details that you had asked.

1) We are using *java 1.6.0_18 and the OS is centos*
*2) *we send requests in parallel
3)  5 concurrent requests are sent to tomcat instance.

Can you please help us regarding this, we are blocked at this point . can
you please help. where as we can move ahead..and fix the issue.

Regards
Rakesh


On Thu, Aug 18, 2011 at 2:58 PM, rakesh k  wrote:

> Hi Pid
>
> Thank you very much for replying back or this question.
>
> Please find the details that you had asked.
>
> 1) We are using *java 1.6.0_18 and the OS is centos*
> *2) *we send requests in parallel
> 3)  5 concurrent requests are sent to tomcat instance.
>
> Regards
> Rakesh
>
> On Wed, Aug 17, 2011 at 8:52 PM, Pid  wrote:
>
>> On 16/08/2011 08:08, rakesh k wrote:
>> > Hi Andre
>> >
>> > Sorry for this, I had pasted the entire xml file.. I am hereby providing
>> the
>> > server.xml with removing the commented parts.
>>
>> I've edited the below a little.
>>
>> > > > maxThreads="150" minSpareThreads="4"/>
>> >
>> > > >port="8082" protocol="HTTP/1.1"
>> >connectionTimeout="2"
>> >redirectPort="8443" />
>> >
>>
>>   ProxyPass / balancer://msf/ stickysession=JSESSIONID|**jsessionid
>> >
>> > 
>> >  BalancerMember http://localhost:8082 route=msf1
>> > 
>>
>> >> testing we are sending 5000 requests at a time, where we are getting
>> 4-5
>> >>  Bad gate way error.
>>
>> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> >>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed
>> to
>> >>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>> >>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection
>> >>>
>> >> abort:
>>
>> I note that you are using 127.0.0.3 as a localhost address.
>> What OS are you using, & what exact version of Java?
>>
>> You state that you are sending 5000 requests at a time.
>> Do you mean in parallel or sequentially?
>>
>> How many concurrent requests per Tomcat are being sent during the test?
>>
>>
>> p
>>
>>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-18 Thread rakesh k
Hi Pid

Thank you very much for replying back or this question.

Please find the details that you had asked.

1) We are using *java 1.6.0_18 and the OS is centos*
*2) *we send requests in parallel
3)  5 concurrent requests are sent to tomcat instance.

Regards
Rakesh

On Wed, Aug 17, 2011 at 8:52 PM, Pid  wrote:

> On 16/08/2011 08:08, rakesh k wrote:
> > Hi Andre
> >
> > Sorry for this, I had pasted the entire xml file.. I am hereby providing
> the
> > server.xml with removing the commented parts.
>
> I've edited the below a little.
>
> >  > maxThreads="150" minSpareThreads="4"/>
> >
> >  >port="8082" protocol="HTTP/1.1"
> >connectionTimeout="2"
> >redirectPort="8443" />
> >
>
>   ProxyPass / balancer://msf/ stickysession=JSESSIONID|**jsessionid
> >
> > 
> >  BalancerMember http://localhost:8082 route=msf1
> > 
>
> >> testing we are sending 5000 requests at a time, where we are getting 4-5
> >>  Bad gate way error.
>
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed
> to
> >>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> >>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection
> >>>
> >> abort:
>
> I note that you are using 127.0.0.3 as a localhost address.
> What OS are you using, & what exact version of Java?
>
> You state that you are sending 5000 requests at a time.
> Do you mean in parallel or sequentially?
>
> How many concurrent requests per Tomcat are being sent during the test?
>
>
> p
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-17 Thread Pid
On 16/08/2011 08:08, rakesh k wrote:
> Hi Andre
> 
> Sorry for this, I had pasted the entire xml file.. I am hereby providing the
> server.xml with removing the commented parts.

I've edited the below a little.

>  maxThreads="150" minSpareThreads="4"/>
> 
> port="8082" protocol="HTTP/1.1"
>connectionTimeout="2"
>redirectPort="8443" />
> 

  ProxyPass / balancer://msf/ stickysession=JSESSIONID|**jsessionid
>
> 
>  BalancerMember http://localhost:8082 route=msf1
> 

>> testing we are sending 5000 requests at a time, where we are getting 4-5
>>  Bad gate way error.

> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection
>>>
>> abort:

I note that you are using 127.0.0.3 as a localhost address.
What OS are you using, & what exact version of Java?

You state that you are sending 5000 requests at a time.
Do you mean in parallel or sequentially?

How many concurrent requests per Tomcat are being sent during the test?


p



signature.asc
Description: OpenPGP digital signature


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-16 Thread rakesh k
Hi Andre

Sorry for this, I had pasted the entire xml file.. I am hereby providing the
server.xml with removing the commented parts.







  

  

  
  

  


  


  











  


  



  

  



Regards
Rakesh

On Tue, Aug 16, 2011 at 12:14 PM, André Warnier  wrote:

> You seem to have missed the "Please remove all of the commented parts.."
> part of the request.
>
>
> rakesh k wrote:
>
>> Hi
>>
>>
>> Thanks for replying for on my question.
>> Please find the details below, you had requested. sorry for troubling you
>> much , i ma hereby providing the details of server.xml below.
>>
>>
>> 
>> 
>> 
>> 
>>
>>  
>>  > SSLEngine="on" />
>>  
>>  
>>  
>>  > />
>>  > className="org.apache.**catalina.mbeans.**GlobalResourcesLifecycleListen*
>> *er" />
>>
>>  
>>  
>>
>>>  type="org.apache.catalina.**UserDatabase"
>>  description="User database that can be updated and saved"
>>  factory="org.apache.catalina.**users.**
>> MemoryUserDatabaseFactory"
>>  pathname="conf/tomcat-users.**xml" />
>>  
>>
>>  
>>  
>>
>>
>>
>>>maxThreads="150" minSpareThreads="4"/>
>>
>>
>>
>>
>>
>>
>>
>>>   port="8082" protocol="HTTP/1.1"
>>   connectionTimeout="2"
>>   redirectPort="8443" />
>>
>>
>>
>> 
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  
>>  
>>
>>  
>>  
>>
>>  
>>  > resourceName="UserDatabase" digest="sha"/>
>>
>>  
>>  >unpackWARs="true" autoDeploy="true"
>>xmlValidation="false" xmlNamespaceAware="false">
>>
>>
>>
>>
>>
>>
>>
>>  
>>
>>  
>> 
>>
>> Regards
>> Rakesh
>>
>> On Fri, Aug 12, 2011 at 5:18 PM, Pid  wrote:
>>
>>  On 12/08/2011 12:31, rakesh k wrote:
>>>
 Hi Igor Cicimov

 Thank you very much for replying ..
>>>   port="8082" protocol="HTTP/1.1"
   connectionTimeout="2"
   redirectPort="8443" />
 

>>> That doesn't answer the question.
>>>
>>> Please remove all of the commented parts of the server.xml and paste the
>>> whole thing, inline, into your next reply.
>>>
>>>
>>>
>>>  I am heryby attaching the proxy pass which we used to connect tomcat

>>> through
>>>
 apache.

>>> (You're not attaching it.)
>>>
>>>
>>> p
>>>
>>>  ProxyPass / balancer://msf/ stickysession=JSESSIONID|**jsessionid

 
  BalancerMember http://localhost:8082 route=msf1
 




 This is what we use in the produciton scenario, the above mentioned
 configuration is the exact executor configuration we used for this

>>> scenario.
>>>

 can you please help on this since we are running this on production
 which
 has to be resolved.
 Regards
 Rakesh


 On Fri, Aug 12, 2011 at 3:56 PM, Igor Cicimov 

>>> wrote:
>>>
 I can't see the connection between the Connector you showed and port
>
 8082.
>>>
 What is listening on port 8082? Also what is your "tomcatThreadPool"
> executor configuration?
>
>
> On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:
>
>  Hi All
>>
>> I am using Apache tomcat 6.0.18 version
>>
>> I am not sure, why the tomcat is giving us this problem. While doing
>>
> Load
>>>
 testing we are sending 5000 requests at a time, where we are getting
>>
> 4-5
>>>
 Bad
>> gate way error.
>>
>> Please find the error details below
>>
>> [Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection
>>
> abort:
>>>
 proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection
>>
> abort:
>>>
 proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> [Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
>> [Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection
>>
> abort:
>>>
 proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> [Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>> [Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection
>>
> abort:
>>>
 proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> [Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
>> [Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection
>>
> abort:
>>>
 proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>> [Wed Aug 10 19:01:18 2011] [e

Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-15 Thread André Warnier

You seem to have missed the "Please remove all of the commented parts.." part 
of the request.

rakesh k wrote:

Hi


Thanks for replying for on my question.
Please find the details below, you had requested. sorry for troubling you
much , i ma hereby providing the details of server.xml below.







  
  
  
  
  
  
  

  
  


  

  
  

























  
  

  
  

  
  

  
  







  

  


Regards
Rakesh

On Fri, Aug 12, 2011 at 5:18 PM, Pid  wrote:


On 12/08/2011 12:31, rakesh k wrote:

Hi Igor Cicimov

Thank you very much for replying ..



That doesn't answer the question.

Please remove all of the commented parts of the server.xml and paste the
whole thing, inline, into your next reply.




I am heryby attaching the proxy pass which we used to connect tomcat

through

apache.

(You're not attaching it.)


p


ProxyPass / balancer://msf/ stickysession=JSESSIONID|jsessionid


 BalancerMember http://localhost:8082 route=msf1





This is what we use in the produciton scenario, the above mentioned
configuration is the exact executor configuration we used for this

scenario.


can you please help on this since we are running this on production which
has to be resolved.
Regards
Rakesh


On Fri, Aug 12, 2011 at 3:56 PM, Igor Cicimov 

wrote:

I can't see the connection between the Connector you showed and port

8082.

What is listening on port 8082? Also what is your "tomcatThreadPool"
executor configuration?


On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:


Hi All

I am using Apache tomcat 6.0.18 version

I am not sure, why the tomcat is giving us this problem. While doing

Load

testing we are sending 5000 requests at a time, where we are getting

4-5

Bad
gate way error.

Please find the error details below

[Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection

abort:

proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection

abort:

proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection

abort:

proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection

abort:

proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection

abort:

proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.5.38 ()


I am also attaching the tomcat configuration like server.xml with this
question,

can you please help how to get out this issue, if you require anything

from

me i can proivude the etire details.

Please find the server.xml tomcat connector attribute portion.


   

can you please help me ragarding this issue.


Regards
Rakesh



-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org







-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-15 Thread rakesh k
Hi


Thanks for replying for on my question.
Please find the details below, you had requested. sorry for troubling you
much , i ma hereby providing the details of server.xml below.







  
  
  
  
  
  
  

  
  


  

  
  

























  
  

  
  

  
  

  
  







  

  


Regards
Rakesh

On Fri, Aug 12, 2011 at 5:18 PM, Pid  wrote:

> On 12/08/2011 12:31, rakesh k wrote:
> > Hi Igor Cicimov
> >
> > Thank you very much for replying ..
> >  >port="8082" protocol="HTTP/1.1"
> >connectionTimeout="2"
> >redirectPort="8443" />
> > 
>
> That doesn't answer the question.
>
> Please remove all of the commented parts of the server.xml and paste the
> whole thing, inline, into your next reply.
>
>
>
> > I am heryby attaching the proxy pass which we used to connect tomcat
> through
> > apache.
>
> (You're not attaching it.)
>
>
> p
>
> > ProxyPass / balancer://msf/ stickysession=JSESSIONID|jsessionid
> >
> > 
> >  BalancerMember http://localhost:8082 route=msf1
> > 
> >
> >
> >
> >
> > This is what we use in the produciton scenario, the above mentioned
> > configuration is the exact executor configuration we used for this
> scenario.
> >
> >
> > can you please help on this since we are running this on production which
> > has to be resolved.
> > Regards
> > Rakesh
> >
> >
> > On Fri, Aug 12, 2011 at 3:56 PM, Igor Cicimov 
> wrote:
> >
> >> I can't see the connection between the Connector you showed and port
> 8082.
> >> What is listening on port 8082? Also what is your "tomcatThreadPool"
> >> executor configuration?
> >>
> >>
> >> On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:
> >>
> >>> Hi All
> >>>
> >>> I am using Apache tomcat 6.0.18 version
> >>>
> >>> I am not sure, why the tomcat is giving us this problem. While doing
> Load
> >>> testing we are sending 5000 requests at a time, where we are getting
> 4-5
> >>> Bad
> >>> gate way error.
> >>>
> >>> Please find the error details below
> >>>
> >>> [Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection
> abort:
> >>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
> >>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> >>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection
> abort:
> >>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
> >>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> >>> [Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection
> abort:
> >>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
> >>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> >>> [Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection
> abort:
> >>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
> >>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> >>> [Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection
> abort:
> >>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> >>> [Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
> >>> 127.0.0.3:8082 (localhost) from 72.163.5.38 ()
> >>>
> >>>
> >>> I am also attaching the tomcat configuration like server.xml with this
> >>> question,
> >>>
> >>> can you please help how to get out this issue, if you require anything
> >> from
> >>> me i can proivude the etire details.
> >>>
> >>> Please find the server.xml tomcat connector attribute portion.
> >>>
> >>>
> >>> >>>   port="8080" protocol="HTTP/1.1"
> >>>   connectionTimeout="2"
> >>>   redirectPort="8443" />
> >>>
> >>> can you please help me ragarding this issue.
> >>>
> >>>
> >>> Regards
> >>> Rakesh
> >>>
> >>
> >
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-12 Thread Pid
On 12/08/2011 12:31, rakesh k wrote:
> Hi Igor Cicimov
> 
> Thank you very much for replying ..
> port="8082" protocol="HTTP/1.1"
>connectionTimeout="2"
>redirectPort="8443" />
> 

That doesn't answer the question.

Please remove all of the commented parts of the server.xml and paste the
whole thing, inline, into your next reply.



> I am heryby attaching the proxy pass which we used to connect tomcat through
> apache.

(You're not attaching it.)


p

> ProxyPass / balancer://msf/ stickysession=JSESSIONID|jsessionid
> 
> 
>  BalancerMember http://localhost:8082 route=msf1
> 
> 
> 
> 
> 
> This is what we use in the produciton scenario, the above mentioned
> configuration is the exact executor configuration we used for this scenario.
> 
> 
> can you please help on this since we are running this on production which
> has to be resolved.
> Regards
> Rakesh
> 
> 
> On Fri, Aug 12, 2011 at 3:56 PM, Igor Cicimov  wrote:
> 
>> I can't see the connection between the Connector you showed and port 8082.
>> What is listening on port 8082? Also what is your "tomcatThreadPool"
>> executor configuration?
>>
>>
>> On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:
>>
>>> Hi All
>>>
>>> I am using Apache tomcat 6.0.18 version
>>>
>>> I am not sure, why the tomcat is giving us this problem. While doing Load
>>> testing we are sending 5000 requests at a time, where we are getting 4-5
>>> Bad
>>> gate way error.
>>>
>>> Please find the error details below
>>>
>>> [Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection abort:
>>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>>> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection abort:
>>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
>>> [Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection abort:
>>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
>>> [Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection abort:
>>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
>>> [Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection abort:
>>> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
>>> [Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
>>> 127.0.0.3:8082 (localhost) from 72.163.5.38 ()
>>>
>>>
>>> I am also attaching the tomcat configuration like server.xml with this
>>> question,
>>>
>>> can you please help how to get out this issue, if you require anything
>> from
>>> me i can proivude the etire details.
>>>
>>> Please find the server.xml tomcat connector attribute portion.
>>>
>>>
>>>>>   port="8080" protocol="HTTP/1.1"
>>>   connectionTimeout="2"
>>>   redirectPort="8443" />
>>>
>>> can you please help me ragarding this issue.
>>>
>>>
>>> Regards
>>> Rakesh
>>>
>>
> 


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-12 Thread rakesh k
Hi Igor Cicimov

Thank you very much for replying ..





I am heryby attaching the proxy pass which we used to connect tomcat through
apache.

ProxyPass / balancer://msf/ stickysession=JSESSIONID|jsessionid


 BalancerMember http://localhost:8082 route=msf1





This is what we use in the produciton scenario, the above mentioned
configuration is the exact executor configuration we used for this scenario.


can you please help on this since we are running this on production which
has to be resolved.
Regards
Rakesh


On Fri, Aug 12, 2011 at 3:56 PM, Igor Cicimov  wrote:

> I can't see the connection between the Connector you showed and port 8082.
> What is listening on port 8082? Also what is your "tomcatThreadPool"
> executor configuration?
>
>
> On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:
>
> > Hi All
> >
> > I am using Apache tomcat 6.0.18 version
> >
> > I am not sure, why the tomcat is giving us this problem. While doing Load
> > testing we are sending 5000 requests at a time, where we are getting 4-5
> > Bad
> > gate way error.
> >
> > Please find the error details below
> >
> > [Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection abort:
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> > [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
> > 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> > [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection abort:
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> > [Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
> > 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> > [Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection abort:
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> > [Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
> > 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> > [Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection abort:
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> > [Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
> > 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> > [Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection abort:
> > proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> > [Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
> > 127.0.0.3:8082 (localhost) from 72.163.5.38 ()
> >
> >
> > I am also attaching the tomcat configuration like server.xml with this
> > question,
> >
> > can you please help how to get out this issue, if you require anything
> from
> > me i can proivude the etire details.
> >
> > Please find the server.xml tomcat connector attribute portion.
> >
> >
> > >   port="8080" protocol="HTTP/1.1"
> >   connectionTimeout="2"
> >   redirectPort="8443" />
> >
> > can you please help me ragarding this issue.
> >
> >
> > Regards
> > Rakesh
> >
>


Re: Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-12 Thread Igor Cicimov
I can't see the connection between the Connector you showed and port 8082.
What is listening on port 8082? Also what is your "tomcatThreadPool"
executor configuration?


On Fri, Aug 12, 2011 at 7:56 PM, rakesh k  wrote:

> Hi All
>
> I am using Apache tomcat 6.0.18 version
>
> I am not sure, why the tomcat is giving us this problem. While doing Load
> testing we are sending 5000 requests at a time, where we are getting 4-5
> Bad
> gate way error.
>
> Please find the error details below
>
> [Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection abort:
> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> [Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> [Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection abort:
> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> [Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> [Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection abort:
> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> [Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
> 127.0.0.3:8082 (localhost) from 72.163.25.205 ()
> [Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection abort:
> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> [Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
> 127.0.0.3:8082 (localhost) from 72.163.25.206 ()
> [Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection abort:
> proxy: pass request body failed to 127.0.0.3:8082 (localhost)
> [Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
> 127.0.0.3:8082 (localhost) from 72.163.5.38 ()
>
>
> I am also attaching the tomcat configuration like server.xml with this
> question,
>
> can you please help how to get out this issue, if you require anything from
> me i can proivude the etire details.
>
> Please find the server.xml tomcat connector attribute portion.
>
>
>   port="8080" protocol="HTTP/1.1"
>   connectionTimeout="2"
>   redirectPort="8443" />
>
> can you please help me ragarding this issue.
>
>
> Regards
> Rakesh
>


Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-12 Thread rakesh k
Hi All

I am using Apache tomcat 6.0.18 version

I am not sure, why the tomcat is giving us this problem. While doing Load
testing we are sending 5000 requests at a time, where we are getting 4-5 Bad
gate way error.

Please find the error details below

[Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.5.38 ()


I am also attaching the tomcat configuration like server.xml with this
question,

can you please help how to get out this issue, if you require anything from
me i can proivude the etire details.

Please find the server.xml tomcat connector attribute portion.




can you please help me ragarding this issue.


Regards
Rakesh


Apache Tomcat unable to send the request. tomcat throwing 502 Gate Way error

2011-08-12 Thread rakesh k
Hi All

I am not sure, why the tomcat is giving us this problem. While doing Load
testing we are sending 5000 requests at a time, where we are getting 4-5 Bad
gate way error.

Please find the error details below

[Wed Aug 10 01:00:50 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:00:50 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 01:01:01 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:01:01 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 01:28:04 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 01:28:04 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.205 ()
[Wed Aug 10 06:10:49 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 06:10:49 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.25.206 ()
[Wed Aug 10 19:01:18 2011] [error] (103)Software caused connection abort:
proxy: pass request body failed to 127.0.0.3:8082 (localhost)
[Wed Aug 10 19:01:18 2011] [error] proxy: pass request body failed to
127.0.0.3:8082 (localhost) from 72.163.5.38 ()


I am also attaching the tomcat configuration like server.xml with this
question,

can you please help how to get out this issue, if you require anything from
me i can proivude the etire details.

Please find the server.xml tomcat connector attribute portion.




can you please help me ragarding this issue.


Regards
Rakesh