Re: [EMAIL PROTECTED] Timeout problem with apache benchmark

2007-11-08 Thread Bj
also basic but a bit more evolued. You can use Jmeter to test your Webservice. If you want to obtain 1 req/s with Jmeter you will have to use several Jmeter instances on several servers. -- Bj On 11/7/07, Lahiru Gunathilake <[EMAIL PROTECTED]> wrote: > > Hi, > I'm testi

Re: [EMAIL PROTECTED] backlog

2007-10-01 Thread Bj
This information isn't there. Backlog is managed by system so i think it's at system level that i have to search. -- Bj On 10/1/07, Michael Conlen <[EMAIL PROTECTED]> wrote: > > Try the server-status page. > > -- > Michael Conlen > > On Oct 1, 2007, at 9:31

[EMAIL PROTECTED] backlog

2007-10-01 Thread Bj
Hi, Does someone know how to get the number of requests pending in the backlog ? I didn't find interesting information in /proc/... Regards, -- Bj

Re: [EMAIL PROTECTED] requests time-out under load, no warnings in logs

2007-10-01 Thread Bj
mysql,... You should have a look to them maybe they are hanging up. - if you use thread safe modules (not php) and if you have to serve a lot of little requests, maybe you can consider to use mpm worker instead of prefork. -- Bj On 10/1/07, Alec Matusis <[EMAIL PROTECTED]> wrote: >

Re: [EMAIL PROTECTED] Apache waiting for i/o -> optimizing

2007-09-19 Thread Bj
SetEnvIf Request_URI "^/javascript/.*$" jscript CustomLog logs/access_log combined env=!jscript You can try memory caching, if somes sites are more requested than others, it might help. Or cache only some urls. Check if you don't have a database or cgi/php code that make lots of i/o.

Re: [EMAIL PROTECTED] Load balancing question

2007-09-18 Thread Bj
(through jmx or in activating logs ). Look at old and young garbage collections (frequency and duration). -- Bj

Re: [EMAIL PROTECTED] Load balancing question

2007-09-17 Thread Bj
: increase your AJP connectors maxThreads. 200 by default. It's no very efficient to have too much thread but it can prevent you from refused connections. -- Bj http://tomcat.apache.org/connectors-doc/generic_howto/timeouts.html On 9/17/07, James Sherwood <[EMAIL PROTECTED

Re: [EMAIL PROTECTED] Configuration issue with Apache HTPP Server

2007-09-17 Thread Bj
I known that there's some issues with php and multithreaded httpd process. Maybe you can look this way. Try without alias and using the default directory. If it still don't work, it may comes from your apache installation. I can't help you on windows. -- Bj On 9/17/07, Uma

Re: [EMAIL PROTECTED] Configuration issue with Apache HTPP Server

2007-09-17 Thread Bj
om/forum/images/myimage.gif ? -- Bj On 9/17/07, Uma Kalluru <[EMAIL PROTECTED]> wrote: > > Hi Bj, > > No, I haven't used virtual hosts or rewrite rules or redirect rules or any > other configuration. > > This was a fresh installation of Apache HTTP Server and I just

Re: [EMAIL PROTECTED] Configuration issue with Apache HTPP Server

2007-09-17 Thread Bj
do you use virtual hosts ? rewrite rules ? redirect rules ? other directory directives ? -- Bj On 9/17/07, Uma Kalluru <[EMAIL PROTECTED]> wrote: > > Hi Krithi Narayan, > > The same source code is deployed to hosting server ( > http://javagalaxy.com/forum/index.php) and i

Re: [EMAIL PROTECTED] Load balancing question

2007-09-15 Thread Bj
garbage collections works fine and just don't hang up too long. try to deactivate the 2 tomcat instances on your apache server to see if httpd is still available after the load test. -- Bj On 9/14/07, James Sherwood <[EMAIL PROTECTED]> wrote: > > Hello, > > Everythin

Re: [EMAIL PROTECTED] rewriterule help

2007-09-12 Thread Bj
You could try something like that RewriteEngine On RewriteCond %{HTTP_HOST} demo.mysite.com [NC] RewriteCond %{QUERY_STRING} .*logout=1.* [NC] RewriteRule ^/.* http://www.mysite.com [L,R=302] -- Bj On 9/12/07, Aziz Sasmaz <[EMAIL PROTECTED]> wrote: > > > > Hi all, > >

Re: [EMAIL PROTECTED] Redirecting temporarily all pages to /

2007-09-11 Thread Bj
Check if your index.hml and if any ErrorDocument directives are not interacting. and try with Rewrite : RewriteEngine On RewriteCond %{REQUEST_URI} ^/.+$ [NC] RewriteCond %{REQUEST_URI} !^/$ [NC] RewriteRule ^/.* http://www.google.fr [L,R=302] -- Bj On 9/11/07, Laurent Blume <[EM

Re: [EMAIL PROTECTED] Ensuring a connection always stays available for a specific IP

2007-09-11 Thread Bj
our mod_jk : reply_timeout,socket_timeout,worker retries, loadbalancer retries, connection_pool_timeout, connection_pool_size,... Set also ExtendedStatus Off. -- Bj On 9/11/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hi > Does anyone know if there is an easy way to ensu

Re: [EMAIL PROTECTED] jk-runtime-status file

2007-09-10 Thread Bj
This file is used for shared memory, lock, ...of mod_jk threads. if you don't declare it in your mod_jk config file, mod_jk will create a default one in your http log directory. -- Bj On 9/10/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hi > Platform: Linux LONGAPA0

Re: [EMAIL PROTECTED] URL Redirection Question

2007-09-07 Thread Bj
try with redirect (and VirtualHost if needed) ServerName our.domain.com:10080 RedirectPermanent / http://another.machine.com:8080 Or with Rewrite RewriteEngine On RewriteCond %{HTTP_HOST} our.domain.com [NC]* *RewriteRule /(.*) http://another.machine.com:8080/$1 [L,R=301] -- Bj On 9

Re: [EMAIL PROTECTED] ErrorDocument 404 redirect with server response code issue

2007-08-30 Thread Bj
Why don't you use an 404 html page with an automatique redirection to your home ? -- Bj On 8/30/07, Jeff Peng <[EMAIL PROTECTED]> wrote: > > > Original-Nachricht > > Datum: Thu, 30 Aug 2007 11:45:05 -0400 > > Von: "Steve Finkelste

Re: [EMAIL PROTECTED] mod_rewrite and VirtualHost

2007-08-21 Thread Bj
Thanks for the inherit tip. I didn't see it in the rewrite doc. -- Bj On 8/21/07, Joshua Slive <[EMAIL PROTECTED]> wrote: > > On 8/21/07, Bj <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I have a problem configuring a server with mod_rewrite and several >

[EMAIL PROTECTED] mod_rewrite and VirtualHost

2007-08-21 Thread Bj
com DocumentRoot ... ... ServerName www.mydomain2.com DocumentRoot ... When I put the rewrite section in the virtual hosts it works. Is there a way to have this rewrite rule applied to all my virtual hosts without having to duplicate this section in each VirtualHost ? Best regards, -- Bj

[EMAIL PROTECTED] apache trying to run jpeg instead of displaying it

2007-07-18 Thread BJ Harshfield
I am using httpd 2.2.4 and when I put a jpeg on my site, instead of showing the pic i get the error: [Wed Jul 18 09:38:57 2007] [error] [client 127.0.1.1] Error: syntax error, unexpected $undefined in "\xff", referer: I am using cgi with R to generate a graph and attempting to display the result