Re: [users@httpd] only one worker process

2011-09-06 Thread Prasanna Ram Venkatachalam
I'd like to make a multithreaded test and start only one worker process. Can anybody help me with the proper configuration? The MPM for above model should be worker MPM. Refer to this link http://httpd.apache.org/docs/2.0/mod/worker.html IfModule worker.c StartServers 1

[us...@httpd] AuthBasic - Adding one Exception

2009-10-09 Thread Prasanna Ram Venkatachalam
Hi All, I am using Apache configured with mod_auth_basic module. I added the AuthType Basic and other related information in Location /. This is protecting all accesses to all locations in WebServer. Now i want to add one exception for a particular page /xyz, if it is accessed from a particular

Re: [us...@httpd] AuthBasic - Adding one Exception

2009-10-09 Thread Prasanna Ram Venkatachalam
Can't you just remove the Require valid-user ? Thank Andre. I tried that. Removing that from Location /xyz is still asking for credentials :( (i guess because / is protected) I want the whole root to be protected, so i cannot remove it from Location / Just want to add an exception for a single

Re: [us...@httpd] Shared Memory Size?

2009-07-01 Thread Prasanna Ram Venkatachalam
Does anybody know about the size spec of the shared memory? If you are using Linux, check */proc/sys/kernel/shmmax*. That tells the max size a single shared memory can have. If you want more change it and reboot If you use solaris, check */usr/sbin/sysdef | grep SHMMAX* to get the current

Re: [us...@httpd] Apache 2.3 source?

2009-06-18 Thread Prasanna Ram Venkatachalam
Is it possible to get a copy of the Apache 2.3 source? Looked around on the source distribution site and can't find anything. Might help. This is an automated snapshot system. Not sure if it completely works!! :( http://httpd.apache.org/dev/ http://cvs.apache.org/snapshots/httpd/ Regards

Re: [us...@httpd] MPM Default in Linux

2009-06-17 Thread Prasanna Ram Venkatachalam
Only installing Apache ??? Couldn't insert only module worker.c ?? Nope. You have to recompile it as far as I know! Regards Prasanna Ram

Re: [us...@httpd] MPM Default in Linux

2009-06-17 Thread Prasanna Ram Venkatachalam
What default values and maximum values for directives (ServerLimit, MaxClient, ThreadsPerChild, etc) ??? Chk this http://httpd.apache.org/docs/2.0/mod/worker.html And follow the link for each directive to find more about it Regards Prasanna Ram

Re: [us...@httpd] MPM Default in Linux

2009-06-16 Thread Prasanna Ram Venkatachalam
I read Apache's documentation and would like to know: How do default MPM module in Linux ?? Prefork or Worker ?? Prefork is the default Other question. How do I change to MPM Worker ?? Compile like this ./configure --prefix=/usr/local/apache --with-mpm=worker Regards Prasanna Ram

Re: [us...@httpd] Information in mod_status to text file

2009-06-08 Thread Prasanna Ram Venkatachalam
mod_status processes the request for server status dynamically. what i mean by dynamic is that, apache have structures into it which will be updated by each request and activity inside it. So there is no refresh rate at which it publishes information. Its just dynamic. Open in it a explorer and

Re: [us...@httpd] Information in mod_status to text file

2009-06-08 Thread Prasanna Ram Venkatachalam
Chk this.. http://gd.tuwien.ac.at/infosys/servers/http/apache-apache-1.3/src/support/log_server_status On Mon, Jun 8, 2009 at 7:03 PM, ricardo figueiredo ricardoogra...@gmail.com wrote: Hi all, thank you by code. But, what's log_server_status ?? a program ?? I google it, but didn't find

Re: [us...@httpd] Good Prefork Configuration for better performance ??

2009-06-07 Thread Prasanna Ram Venkatachalam
working. Thanks. *Greetings * BipinDas +966543680643 *From:* Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] *Sent:* Sunday, June 07, 2009 8:39 AM *To:* users@httpd.apache.org *Subject:* Re: [us...@httpd] Good Prefork Configuration for better performance ?? Dear BipinDas

Re: [us...@httpd] Good Prefork Configuration for better performance ??

