[us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Rex C. Eastbourne
Hi, I seem to have done something very wrong with my Apache configuration, but can't figure out what it is. Essentially, each time I launch my website and start to get traffic, I almost immediately run out of RAM. Typing "ps faux" gives me the following snippet, where I have around 20 processes st

[us...@httpd] SSL and Virtual Host

2009-05-04 Thread Asier Ramos
Hello, first i`m sorry about my English... Second, i explain which is the problem do i have. I have Apache server with many Virtual Host, one of this Virtual Host has SSL activate and runs ok. But i have to create another Virtual Host also with SSL but with a different certificate, is this posible

Re: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread Davide Bianchi
Asier Ramos wrote: > runs ok. But i have to create another Virtual Host also with SSL but > with a different certificate, is this posible? Only using a different ip address, otherwise all the SSL sites will use the same certificate. Is not a problem in apache but in the way HTTPS works. Davide -

Re: [us...@httpd] Apache not accepting php

2009-05-04 Thread Igor Galić
Hi Jeff, > I am trying to install and configure Apache, mySQL, and PHP on a > Windows > Vista PC. I have installed all of the programs, but when I test a > simple > php test, I am only seeing the html. I have modified httpd.conf in > the > /conf folder to include: > # > AddType applicati

Re: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread Igor Galić
This problem is addressed by newer revisions of TLS: http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI Most Browsers I've tested understand this, so it shouldn't be an issue. Bye, Igor - The official User-To-User support

Re: [us...@httpd] Default server is overridden by first VirtualHost

2009-05-04 Thread Eric Covener
On Mon, May 4, 2009 at 12:19 AM, Basil Mohamed Gohar wrote: >> The manual explicitly talks about this. If it matches, it will hide >> the base/default server. >> > The thing is, the vhost names do not match.  I type in "beta" and the > server loads "x".  This is the problem I am having. There's

Re: [us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Matus UHLAR - fantomas
On 04.05.09 00:15, Rex C. Eastbourne wrote: > I seem to have done something very wrong with my Apache configuration, > but can't figure out what it is. Essentially, each time I launch my > website and start to get traffic, I almost immediately run out of RAM. how much of RAM do you have on that ma

Re: [us...@httpd] Apache 2.2.10 LDAPS to Active Directory

2009-05-04 Thread Eric Covener
> > > AuthType Basic > > AuthName "TCBC" > AuthLDAPBindDN webuserloo...@user.org > AuthLDAPBindPassword 1password > AuthLDAPURL > "ldaps://ldapurl:636/DC=nm,DC=ad,DC=llssa,DC=org?sAMAccountName?sub?(objectClass=*)" > Require group CN=Web_TTR,OU=Web Groups,OU=Global Security > Groups,DC=nm,DC=ad,DC

Re: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread Asier Ramos
In my configuration i especified that there are two different IP's but only takes old certificate, no the one! 2009/5/4 Igor Galić > > This problem is addressed by newer revisions of TLS: > http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI > > Most Browsers I've tested understand this, so i

Re: [us...@httpd] Apache not accepting php

2009-05-04 Thread Matus UHLAR - fantomas
> > I am trying to install and configure Apache, mySQL, and PHP on a > > Windows > > Vista PC. I have installed all of the programs, but when I test a > > simple > > php test, I am only seeing the html. I have modified httpd.conf in > > the > > /conf folder to include: > > # > > AddType ap

[us...@httpd] httpd service not starting on Windows 2008 (64bit) through Microsoft Failover Cluster

2009-05-04 Thread Raja Shekar CS
Hi ! I am facing an issue in bringing up httpd (2.2.10) configured in Microsoft Failover Cluster (MSCS) on Windows 2008 64 bit system. This problem is seen only on Windows 2008 64bit system and through Microsoft Failover Cluster only. The service starts fine on the same system outside when starte

Re: [us...@httpd] httpd service not starting on Windows 2008 (64bit) through Microsoft Failover Cluster

2009-05-04 Thread Eric Covener
On Mon, May 4, 2009 at 7:57 AM, Raja Shekar CS wrote: > I am facing an issue in bringing up httpd (2.2.10) configured in Microsoft > Failover Cluster (MSCS) on Windows 2008 64 bit system. Usage: C:\\Program Files (x86)\\DFM\\bin\\httpd.exe [-D name] [-d Tried simplifying the path? -- Eric

Re: [us...@httpd] Log Filter based on client ip ?

2009-05-04 Thread André Warnier
Bastien LEGRAS wrote: Hello, Is there a way to filter errors issued from a specific client ip ? i.e. my loadbalancers are testing my https urls but cannot perform SSL handshake so I have lot of errors like that : [Mon May 04 08:24:24 2009] [info] [client x.x.x.x] (70014)End of file found: SSL h

Re: [us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Rex C. Eastbourne
2009/5/4 Matus UHLAR - fantomas : > [...] > how much of RAM do you have on that machine? > 512 MB. Not a lot, I know, but I had thought it would be sufficient to run a website with low traffic like mine. > > Do you use ubuntu's apache package(s)? Don't you have too much of useless > modules loade

Re: [us...@httpd] Default server is overridden by first VirtualHost

2009-05-04 Thread Basil Mohamed Gohar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 05/04/2009 06:48 PM, Eric Covener wrote: > On Mon, May 4, 2009 at 12:19 AM, Basil Mohamed Gohar > wrote: > >>> The manual explicitly talks about this. If it matches, it will hide >>> the base/default server. >>> >> The thing is, the vhost names do

Re: [us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Jan G.B.
2009/5/4 Rex C. Eastbourne : > 2009/5/4 Matus UHLAR - fantomas : >> [...] >> how much of RAM do you have on that machine? >> > > 512 MB. Not a lot, I know, but I had thought it would be sufficient to > run a website with low traffic like mine. > >> >> Do you use ubuntu's apache package(s)? Don't yo

Re: [us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Prasanna Ram Venkatachalam
Hi Rex, Jan told all in detail i guess. I was about to start typing for you. Anyway, just an addition to that, try googling about Pre-fork and worker-MPM mode. In the second, you can limit the processes by configuring more threads for each process (threads serve requests here). But there might be a

Re: [us...@httpd] RAM problem w/ multiple Apache processes

2009-05-04 Thread Prasanna Ram Venkatachalam
And yes.. For worker MPM you need to compile apache with that option (-with-mpm=worker). I forgot to add that!! Prasanna Ram On Mon, May 4, 2009 at 9:06 PM, Prasanna Ram Venkatachalam < vpra...@gmail.com> wrote: > Hi Rex, Jan told all in detail i guess. I was about to start typing for > you. An

[us...@httpd] Log Filter based on client ip ?

2009-05-04 Thread Bastien LEGRAS
Hello, Is there a way to filter errors issued from a specific client ip ? i.e. my loadbalancers are testing my https urls but cannot perform SSL handshake so I have lot of errors like that : [Mon May 04 08:24:24 2009] [info] [client x.x.x.x] (70014)End of file found: SSL handshake interrupted by

Re: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread Krist van Besien
2009/5/4 Asier Ramos : > In my configuration i especified that there are two different IP's but only > takes old certificate, no the one! Does your second hostname resolve to the second IP? Krist -- krist.vanbes...@gmail.com kr...@vanbesien.org Bremgarten b. Bern, Switzerland -- A: It reverses

[us...@httpd] config httpd for php5 howto

2009-05-04 Thread Teun
As many others, I have the same problem in ubuntu lamp. That the apache do not pars php files, but give a download action. This action is wrong. Caus it must pars php files. It do not. After changing some files it shows only the tekst of the php code. I still can not find the solution. Please w

[us...@httpd] How do I play out a request ??

2009-05-04 Thread ricardo13
Hi all, In this http://www.nabble.com/RewriteMap-PRG-By-Example-Using-C-to23283305.html link , I use a external program (in C) to rewrite URLs. In program, when I typed in browser localhost/1, or localhost/2, or localhost/3, they're mapped to a resource (a page). I have a reverse proxy then, w

RE: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread inas inassen
If you want to use subdomain based certificat and virtual host, please read this doc, it will help you understand the case you are experiencing and the solution you can adopte: http://fusesource.com/docs/framework/2.1/security/i382183.html http://www.verisign.com/ssl/ssl-information-center/

Re: [us...@httpd] config httpd for php5 howto

2009-05-04 Thread Eric Covener
On Mon, May 4, 2009 at 4:32 PM, Teun wrote: > As many others, I have the same problem in ubuntu lamp. That the apache do > not pars php files, but give a download action. This action is wrong. Caus > it must pars php files. It do not. After changing some files it shows only > the tekst of the php

[us...@httpd] serving multiple application servers under one domain name.

2009-05-04 Thread Ahmedkafi
Hello everybody, I have one domain name (www.example.com). I also have 3 different application all running under their own tomcat instances. (each application has its own tomcat). All 3 instance of tomcat use Apache Server for accepting requests. In httpd.conf Each tomcat instance has a corre

[us...@httpd] Unneeded Modules

2009-05-04 Thread Jason Todd Slack-Moehrle
Hi All, I am doing basic webserving, HTML, PHP, ColdFusion, some credit card processing, some CGI (for Blosxom), virtual hosting, mysql, etc I see that Apache is loading a ton of modules, what can I safely get rid of? LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_

Re: [us...@httpd] Unneeded Modules

2009-05-04 Thread William A. Rowe, Jr.
Jason Todd Slack-Moehrle wrote: > > I see that Apache is loading a ton of modules, what can I safely get rid > of? Get rid of all the modules which don't affect the configuration or the behavior of your server. The easiest way to determine this is to comment one out and use apachectl -t to find

Re: [us...@httpd] config httpd for php5 howto

2009-05-04 Thread André Warnier
Teun wrote: As many others, I have the same problem in ubuntu lamp. That the apache do not pars php files, but give a download action. This action is wrong. Caus it must pars php files. It do not. After changing some files it shows only the tekst of the php code. I still can not find the soluti

Re: [us...@httpd] serving multiple application servers under one domain name.

2009-05-04 Thread André Warnier
Ahmedkafi wrote: Hello everybody, I have one domain name (www.example.com). I also have 3 different application all running under their own tomcat instances. (each application has its own tomcat). All 3 instance of tomcat use Apache Server for accepting requests. In httpd.conf Each tomcat in

Re: [us...@httpd] Unneeded Modules

2009-05-04 Thread dan trainor
On Mon, May 4, 2009 at 6:35 PM, William A. Rowe, Jr. wrote: > Jason Todd Slack-Moehrle wrote: > > > > I see that Apache is loading a ton of modules, what can I safely get rid > > of? > > Get rid of all the modules which don't affect the configuration or the > behavior of your server. The easiest

Re: [us...@httpd] config httpd for php5 howto

2009-05-04 Thread Teun
Thanks for help. André Warnier schreef: Teun wrote: As many others, I have the same problem in ubuntu lamp. That the apache do not pars php files, but give a download action. This action is wrong. Caus it must pars php files. It do not. After changing some files it shows only the tekst of th

Re: [us...@httpd] Unneeded Modules

2009-05-04 Thread John Hudak
I would comment all of them out and see what is broken, then begin adding them in. To cut down on the randomess of the exercise, you might look at the source code to see what the modules actually do. BTW, how are you doing the credit card processing? I'd be interested in learning about this. In

Re: [us...@httpd] Unneeded Modules

2009-05-04 Thread Eric Covener
On Mon, May 4, 2009 at 6:35 PM, William A. Rowe, Jr. wrote: > Jason Todd Slack-Moehrle wrote: >> >> I see that Apache is loading a ton of modules, what can I safely get rid >> of? > > Get rid of all the modules which don't affect the configuration or the > behavior of your server.  The easiest way

RE: [us...@httpd] Apache 2.2.10 LDAPS to Active Directory

2009-05-04 Thread Robert Gonzales
I will try this tomorrow morning. But what about the question about this? Does anyone know? I am in the process of configuring a windows system with apache 2.2.10 installed on it. I have a few questions before we get started. 1. Is "LoadModule authnz_ldap_module modules/mod_authnz_ldap.so" th

Re: [us...@httpd] Unneeded Modules

2009-05-04 Thread Jonathan Zuckerman
On Mon, May 4, 2009 at 5:17 PM, Eric Covener wrote: > On Mon, May 4, 2009 at 6:35 PM, William A. Rowe, Jr. > wrote: >> Jason Todd Slack-Moehrle wrote: >>> >>> I see that Apache is loading a ton of modules, what can I safely get rid >>> of? >> >> Get rid of all the modules which don't affect the c

Re: [us...@httpd] config httpd for php5 howto

2009-05-04 Thread Jonathan Zuckerman
On Mon, May 4, 2009 at 4:29 PM, Teun wrote: > Thanks for help. > > > André Warnier schreef: >> >> Teun wrote: >>> >>> As many others, I have the same problem in ubuntu lamp. That the apache >>> do not pars php files, but give a download action. This action is wrong. >>> Caus it must pars php files

[us...@httpd] jk2 configuration problem

2009-05-04 Thread Arvin S
Hi,   I am trying to get basic loadbalancing using an apache web server and two tomcat servers in remote machines. I am using windows 2003 server as the OS for all the mcahines.   I have installed Apache 2.2 - using apache_2.2.11-win32-x86-openssl-0.9.8i.msi. I downloaded mod_jk-1.2.28-httpd-2.2.3