Re: how to make mod_perl actually run fast

2001-12-05 Thread Roger Pettett
My configuration had a similar problem - a bunch of virtualhosts (~25 or so) some of which use modperl, running on a handful of 2-node tightly-coupled clusters with the content/scripts sitting on NFS. DNS for the virtualhost addresses points to a frontend cluster. I set up extra aliases for my

Re: how to make mod_perl actually run fast

2001-12-05 Thread lesmikesell
My module now adds X-Forwarded-For: remote.address# remote address of client X-Host: www.glurp.com # real virtualhost address The reason I used the X-Host header was to avoid missing-trailing-slash requests coming back to the client with the wrong (/etc/hosts aliased)

Re: how to make mod_perl actually run fast

2001-12-05 Thread Roger Pettett
I never managed to get ProxyPass ProxyPassReverse to work properly with farms of machines at the backend. :P R. On Wed, 5 Dec 2001 [EMAIL PROTECTED] wrote: My module now adds X-Forwarded-For: remote.address# remote address of client X-Host: www.glurp.com # real

Re: how to make mod_perl actually run fast

2001-12-05 Thread Perrin Harkins
It uses wildcard DNS and some other goodies to extend the mod_perl-server-via-proxy-from-static-server setup Why not just use name-based virtual hosts for the backend and avoid all the monkeying with DNS? - Perrin

how to make mod_perl actually run fast