2009-06-06 Thread Prasanna Ram Venkatachalam
Dear BipinDas, Under these loads i would suggest you to try Worker-MPM model. Because in prefork whatever you do, if you get 500 requests which are being served *simultaneously*, it would create 500 processes!! Its a one process per request model. So at higher load you would definitely run out of

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread Prasanna Ram Venkatachalam
? My goal is to set up this server for serving around 2000 connections simultaneously with minimum load. Any more changes to be needed ? Thanks again. *Greetings * *BipinDas* *From:* Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] *Sent:* Wednesday, May 20, 2009 4:47 AM

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread Prasanna Ram Venkatachalam
SERVER_CONFIG_FILE=conf/httpd.conf Thanks for your time. *Greetings * *BipinDas* *From:* Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] *Sent:* Wednesday, May 20, 2009 10:11 AM *To:* users@httpd.apache.org *Subject:* Re: [us...@httpd] Apache hangs when maximum connection beyond

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread Prasanna Ram Venkatachalam
ServerLimit is 21 in worker and ThreadsPerChild is 25. So that means at MAX, 21 httpd will be running with with 25 threads each serving requests. I don't think it will serve 2000 connections simultaneously. Can you change it to 50 and 41 and see whether it works? (just a thought) Regards Prasanna

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread Prasanna Ram Venkatachalam
running in the system would shoot up unneccessarily taking more memroy). In which model your apache is running now? Regards Prasanna Ram On Wed, May 20, 2009 at 7:11 AM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: ServerLimit is 21 in worker and ThreadsPerChild is 25. So that means

Re: [us...@httpd] Apache child process not exiting after it served MaxRequestsPerChild

2009-05-12 Thread Prasanna Ram Venkatachalam
I am not 100% sure. Do you think Keep Alive time should be revisited? I remember hearing it somewhere. Regards Prasanna Ram On Tue, May 12, 2009 at 6:24 PM, Karthik kanna kanna...@yahoo.com wrote: Hi, I am using Apache 2.0.59 in AIX 5.3. Apache is running as apache user-id, even the parent

Re: [us...@httpd] Apache child process not exiting after it served MaxRequestsPerChild

2009-05-12 Thread Prasanna Ram Venkatachalam
it is related to keepalive setting, because few child process dies properly after it served 3 requests. Regards, Karthik Kanna -- *From:* Prasanna Ram Venkatachalam vpra...@gmail.com *To:* users@httpd.apache.org *Sent:* Tuesday, 12 May, 2009 6:53:18 PM

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

2009-05-12 Thread Prasanna Ram Venkatachalam
mod_actions should be included I guess. Can you see it precompiled with apache using httpd -l? or see it in httpd.conf LoadModule section? On Wed, May 13, 2009 at 9:43 AM, Rex C. Eastbourne rex.eastbou...@gmail.com wrote: On Sun, May 10, 2009 at 5:59 PM, Eric Covener cove...@gmail.com wrote:

Re: [us...@httpd] ssl on apache

2009-05-07 Thread Prasanna Ram Venkatachalam
Yes Correct! On Thu, May 7, 2009 at 1:50 PM, Melanie Pfefer melanie_pfe...@yahoo.co.ukwrote: Hi Let’s start from 0: I am following http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html to create a real certificate. openssl genrsa -des3 -out server.key 1024 openssl req -new -key server.key

Re: [us...@httpd] renewing a certificate

2009-05-06 Thread Prasanna Ram Venkatachalam
Melanie, i think keytool does not create any certificate. Its just a key/certificate management utility. http://java.sun.com/j2se/1.4.2/docs/tooldocs/solaris/keytool.html What did you use to get server.crt? openssl ,selfssl or some free sites available?? Regards Prasanna Ram On Wed, May 6, 2009

Re: [us...@httpd] renewing a certificate

2009-05-06 Thread Prasanna Ram Venkatachalam
oh.. i hope server.crt is the certificate you are using? right? On Wed, May 6, 2009 at 5:44 PM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: Melanie, i think keytool does not create any certificate. Its just a key/certificate management utility. http://java.sun.com/j2se/1.4.2/docs

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

2009-05-06 Thread Prasanna Ram Venkatachalam
Yes Jonathan, Its normal in some cases. But i dont know whether we will get double slashes in path to executable of a service. I am not getting it in my machine for apache!. And -k runservice outside of quotes is also normal, whatever inside of double quotes is called and whatever is after that is

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

2009-05-06 Thread Prasanna Ram Venkatachalam
Indeed :), it wud wrk great i guess ( just remember a recetnt thread running for this :)) Just now I noticed that log. may be he need to escape double quotes as well (\path\) when starting from that cluster?? Regards Prasanna Ram On Wed, May 6, 2009 at 10:46 PM, André Warnier a...@ice-sa.com

Re: [us...@httpd] Newbie. Apache doesnt start ok

