[EMAIL PROTECTED] Benchmarking proxy balancer

2008-09-30 Thread nitesh naik
Hi, Did any one benchmark proxy balancer ? On Quad core ( 4 cpu )machine with 16 GB of RAM Apache could serve only 12,000 req / sec and same results we got on Two Quad core ( 8 cpu) machine . We use worker as mpm module and 3 backend nodes and we didn't see much load on backend mode however

Re: [EMAIL PROTECTED] Tomcat Issue

2008-09-30 Thread André Warnier
Mohit Anchlia wrote: I wasn't able to find appropriate forum for Tomcat. I thought I'll check if this is right place. It is not. Tomcat's list is here : [EMAIL PROTECTED] I am using tomcat as my web and app server. I need to rewrite URL just like mod_rewrite in apache. Is that possible to do

[EMAIL PROTECTED] windows top to view apache scripts called.

2008-09-30 Thread Brent Clark
Hi I got this developer that cant code for .. Anyway on my *BSD / Linux boxes I just run top and I can view the scripts called etc. For windows in Task Manager it just says perl.exe. Would anyone know how to view the script thats causing havoc on my machine. Regards Brent Clark

[EMAIL PROTECTED] question on DirectoryIndex inheritance

2008-09-30 Thread André Warnier
Hi. Apache 2.2.x, any platform Suppose I have this configuration snippet : Directory /var/www/site/topdir Options Indexes DirectoryIndex index.html welcome.html index.php whatever.html ... /Directory Directory /var/www/site/topdir/subdir Options ? DirectoryIndex ?? /Directory

Re: [EMAIL PROTECTED] Deny/Allow directives within Directory have no effect [Workaround]

2008-09-30 Thread Steffen Neumann
On Mon, 2008-09-29 at 22:28 +0200, André Warnier wrote: The first thing maybe to check is if you don't by any chance have some Location sections that override your Directory section. Yup, that got me on the right track. I had a spurious Location / I copied from a httpd.conf that was used for

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread Brian Mearns
Not sure what the default xampp setup is, but look for the Listen directive to verify which ports apache is actually listening on, and make sure those are forwarded. Also, I'm not sure how much you know about networks (so pardon me if you consider this suggestion offensive): are you connecting to

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 04:58:31 pm Brian Mearns wrote: Not sure what the default xampp setup is, but look for the Listen directive to verify which ports apache is actually listening on, and make sure those are forwarded. Also, I'm not sure how much you know about networks (so pardon me

[EMAIL PROTECTED] disable to responded to an unrequested SSL Certificate

2008-09-30 Thread Andre Hübner
Hi List, costumer did a nessus pci-scan to fit worldpay requirements. Result was a security risk at ssl section: Family: Remote Shell Access Critical 443/tcp 11875 Description: The remote host responded to an unrequested SSL Certificate. The remote SSL server should have sent back an Error

[EMAIL PROTECTED] Mod_Proxy and 100-Continue

2008-09-30 Thread Tom Wells
Hi Group I'm fairly confident I've found a bug in mod_proxy in Apache 2.2.9 but would like your opinion before I log anything to the bug tracker. It's something I discovered while working in mod_python, but I've managed to get it occurring with a bare-bones Apache 2.2.9 setup using only mod_proxy

[EMAIL PROTECTED] problem with cgi functionality

2008-09-30 Thread Mohan gupta
hello everyone, i am very new to apache and tried using it ,but my problem is i have cgi script written in c++ which outputs a perfect xhtml code and i also output the content type declaration at the start i.e before ?xml through my program but when this script is fetched by the browser

Re: [EMAIL PROTECTED] Question about SSL and Apache and a certificate error

2008-09-30 Thread Justin Pasher
Mike Soultanian wrote: Justin Pasher wrote: Ahhh... Now it should actually be possible. If possible, I would (personally) try to push all traffic to www.csulb.edu whenever they try to pull csulb.edu. Whether or not this is possible in your situation, I do not know. Something like this in the

Re: [EMAIL PROTECTED] Apache Http sticky session problem.

2008-09-30 Thread Rafael Genovez Idalgo
Hi. Here is your answer (I think hehe :-)) workers.properties of apache: === worker.list=bal1,stat1 worker.Tomcat61.type=ajp13 worker.Tomcat61.host=172.28.11.4 worker.Tomcat61.port=8009 worker.Tomcat61.lbfactor=10 worker.Tomcat61.connect_timeout=1 worker.Tomcat61.prepost_timeout=1

Re: [EMAIL PROTECTED] Mod_Proxy and 100-Continue

2008-09-30 Thread Nick Kew
On Tue, 30 Sep 2008 09:50:00 -0400 Tom Wells [EMAIL PROTECTED] wrote: ServerName munchkin.synthesis.co.za Header add Set-Cookie MOD_PROXY_FOOD=FOO; early Why? The early keyword exists to help developers simulate a request, for example when debugging a new module. Perhaps it should've