2001-12-04 Thread Tyler 'Crackerjack' MacDonald
[mod_perl list: i'm not a subscriber jsyk so if you wish to reply to me, reply to me directly and not the list] This past weekend, my webserver suffered a severe failure when i decided to upgrade my code to mod_perl instead of fastCGI. This performance problem resulted in me going to the

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Doug MacEachern
On Tue, 30 Jan 2001, Nick Tonkin wrote: When I run the perl Makefile.PL command like that (without the SSL_BASE directive) I get: Error: Cannot find SSL header files in any of the following dirs: Error: . /usr/include /usr/include/ssl/ /usr/local/include /usr/local/include/ssl So I

Re: make mod_perl

2001-01-31 Thread Doug MacEachern
On Sat, 27 Jan 2001, Ilya wrote: when I run make test I get this: cc -c -fno-strict-aliasing -I/usr/local/include -O -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\" -DPIC -fpic -I/usr/local/lib/perl5/5.6.0/i386-freebsd /CORE Symbol.c Symbol.xs: In function

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Nick Tonkin
Thanks for the suggestion, Doug, but no go. [root@wm mod_perl-1.25]# !find find / -name ssl -print find: /proc/6/fd: Permission denied find: /proc/108/fd: Permission denied /tmp/apache_1.3.17/src/modules/ssl /tmp/mod_perl-1.25/blib/arch/auto/Apache/include/modules/ssl /usr/share/ssl

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Doug MacEachern
On Wed, 31 Jan 2001, Nick Tonkin wrote: Thanks for the suggestion, Doug, but no go. simply looks like you need to install openssl-0.9.6. was not included in the rh7.0 distro that i installed.

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Jimi Thompson
Have any of you tried Apache Toolbox? I just configured Apache with mod_ssl, mod_perl, etc under RedHat 7 in about an hour on an old Pentium 133. It works fine. www.apachetoolbox.com Doug MacEachern wrote: On Wed, 31 Jan 2001, Nick Tonkin wrote: Thanks for the suggestion, Doug, but no

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Nick Tonkin
Hmm, very interesting. I *had* openssl-0.9.6 installed, via rpm ... but when I nuked it (not easy since rpm detects all its dependencies and puts up a fight) and installed again from the source files, presto! Everything builds, makes and installs just fine. The test for mod_perl failed thusly,

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-31 Thread Doug MacEachern
On Wed, 31 Jan 2001, Nick Tonkin wrote: [root@wm mod_perl-1.25]# make make test yeah, i think 'make test' as root has permissions problems. if you were to 'make make test' as yourself and 'make install' as root, should work fine.

Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Nick Tonkin
Hi everyone (long time no see) I am working on a client's machine with RedHat Linux. I'm trying to build Apache/mod_perl/mod_ssl from the sources, but become stuck when trying to make in the mod_perl directory. The error is: [root@wm mod_perl-1.25]# make (cd ../apache_1.3.17

RE: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Geoffrey Young
-Original Message- From: Nick Tonkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 3:09 PM To: [EMAIL PROTECTED] Subject: Cannot make mod_perl on *@!* RH Linux :( Hi everyone (long time no see) I am working on a client's machine with RedHat Linux. I'm trying

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Doug MacEachern
On Tue, 30 Jan 2001, Nick Tonkin wrote: I read in the INSTALL docs that the first error should not occur if openssl is already built and SSL_BASE is set to SYSTEM ... but there it is ... ? if openssl is installed in the default location, don't bother with SSL_BASE. if not, that needs to be

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Bill McCabe
Error: Cannot find SSL header files in any of the following dirs: Error: . /usr/include /usr/include/ssl/ /usr/local/include /usr/local/include/ssl Have you tried symlinking /usr/include/ssl to /usr/include/openssl? Bill

RE: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Geoffrey Young
-Original Message- From: Nick Tonkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 3:39 PM To: Geoffrey Young Cc: 'Nick Tonkin'; [EMAIL PROTECTED] Subject: RE: Cannot make mod_perl on *@!* RH Linux :( Gaah ... there is no gcc RPM in the RH 6.2 archive ... !? I

RE: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Nick Tonkin
Gaah ... there is no gcc RPM in the RH 6.2 archive ... !? ~~~ Nick Tonkin On Tue, 30 Jan 2001, Geoffrey Young wrote: -Original Message- From: Nick Tonkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 3:09 PM To: [EMAIL PROTECTED] Subject: Cannot make

Re: Cannot make mod_perl on *@!* RH Linux :(

2001-01-30 Thread Nick Tonkin
On Tue, 30 Jan 2001, Doug MacEachern wrote: On Tue, 30 Jan 2001, Nick Tonkin wrote: I read in the INSTALL docs that the first error should not occur if openssl is already built and SSL_BASE is set to SYSTEM ... but there it is ... ? if openssl is installed in the default location,

make mod_perl

2001-01-26 Thread Ilya
I am trying to build mod_perl with apache, but cant get through iunitial make. I got apache 1.3.14 src and mod_perl untared them, and run perl Makefile.PL APACHE_SRC=../apache/src DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 i get this: Will configure via APACI Enter `q' to stop search Please tell me

Re: make mod_perl

2001-01-26 Thread Ilya
--- Original Message - From: "Ilya" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 26, 2001 9:35 PM Subject: make mod_perl I am trying to build mod_perl with apache, but cant get through iunitial make. I got apache 1.3.14 src and mod_perl untared them, and run perl Ma

Re: make mod_perl

2001-01-26 Thread Ilya
--- Original Message - From: "Ilya" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 26, 2001 9:35 PM Subject: make mod_perl I am trying to build mod_perl with apache, but cant get through iunitial make. I got apache 1.3.14 src and mod_perl untared them, and run perl Ma

Here's patch to make mod_perl-1.24 work with apache_1.3.14

2001-01-18 Thread Dave Dykstra
I'm not subscribed to this mailing list, but I searched the archives for this patch and found no direct answers, only references to the current modperl in CVS. I extracted the relevant pieces into a patch and thought other people would have the same problem and would benefit from this patch. So

Re: Here's patch to make mod_perl-1.24 work with apache_1.3.14

2001-01-18 Thread ___cliff rayman___
you just needed mod_perl-1.24_01. you can get it at: http://perl.apache.org/dist/ apparently the underscore in the patch level keeps it from showing up as the latest release in CPAN. cliff Dave Dykstra wrote: I'm not subscribed to this mailing list, but I searched the archives for this