2009-05-06 Thread Prasanna Ram Venkatachalam
that is a warning not an error. Mostly httpd.conf will be inside conf directory under apache folder. Did you see one? /etc/apache2/conf/httpd.conf If yes, probably thats the one apache is using. Search ServerName (and put FQDN of your machine there maybe) and make sure you uncomment it. Regards

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

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

Re: [us...@httpd] cannot load c:/php/php5apache2_2.dll into server

2009-05-03 Thread Prasanna Ram Venkatachalam
I agree to Andre. Sue, if you do not need PHP, try commenting it out from LoadModule section. Good Luck Regards Prasanna Ram On Sun, May 3, 2009 at 6:37 PM, Sue Tavidian smtavapa...@yahoo.com wrote: sorry for the late response. I installed; Win32 Binary without crypto (no mod_ssl) (MSI

Re: [us...@httpd] cannot load c:/php/php5apache2_2.dll into server

2009-05-03 Thread Prasanna Ram Venkatachalam
. --- On *Sun, 5/3/09, Prasanna Ram Venkatachalam vpra...@gmail.com*wrote: From: Prasanna Ram Venkatachalam vpra...@gmail.com Subject: Re: [us...@httpd] cannot load c:/php/php5apache2_2.dll into server To: users@httpd.apache.org Date: Sunday, May 3, 2009, 1:27 PM I agree to Andre. Sue, if you do

Re: [us...@httpd] Re: IPv6 support on Apache-2.2.x

2009-04-23 Thread Prasanna Ram Venkatachalam
Is it necessary to access using scoped (link local?) addresses? Do you have a global address which u can use? I did some stuffs around IPv6 URLs and we used always Global addresses when creating a HTTP request. I was wondering is it really a specific requirement or you are just using it. Regards

Re: [us...@httpd] Re: IPv6 support on Apache-2.2.x

2009-04-23 Thread Prasanna Ram Venkatachalam
address which u can use? Could you please let me know on how do I create a IPv6 global address... On Thu, Apr 23, 2009 at 12:25 PM, William A. Rowe, Jr. wr...@rowe-clan.net wrote: Prasanna Ram Venkatachalam wrote: Is it necessary to access using scoped (link local?) addresses? Do you have

Re: [us...@httpd] Re: IPv6 support on Apache-2.2.x

2009-04-23 Thread Prasanna Ram Venkatachalam
Linux which gives me only Ipv6 link local address with ifconfig command(no global address found). So to clearer, DOES IT MEAN THAT IPv6 LINK LOCAL ADDRESS IS NOT SUPPORTED WITH APACHE? On Fri, Apr 24, 2009 at 9:48 AM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: Am not sure of RFC

Re: [us...@httpd] Re: IPv6 support on Apache-2.2.x

2009-04-23 Thread Prasanna Ram Venkatachalam
field of it.) Thanks a lot in advance. On Fri, Apr 24, 2009 at 10:25 AM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: I always use global so i am not sure . Check error log of apache first. If apache is not recognizing it, it should log something, if at all the request reaches Apache

Re: [us...@httpd] Weird timeout connections during benchmark (apache completely stops)?!

2009-04-16 Thread Prasanna Ram Venkatachalam
Did the error log say something? It surely will have something incase its not able to find any resources or breached any limits! Regards Prasanna Ram On Thu, Apr 16, 2009 at 5:57 PM, asd asd ya...@hotmail.com wrote: I'm trying to get an accurate request/per second of my apache for different

Re: [us...@httpd] Weird timeout connections during benchmark (apache completely stops)?!

2009-04-16 Thread Prasanna Ram Venkatachalam
Could you give more detail about your apache? Also wud be better if u give the details of MPM mode u are using and their configuration details. I dont think there is any limit reg requests specific from external host. Prasanna Ram On Thu, Apr 16, 2009 at 7:47 PM, ya...@hotmail.com wrote:

Re: [us...@httpd] Weird timeout connections during benchmark (apache completely stops)?!

2009-04-16 Thread Prasanna Ram Venkatachalam
Guys, if i remember currently the default number of concurrent connections served by apache is 256. Right? Shud be good if u tune prefork settings further in httpd-mpm.conf and then rerun your test. Regards Prasanna Ram On Fri, Apr 17, 2009 at 6:07 AM, asd asd ya...@hotmail.com wrote: That is

Re: [us...@httpd] Apache won't display index.cgi