[EMAIL PROTECTED] Writing too much to stderr kill apache 2.2.9 on windows

2008-09-30 Thread Artem Kuchin
Hello! Windows 2003, Apache 2.2.9, active state perl. There is a huge script which does a lot of data manip and working with mysql. Suddenly, when number of products in orders grew it stopped working. The script's perl precess was in the memory, but there were no lines in access log or error

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread jg6789
listens on 80 then port 443. Yes I am using public ip address to connect via browser. and port forwarding is forwarding to the local ip 192.168.x.x - Original Message - From: Brian Mearns [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Tuesday, September 30, 2008 4:28 AM Subject:

Re: [EMAIL PROTECTED] Tomcat Issue

2008-09-30 Thread Mohit Anchlia
Thanks. I subscribed to tomcat email list On Tue, Sep 30, 2008 at 12:27 AM, André Warnier [EMAIL PROTECTED] wrote: Mohit Anchlia wrote: I wasn't able to find appropriate forum for Tomcat. I thought I'll check if this is right place. It is not. Tomcat's list is here : [EMAIL PROTECTED] I

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread jg6789
Should I change following below for my ip to be reached? The port forwarding instructions on apaches website says to forward port 443(in router) to my ip and all should be fine. Someone mentioned to edit this httpd statement below. If that is true then would I have it listen on port 443 as

[EMAIL PROTECTED] SSl question

2008-09-30 Thread manning allan
I have apache set up on my home PC. I handle many domains, many of which are websites located on Tripod or Geocities, and I am just effectively forwarding the name to the current location. I have edited my http.conf to direct the various domain names to various folders in my httdocs folder, where

Re: [EMAIL PROTECTED] Mod_Proxy and 100-Continue

2008-09-30 Thread Tom Wells
On Tue, Sep 30, 2008 at 11:00 AM, Nick Kew [EMAIL PROTECTED] wrote: On Tue, 30 Sep 2008 09:50:00 -0400 Tom Wells [EMAIL PROTECTED] wrote: The early keyword exists to help developers simulate a request, for example when debugging a new module. Perhaps it should've remained undocumented.

Re: [EMAIL PROTECTED] problem with cgi functionality

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 08:03:15 pm Mohan gupta wrote: hello everyone, i am very new to apache and tried using it ,but my problem is i have cgi script written in c++ which outputs a perfect xhtml code and i also output the content type declaration at the start i.e before ?xml

Re: [EMAIL PROTECTED] SSl question

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 09:04:55 pm manning allan wrote: I have apache set up on my home PC. I handle many domains, many of which are websites located on Tripod or Geocities, and I am just effectively forwarding the name to the current location. I have edited my http.conf to direct the

Re: [EMAIL PROTECTED] SSl question

2008-09-30 Thread J. Greenlees
Nilesh Govindrajan wrote: On Tuesday 30 September 2008 09:04:55 pm manning allan wrote: I have apache set up on my home PC. I handle many domains, many of which are websites located on Tripod or Geocities, and I am just effectively forwarding the name to the current location. I have edited

RE: [EMAIL PROTECTED] SSl question

2008-09-30 Thread manning allan
Allan Manning MIS Employee Health Safety Rep (certified) TG Minto Corporation 300 Toronto St. Palmerston, Ont., N0G 2P0 (519) 417-2249 Direct Line (519) 343-2800 Ext.2249 (519) 343-3200 Fax TG VoIP 676-2249 -Original Message- From: J. Greenlees [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: [EMAIL PROTECTED] Question about SSL and Apache and a certificate error

2008-09-30 Thread Mike Soultanian
Justin Pasher wrote: If you have more (sub)domains that point to the same virtualhost, then you won't be able to use the above directive as-is, since it's designed to funnel ALL requests through www.csulb.edu. It's mainly designed for sites that have a handful of alias domains, but only one

Re: [EMAIL PROTECTED] mod_auth_ldap

2008-09-30 Thread Sheryl
Are you aware that there is no such module in 2.2.x? Most of the auth modules were renamed. You probably want to load mod_ldap and mod_authnz_ldap. No I was not aware. Thank you. However I am still out of luck as there is no module with *ldap* in the name. :( Did you add the flags

Re: [EMAIL PROTECTED] SSl question

2008-09-30 Thread J. Greenlees
manning allan wrote: OK, but I want to make it so that if I input http:// into the address bar, it tells me I have to use https:// I also would like to be able to use http:// for the other domains I use. Do I have to make a fancy entry into the httpd.conf file? yup. the virtual host you

Re: [EMAIL PROTECTED] Mod_Proxy and 100-Continue

2008-09-30 Thread Nick Kew
On Tue, 30 Sep 2008 12:00:56 -0400 Tom Wells [EMAIL PROTECTED] wrote: Maybe it's not a bug, but it certainly is inconsistent - and certainly something has has changed between the versions - so I wanted to highlight this. You're right. Sorry if I came across a bit grumpy. Anyway, I think

Re: [EMAIL PROTECTED] Mod_Proxy and 100-Continue

2008-09-30 Thread Tom Wells
On Tue, Sep 30, 2008 at 1:48 PM, Nick Kew [EMAIL PROTECTED] wrote: That's section 8.2.3 of RFC2616. But anyway, I don't see why use the early keyword. As mentioned earlier, I'm not actually using mod_headers or the early keyword at all, I was using it to demonstrate the issue with mod_proxy.

RE: [EMAIL PROTECTED] SSl question

2008-09-30 Thread manning allan
Where is the list archives, I have searched the documentation (2.2) and can find how to create virtual hosts (which I have already done) but not how to add https to a virtual host, can you direct me to the archives Allan Manning MIS Employee Health Safety Rep (certified) TG Minto Corporation 300

[EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread jwberger
I am novice when it comes to Apache. I have installed 2.2.9 on a Windows 2003 server and can get it to run fine. The server has one NIC with three IP addresses bound to it. In installed Apache as a Windows service and edited the httpd.conf file so that the server listened on port 8080. I

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
You /can/ run multiple sites from different IP addresses on the same or different ports, using virtual hosts, which are well documented in apache. It basically just allows you to use custom configurations depending on which IP address is accessed. So for instance, you could have a different

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
I see your issue. To the best of my knowledge, it just isn't possible. Like I said, a port maps a connection on an interface to a process: the OS has no way of knowing how to pick a process other than that. The only possible workaround I can think of would be a bit of a doozie: you could write

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread jwberger
We may be able to get by with the short time Apache restarts, but I wanted to exhuast all options before going down a certain path. Thanks for all the help. John Brian Mearns-2 wrote: I see your issue. To the best of my knowledge, it just isn't possible. Like I said, a port maps a

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread William A. Rowe, Jr.
jwberger wrote: I am novice when it comes to Apache. I have installed 2.2.9 on a Windows 2003 server and can get it to run fine. The server has one NIC with three IP addresses bound to it. In installed Apache as a Windows service and edited the httpd.conf file so that the server listened on

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
Well look at that. Thanks for correcting me, even if you did it rather unpleasantly. It's always nice to learn something new. That's why I try to preface my comments with soft phrases like to the best of my knowledge. -Brian You seem to be getting quite a bit of incorrect advise, so I'll hint

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread jg6789
John, We too are limited to port 8080. since our ISP blocks port 80. Have you ever found a work around for this? We currently have to have our domain [sub.domain.com] redirect to 72.x.x.x.:8080 in order for it to work. Now users see the ip address in the browser address bar. not good. not

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Frank Gingras
Jay, A business Internet account would not have that limitation - you might even be able to call your ISP to lift this restriction, provided it does not breach your contract agreement, and that you can prove that your server is secure. Frank [EMAIL PROTECTED] wrote: John, We too are

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
Some ISPs don't block port 80 for residential accounts, either. I'm on Comcast in the Boston area, and (for now) I've got port 80 free. They did just start blocking 25, though, so they might be coming for 80 next. -Brian On Tue, Sep 30, 2008 at 5:31 PM, Frank Gingras [EMAIL PROTECTED] wrote:

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
How are you redirecting to the IP address? I used to use dyndns.com for my subdomain name, and I was able to append the port number with no problem. E.g., my subdomain was something like bmearns.homeip.net, so I just went to http://bmearns.homeip.net:8080. Do you not want users to see your IP

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread jg6789
enjoy it while you can. Jay - Original Message - From: Brian Mearns [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Tuesday, September 30, 2008 2:36 PM Subject: Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080 Some ISPs don't block port 80 for residential

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread jg6789
We are using dydns too. We can append the port number, sure. that sucks for users though. (thats why we use webhop)maybe we should petition dyndns to allow the domains they hand out to be linked to an IPADDRESS:PORT instead of just an IP. That would elminate any workarounds like webhop and

[EMAIL PROTECTED] Proxy to Tomcat AJP

2008-09-30 Thread George Mashini
Hello, I setup Apache to proxy to Tomcat using AJP, currently without SSL. This is being used to connect a Flex application that uses AMF to Java on the back end. All AMF calls are done using a POST to a servlet. I have 3 tomcat instances running on separate ports. Login is used for logging

[EMAIL PROTECTED] Proxy to Tomcat AJP

2008-09-30 Thread George Mashini
Hello, I setup Apache to proxy to Tomcat using AJP, currently without SSL. This is being used to connect a Flex application that uses AMF to Java on the back end. All AMF calls are done using a POST to a servlet. I have 3 tomcat instances running on separate ports. Login is used for logging