[users@httpd] AUTO: Murtaza Hathiwala is out of the office (returning 02/06/2012)

2012-02-02 Thread Murtaza Hathiwala
I am out of the office until 02/06/2012. I 'll be Out of Office starting Thursdy Feb 02nd and Friday 03rd 2012. Returning on Monday Feb 6th 2012 Please contact below persons as my backups during my absence. Satya Samala as my backup for any immediate middleware assistance Team Lead: Lorraine L

Re: [users@httpd] Easy way to dump running server config for Apache2.0/2.2?

2012-02-02 Thread Tim Watts
On 02/02/12 22:59, Pete Houston wrote: On Thu, Feb 02, 2012 at 04:48:42PM +, Tim Watts wrote: I don't have mod_info installed on 90% of the servers in question, sadly. It is standard on my new build servers but I have a load of legacy stuff. In that case, perhaps something as simple as the

[users@httpd] Monitoring web cluster performance

2012-02-02 Thread Peter Phaal
Hi All, Anyone using Ganglia to monitor their servers might be interested to know that Ganglia 3.3 now includes support for mod-sflow, providing a great way to monitor the health of an Apache cluster - not just HTTP performance, but also the CPU, memory, disk and network I/O. If you are using Tomc

Re: [users@httpd] Easy way to dump running server config for Apache2.0/2.2?

2012-02-02 Thread Pete Houston
On Thu, Feb 02, 2012 at 04:48:42PM +, Tim Watts wrote: > I don't have mod_info installed on 90% of the servers in question, > sadly. It is standard on my new build servers but I have a load of > legacy stuff. In that case, perhaps something as simple as the attached script would do? > BTW the

Re: [users@httpd] Problems building httpd on AIX 6.1 64 bit with GCC

2012-02-02 Thread Ignaz Birnstingl
Hi Eric, thanks for the advice. Unfortunately that did not quite solve the issue but running libtool without --silent I found out what was wrong: libtool calls ar and nm and both need the -X 64 flag - so fixing the configure command line to NM="nm -B -X 64" LDFLAGS="-maix64" LD=gcc AR="ar -X 64" C

Re: [users@httpd] Easy way to dump running server config for Apache2.0/2.2?

2012-02-02 Thread Tim Watts
On 02/02/12 16:31, Pete Houston wrote: On Thu, Feb 02, 2012 at 04:15:13PM +, Tim Watts wrote: Kind of like what mod_info gives. Specifically I want a dump of all the active ServerName and ServerAlias directives. Haven't you answered your own question there? lynx --dump http://name.of.serv

Re: [users@httpd] Easy way to dump running server config for Apache2.0/2.2?

2012-02-02 Thread Pete Houston
On Thu, Feb 02, 2012 at 04:15:13PM +, Tim Watts wrote: > Kind of like what mod_info gives. Specifically I want a dump of all > the active ServerName and ServerAlias directives. Haven't you answered your own question there? lynx --dump http://name.of.server/server-info | grep -E 'Server(Name|A

[users@httpd] Re: ExtFilter and Reverse Proxy Woes.

2012-02-02 Thread V B
Gents, hate to bring up this issue again, does anyone have any suggestions? Its becoming a bit worrisome... Thanks! On Tue, Jan 31, 2012 at 5:43 PM, V B wrote: > Guys, > Testing with : > >RewriteRule ^/(.*) balancer://blah/$1 [P] > > Same problem... > > Thanks! > > > On Tue, Jan 31, 20

[users@httpd] Easy way to dump running server config for Apache2.0/2.2?

2012-02-02 Thread Tim Watts
Hi folks, I need a quick way to dump the parsed server config from a running Apache2 server. == Kind of like what mod_info gives. Specifically I want a dump of all the active ServerName and ServerAlias directives. I *could* do something dirty with perl, but I had temporary hope wit

Re: [users@httpd] Problems building httpd on AIX 6.1 64 bit with GCC

2012-02-02 Thread Eric Covener
On Thu, Feb 2, 2012 at 10:22 AM, Ignaz Birnstingl wrote: > Hi, > > I'm trying to build Apache 2.2.22 on AIX 6.1 PPC 64 bit with gcc 4.4.6. > The configure line looks like this: > LDFLAGS="-maix64" LD=gcc AR="ar -X 64" CFLAGS="-maix64" ./configure > --prefix=/home/labuser/apache/httpd-22-x64 --enab

RE: [users@httpd] mod rewrite question https to http

2012-02-02 Thread Roland RoLaNd
Thank you for your help.is there any ebook you advise me to read to catch up on the below ? Date: Thu, 2 Feb 2012 07:04:06 -0200 From: imed...@grosshat.com To: users@httpd.apache.org Subject: Re: [users@httpd] mod rewrite question https to http Hi Roland, on the context of SSL Virtual Host pu

[users@httpd] Problems building httpd on AIX 6.1 64 bit with GCC

2012-02-02 Thread Ignaz Birnstingl
Hi, I'm trying to build Apache 2.2.22 on AIX 6.1 PPC 64 bit with gcc 4.4.6. The configure line looks like this: LDFLAGS="-maix64" LD=gcc AR="ar -X 64" CFLAGS="-maix64" ./configure --prefix=/home/labuser/apache/httpd-22-x64 --enable-mods-shared=all --enable-cache --enable-mem-cache --enable-headers

[users@httpd] apache 2.2.14 with ChrootDir, mod_fcgi, php5 on Ubuntu 10.04

2012-02-02 Thread Jan-Hendrik Palic
Hi there, I try to get a chrooted apache working on Ubuntu 10.04 LTS (in a test case on 32Bit). The features I want to provide are - chrooted (with the core feature, not mod_chroot), - fastcgi - using php5, python, perl, cgi ... - suexec Everything runs fine with static content. Running m

Re: [users@httpd] mod rewrite question https to http

2012-02-02 Thread Iñigo Medina
Hi Roland, on the context of SSL Virtual Host put the following rewrite rules: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} iñigo On Wed, 1 Feb 2012, Roland RoLaNd wrote: Dear all, I'm a complete newbie to apache and i've inherited a virtual h