Re: [EMAIL PROTECTED] Apache Crashing

2007-04-04 Thread Christian Gottschalch
check your OS "ulimit" settings and your apachectl Script ULIMIT_MAX_FILES Regards Arnab Ganguly schrieb: Hi, I was using the command line tool present under the /httpd-2.2.3/support/ab I ran from the command prompt ./ab -n 5000 -c 130 -v 50 http://localhost/index.html.ie 5000 total request

Re: [EMAIL PROTECTED] Apache Http Server Authentication/Authorisation

2007-05-02 Thread Christian Gottschalch
it may be possible to use HTTP Request Headers, http://httpd.apache.org/docs/2.0/mod/mod_headers.html#requestheader like: |RequestHeader set USER_ID %{REMOTE_USER}e when using mod_proxy_http| if you are using mod_jk there some workers.properties like JkExtractSSL or JkEnvVar http://tomcat.apac

Re: [EMAIL PROTECTED] problem with apache2 as a reverse proxy and OWA

2006-10-20 Thread Christian Gottschalch
, httpwatch - brwoserplugin for ie should work in trail mode for your needs). Apache Reverse Proxy changes only the request and response headers not the hole content. regards Christian Gottschalch fRANz schrieb: On 10/20/06, Markus Herbert <[EMAIL PROTECTED]> wrote: Hi, I removed proxy_c

Re: [EMAIL PROTECTED] mod_proxy (reverse): Problem after restarting backend

2006-10-24 Thread Christian Gottschalch
2.0.59 mod_proxy, but dont ever observed the problem that you described. by every HTTP request you send to apache, apache tryes to reach the backend, try to sniff the traffic between client -> reversproxy & reverse proxy -> backend to see whats happening. it may be an configuration failure

Re: [EMAIL PROTECTED] Proxy: 503 Service Unavailable + mod_proxy (reverse): Problem after restarting backend

2006-10-24 Thread Christian Gottschalch
see http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass should be interesting, configuration changed from 2.0.x "Connection pool worker retry timeout in seconds. If the connection pool worker to the backend server is in the error state, Apache will not forward any requests to that se

Re: [EMAIL PROTECTED] mod_proxy (reverse): Problem after restarting backend

2006-10-25 Thread Christian Gottschalch
erver until the timeout expires. This enables to shut down the backend server for maintenance, and bring it back online later." Nico -telmich- Schottelius schrieb: Hello Christian! Christian Gottschalch [Tue, Oct 24, 2006 at 09:10:05PM +0200]: 2.0.59 mod_proxy, but dont ever ob

Re: AW: [EMAIL PROTECTED] Incompatibility Apache reverse proxy and Internet Explorer?

2006-11-14 Thread Christian Gottschalch
using ssl in backend may be not a good idea, because it slows down everything, try BrowserMatch ".*MSIE.*" nokeepalive ssl-unclean-shutdown or BrowserMatch ".*MSIE.*" ssl-unclean-shutdown Kirchel Oliver schrieb: Hi, I think we had the same error. "The DMZ1 proxy is connected via ssl, the o

Re: [EMAIL PROTECTED] Free Web Benchmark...

2006-11-16 Thread Christian Gottschalch
or JMeter from Jakarta Projekt http://jakarta.apache.org/jmeter/index.html regards Christiaan Lamprecht schrieb: Try httperf and autobench Christiaan On 11/15/06, Salvatore Cozzolongo <[EMAIL PROTECTED]> wrote: Are there open/free web server Benchmark? Do you know some? I just found commerci

Re: [EMAIL PROTECTED] httpd 2.2.3 as an SSL proxy with a client certificate fails on connect

2006-12-21 Thread Christian Gottschalch
why do you use HTTPS in Backend, it looks like the backend System also needs client certificate authentication, there may be something wrong with your SSLProxyMachineCertificateFile ? try to send a wget request to the remote server and use SSLProxyMachineCertificateFile, dose wget get authorize

Re: [EMAIL PROTECTED] httpd 2.2.3 as an SSL proxy with a client certificate fails on connect

2006-12-22 Thread Christian Gottschalch
reason is "no acceptable CA list", which may mean, that your ReverseProxy dosent trust the CA bound at server:443 read http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslproxycacertificatefile Regards The certificate file is fine. When I perform a get operation from the proxy server itse

Re: [EMAIL PROTECTED] Apache and client certs

2006-12-28 Thread Christian Gottschalch
if you use Apache Reverse Proxy, then SSL Session will be terminated at the Reverse Proxy and the SSL Authentication / verification is done by reverse proxy to transport some certificate information to your WebSphere can use: RequestHeader set "HTTP_USER_ID" %{SSL_CLIENT_S_DN_CN}e The WebSphe

Re: [EMAIL PROTECTED] mod_proxy maximum connections to a backend

2007-01-10 Thread Christian Gottschalch
Hi, i think it ist per process, so if you have 100 processes with max value 200 your Hard Maximum will be 2 connections, but im not shure. Documentation says (http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass): The default for a Hard Maximum for the number of connections is th

Re: [EMAIL PROTECTED] mod_proxy maximum connections to a backend

2007-01-10 Thread Christian Gottschalch
eorge Christian Gottschalch wrote: Hi, i think it ist per process, so if you have 100 processes with max value 200 your Hard Maximum will be 2 connections, but im not shure. Documentation says (http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass): The default for a Hard Maximu

Re: [EMAIL PROTECTED] HTTPS proxy

2007-01-18 Thread Christian Gottschalch
TIps: you need the base module mod_proxy and the add-on module mod_proxy_connect and you need to use the directive AllowCONNECT. See docs for details... why mod_proxy_connect ? mod_proxy_http with SSLProxyEngine On will do the trick. Regards Rgds, Owen Boyle Disclaimer: Any disclaime

Re: [EMAIL PROTECTED] HTTPS proxy

2007-01-18 Thread Christian Gottschalch
ok, sorry you are right, . depends on what you like to do ;) Boyle Owen schrieb: -Original Message- From: Christian Gottschalch [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 9:41 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] HTTPS proxy