2009-04-16 Thread Prasanna Ram Venkatachalam
Is it possible that the authentication module (whatever it is) you are using overrides the default index page settings of apache? If thats so, it wud be better to look into the paramters used with that particular module! Since without the module, its working, this might be the reason. (sorry i

Re: [us...@httpd] Strange compile error for Apache 2.2.11

2009-04-10 Thread Prasanna Ram Venkatachalam
Hmmm.. i am not sure about the second error. But the first one related to apr rings some bell. Did you try using --with-apr option to explicitly mention path to apr libraries if you have them separately built? Prasanna Ram On Fri, Apr 10, 2009 at 10:25 PM, Nishaliny Thurairatnam

Re: [us...@httpd] Strange compile error for Apache 2.2.11

2009-04-10 Thread Prasanna Ram Venkatachalam
On Sat, Apr 11, 2009 at 10:09 AM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: Hmmm.. i am not sure about the second error. But the first one related to apr rings some bell. Did you try using --with-apr option to explicitly mention path to apr libraries if you have them separately built

Re: [us...@httpd] HTTP Headers appear in HTML page

2009-04-08 Thread Prasanna Ram Venkatachalam
using mod_proxy, but no special configuration. Only ProxyPass settings. Thanks, Marius On Wed, Apr 8, 2009 at 8:33 AM, Prasanna Ram Venkatachalam vpra...@gmail.com wrote: Its really wierd! I think 'Apache-Coyote' is the server header from Tomcat and if the header is from Apache, it shud

Re: [us...@httpd] HTTP Headers appear in HTML page

2009-04-07 Thread Prasanna Ram Venkatachalam
Its really wierd! I think 'Apache-Coyote' is the server header from Tomcat and if the header is from Apache, it shud be 'Apache'. Since u say that tomcat serve the pages correctly. I guess u are using mod_proxy to redirect the page to tomcat. Am i right? If thats the case theres is something in

Re: [us...@httpd] Apache 2.2 certificate directory

2009-04-06 Thread Prasanna Ram Venkatachalam
As far as i remember there is no such thing as standard for putting certificates though i suggest not to put certificates anywhere in DocumentRoot(s) (just to avoid extrernal access). Apart from that any localsystem location should be fine. For finer understanding/convenience u can put it under

Re: [EMAIL PROTECTED] Pass-through LDAP authentication with Internet Explorer and Active Directory

2008-09-16 Thread Prasanna Ram Venkatachalam
I guess there is SSPIOmitDomain directive which can be turned Off, to include the domain as well along with user name. (in mod_auth_sspi) Regards Prasanna Ram On Tue, Sep 16, 2008 at 11:53 PM, Clayton Hicklin [EMAIL PROTECTED]wrote: On Tue, Sep 16, 2008 at 1:22 PM, Clayton Hicklin [EMAIL

[EMAIL PROTECTED] Apache 2.2.x on IPv6

2008-05-19 Thread Prasanna Ram Venkatachalam
Hi All, Does anyone know about any available IPv6 enabled binary of Apache 2.2.x on Windows? If not, how to compile Apache 2.2.x in Windows with IPv6 enabled? Please help. Thanks in advance Regards-- Prasanna Ram

[EMAIL PROTECTED] Fwd: Apache 2.2.x on IPv6

2008-05-19 Thread Prasanna Ram Venkatachalam
-- Forwarded message -- From: Prasanna Ram Venkatachalam [EMAIL PROTECTED] Date: May 19, 2008 10:28 PM Subject: Apache 2.2.x on IPv6 To: users@httpd.apache.org Hi All, Does anyone know about any available IPv6 enabled binary of Apache 2.2.x on Windows? If not, how to compile

Re: [EMAIL PROTECTED] Limit on ServerName?

2008-05-02 Thread Prasanna Ram Venkatachalam
On 5/2/08, Joshua Slive [EMAIL PROTECTED] wrote: On Fri, May 2, 2008 at 12:26 AM, Prasanna Ram Venkatachalam [EMAIL PROTECTED] wrote: Hi Friends, Is there any character limit in mentioning Server name using ServerName directive? I haven't checked the code, but I'm pretty sure you'll

[EMAIL PROTECTED] Limit on ServerName?

2008-05-01 Thread Prasanna Ram Venkatachalam
Hi Friends, Is there any character limit in mentioning Server name using ServerName directive? Regards Prasanna Ram

Re: [EMAIL PROTECTED] apache install error

2008-05-01 Thread Prasanna Ram Venkatachalam
Try using another port by modifying Listen directive in httpd.conf file and restart the service. I got the a similar error while installation once and this helped me. Regards Ram On 5/2/08, Patrick Kane [EMAIL PROTECTED] wrote: I am having a bit of trouble installing Apache on my Windows XP