[EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread Gerhardus.Geldenhuis
Hi I am trying to get a simple piped logging example working Entry in httpd.conf: CustomLog |/usr/bin/logger -t '' -p local5.warn combined Apache version: Server Version: Apache/2.2.3 (CentOS) Server Built: Jan 15 2008 20:36:04 Worker MPM I am getting the following errors in the error log:

RE: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread Gerhardus.Geldenhuis
Thanks! I have changed it to: CustomLog |/usr/bin/logger -p local5.warn combined which has solved my problem on my test system. How would you do logger -t ''? There is a subtle difference in using an empty tag and not using a tag at all. I will have to check but I suspect the upstream log

Re: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread Krist van Besien
On Tue, Oct 14, 2008 at 1:38 PM, [EMAIL PROTECTED] wrote: Entry in httpd.conf: CustomLog |/usr/bin/logger -t '' -p local5.warn combined I'm seeing one to many here. Are you sure this is syntactically correct? Krist -- [EMAIL PROTECTED] [EMAIL PROTECTED] Bremgarten b. Bern, Switzerland --

Re: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread André Warnier
Hi. I don't know the program, but if you try the following : cd /var/log/apache2 (or wherever your logfiles are) cat error.log | /usr/bin/logger -t '' -p local5.warn what happens ? [EMAIL PROTECTED] wrote: Hi I am trying to get a simple piped logging example working Entry in httpd.conf:

Re: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread André Warnier
[EMAIL PROTECTED] wrote: Thanks! I have changed it to: CustomLog |/usr/bin/logger -p local5.warn combined which has solved my problem on my test system. How would you do logger -t ''? You could try : CustomLog |/usr/bin/logger -t \'\' -p local5.warn combined There is a subtle

Re: [EMAIL PROTECTED] mod_backhand for Apache 2.0 / 2.2 ?

2008-10-14 Thread ricardo13
Sorry, I sent wrong message. But I search a module that have others algorithm schedulers (Round Robin, etc) The mod_load_balancer has just 2 algorithm. I saw mod_backhand, but don't knew your algorithm (not specified) Thank you ricardo -- View this message in context:

Re: [EMAIL PROTECTED] [apache2.3.0] download

2008-10-14 Thread Dan Poirier
See http://httpd.apache.org/dev/ -- Dan Poirier [EMAIL PROTECTED] - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe,

[EMAIL PROTECTED] How to proxy http from a secured site via a reverse-tunnel?

2008-10-14 Thread Buck, Robert
Clarification to question: internet corporate engineering internet mod_proxy reverse-proxy-initiated-from-corporate -Original Message- From: Buck, Robert [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2008 12:25 PM To: users@httpd.apache.org Subject: [EMAIL

Re: [EMAIL PROTECTED] [apache2.3.0] download

2008-10-14 Thread Sander Temme
On Oct 14, 2008, at 7:23 AM, GanGan wrote: where can i find apache 2.3.0 for download and testing ? why ? for fun :) We haven't actuallly rolled any releases of 2.3.x (or 2.4.x) yet, so you'll have to get them from Subversion. You'll need the trunks of httpd, apr and apr-util.

Re: [EMAIL PROTECTED] support for end-user source modifications

2008-10-14 Thread Rick Jones
Eric Covener wrote: On Mon, Oct 13, 2008 at 8:25 PM, Rick Jones [EMAIL PROTECTED] wrote: http://www.spec.org/web2005/docs/1.20/run_rules.html#OpenSourceRules I'm interested in changes to the core source(s) and not adding a module. IMO you're not running a stable release at this point, and

[EMAIL PROTECTED] memory usage in apache2 on debian 32 and 64bits

2008-10-14 Thread Luis Cañas Díaz
Hi all, I've been this afternoon having a look at one of my servers and I'm having many problems with the memory usage. uno:/etc/apache2# ps ax|grep apache2|awk '{ print $1 }'|xargs pmap|grep total total99416K total 128292K total

Re: [EMAIL PROTECTED] support for end-user source modifications

2008-10-14 Thread Eric Covener
On Tue, Oct 14, 2008 at 1:15 PM, Rick Jones [EMAIL PROTECTED] wrote: Eric Covener wrote: On Mon, Oct 13, 2008 at 8:25 PM, Rick Jones [EMAIL PROTECTED] wrote: http://www.spec.org/web2005/docs/1.20/run_rules.html#OpenSourceRules I'm interested in changes to the core source(s) and not adding

Re: [EMAIL PROTECTED] memory usage in apache2 on debian 32 and 64bits

2008-10-14 Thread Eric Covener
On Tue, Oct 14, 2008 at 1:34 PM, Luis Cañas Díaz [EMAIL PROTECTED] wrote: Hi all, I've been this afternoon having a look at one of my servers and I'm having many problems with the memory usage. uno:/etc/apache2# ps ax|grep apache2|awk '{ print $1 }'|xargs pmap|grep total

Re: [EMAIL PROTECTED] How to proxy http from a secured site via a reverse-tunnel?

2008-10-14 Thread Davide Bianchi
Buck, Robert wrote: Two networks exist: engineering and corporate. The engineering network is firewalled so that NO traffic can go out On the engineering network there exists a engineering linux machine that I want to temporarily provide internet access to so that I can update the OS. This

Re: [EMAIL PROTECTED] you mean Win2000 can not resolve 127.0.0.1?

2008-10-14 Thread Evan Platt
[EMAIL PROTECTED] wrote: but my nslookup can resolve 127.0.0.1. only logresolve can NOT resolve 127.0.0.1. Why? If you're replying to another message, please use the reply function in your e-mail client, quote a bit of the text you're replying to, and don't change the subject. This makes

[EMAIL PROTECTED] [apache2.3.0] download

2008-10-14 Thread GanGan
hello all, where can i find apache 2.3.0 for download and testing ? why ? for fun :) thanks gangan -- - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [EMAIL PROTECTED] Apache server - Output to the same page whatever request

2008-10-14 Thread MierMier
MierMier wrote: Hey people, I need your help, thanks in advance! I have an appche server 2.x. + PHP, And I woundered rather it is possible to output the same page (i.e. a.php) for a request of whatever page. I will give an examples: if the client try to reach /hello/index.php

Re: [EMAIL PROTECTED] Thanks ALOT!!!

2008-10-14 Thread MierMier
Well thanks alot, but somhing went wrong, and after reading, still can't understand why. I have an Apache server server on my PC, based on WinXP, and when I use these in .htaccess Options +FollowSymLinks RewriteEngine On RewriteRule ^.*$ /a.php [QSA] it works well. How ever at my

RE: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread Gerhardus.Geldenhuis
Hi André Doing cat error.log | /usr/bin/logger -t '' -p local5.warn works perfectly fine. I did'nt use error log as it is too big and just created a temp file with unique entries to prevent syslog from saying previous message repeated x times. logger I believe is part of syslog. In centos's

[EMAIL PROTECTED] Managed! thanks

2008-10-14 Thread MierMier
MierMier wrote: MierMier wrote: Hey people, I need your help, thanks in advance! I have an appche server 2.x. + PHP, And I woundered rather it is possible to output the same page (i.e. a.php) for a request of whatever page. I will give an examples: if the client try to reach

Re: [EMAIL PROTECTED] Managed! thanks

2008-10-14 Thread Brian Mearns
Pleas try to avoid changing the subject line when following up on a message. It gets very confusing to keep track of the threads. Thanks! -Brian On Tue, Oct 14, 2008 at 4:14 PM, MierMier [EMAIL PROTECTED] wrote: MierMier wrote: MierMier wrote: Hey people, I need your help, thanks in

[EMAIL PROTECTED] How to proxy http from a secured site via a reverse-tunnel?

2008-10-14 Thread Buck, Robert
I am a newbie at this and so I am not quite sure how to ask this question. But here goes... Two networks exist: engineering and corporate. The engineering network is firewalled so that NO traffic can go out; these computers cannot connect to the internet. The corporate network is firewalled but

RE: [EMAIL PROTECTED] Simple piped log fails

2008-10-14 Thread Gerhardus.Geldenhuis
Hmmm, thanks that did the trick. I am not sure what the differences is between ibm httpd and centos/redhat httpd but I dont get the error with the ibm version and it still logs succesfully. I will have to do some more testing to get to the bottom of the problem. Thanks again, regards

[EMAIL PROTECTED] Re: mod_authnz_ldap problems with Apache 2.2.9

2008-10-14 Thread lambic
On Thu, Oct 9, 2008 at 9:37 PM, [EMAIL PROTECTED] wrote: Hello Apache gurus, I am having trouble getting mod_authnz_ldap to work in Apache. httpd-2.2.9 running on Solaris 10 (in a non-global zone) Here is my configure line: ./configure --prefix=/svn/builds/apache-2.2.9_20081009