Re: [EMAIL PROTECTED] Access is slow when accessed by IP address instead of 'localhost'

2008-03-17 Thread Dinesh Kumar
This is resolved - an entry for 192.168.1.2 in the hosts file did it for access from the *same* machine. Now, I'm trying to check how to resolve the slow response time when accessed over the LAN. Thanks to Adam others who responded. Regards, Dinesh. On Tue, Mar 11, 2008 at 8:13 PM, David

[EMAIL PROTECTED] Load Balancing

2008-03-17 Thread Krist van Besien
I have a short question about mod_proxy_loadbalancer. I haven't used this yet, and am investigating if this module is worth upgrading our servers to 2.2 for. I currently use an apache server to forward requests to a backend application server. For performance reasons we want to add another

[EMAIL PROTECTED] weird behaviour: Apache still serve JS

2008-03-17 Thread Phi-Long LE
Experts, I have a weird behaviour between iPlanet Webserver and Apache 2.2.4. When requesting a JavaScript either Apache or iPlanet return code 200 on the first request. When requesting again the same Javascript, iPlanet returns code 304 but Apache still provide it returning code 200. Is

Re: [EMAIL PROTECTED] weird behaviour: Apache still serve JS

2008-03-17 Thread Nick Kew
On 17 Mar 2008, at 11:10, Phi-Long LE wrote: Experts, I have a weird behaviour between iPlanet Webserver and Apache 2.2.4. When requesting a JavaScript either Apache or iPlanet return code 200 on the first request. When requesting again the same Javascript, iPlanet returns code 304 but

Re: [EMAIL PROTECTED] how to print the list of installed modules?

2008-03-17 Thread Alvaro Linares
Hi Giovanni, Probe That on Linux ;-) : apachectl -D DUMP_MODULES /dev/lp 2008/3/17, Giovanni Gherdovich [EMAIL PROTECTED]: Hello, I would like to know if it is possible to print the list of the modules I've installed on my apache 2.0 webserver, or if it is possible to recover it from

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Wilda, Jet
I'm guessing that no one else is running 2.2.8 as a reverse proxy? ~Jet -Original Message- From: Wilda, Jet Hi, I just compiled Apache httpd 2.2.8 on RedHat 4.6 with kernel 2.6.9-67.ELsmp i686. I started it up using my configuration files from our 2.0.61 (changed the

RE: [EMAIL PROTECTED] Load Balancing

2008-03-17 Thread Narendra Verma
Hi Krist; There are two different options are available 1. Non clustered environment. (With sticky session on) In this type of configuration if any one application server would be down/failed then all sessions are created by this server would be destroyed. And all new coming requests would

Re: [EMAIL PROTECTED] Load Balancing

2008-03-17 Thread Sander Temme
On Mar 17, 2008, at 3:45 AM, Krist van Besien wrote: What would happen in this case were app1 dead. Would all requests then go to app2, or would half of all requests just fail? The former. And it'll pick the failed backend back up when it comes back online. S. -- Sander Temme [EMAIL

RE: [EMAIL PROTECTED] how to print the list of installed modules?

2008-03-17 Thread Narendra Verma
Hi, You can also use : $httpd.exe -l $httpd.exe -M (for DSO ) -Original Message- From: Alvaro Linares [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 7:03 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] how to print the list of installed

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Nils Jeppe
On Mon, 17 Mar 2008, Wilda, Jet wrote: I'm guessing that no one else is running 2.2.8 as a reverse proxy? I am not, but: ProxyPass /saleslead http://172.17.52.28:8091/saleslead ProxyPassReverse /saleslead http://172.17.52.28:8091/saleslead ProxyPass /salesleadv2

RE: [EMAIL PROTECTED] Load Balancing

2008-03-17 Thread Narendra Verma
In short All requests then go to app2. Narendra -Original Message- From: Sander Temme [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 7:30 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Load Balancing On Mar 17, 2008, at 3:45 AM, Krist van Besien wrote: What

RE: [EMAIL PROTECTED] how to print the list of installed modules?

2008-03-17 Thread Narendra Verma
Try this one instead of previous one You can also use : Apache/bin$./httpd -l Apache/bin$./httpd -M (static/dynamic) -Original Message- From: Narendra Verma [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 7:32 PM To: users@httpd.apache.org Subject: RE:

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Wilda, Jet
Opps my bad that was a copy and paste error. It is in there only once i.e. ProxyPass /saleslead http://172.17.52.28:8091/saleslead ProxyPassReverse /saleslead http://172.17.52.28:8091/saleslead ProxyPass /salesleadv2 http://172.17.52.28:8091/salesleadv2 ProxyPassReverse /salesleadv2

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Narendra Verma
Hi, I think no need to add trailing slash here, You can configure server itself to add this trailing slash. For example if you configured it as ProxyPassReverse /saleslead/ http://172.17.52.28:8091/saleslead/ Then your request on browser must be ../saleslead/ like that If I replace it by

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Wilda, Jet
Then why the warning when I don't have the trailing /? Thanks, ~Jet -Original Message- From: Narendra Verma [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 10:22 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Narendra Verma
I think this is not related solution for your specific problem. Ok can you configure as follow: ProxyPass /saleslead http://172.17.52.28:8091/saleslead ProxyPassReverse /saleslead http://172.17.52.28:8091/saleslead Only this configuration without configuring ProxyPass /salesleadv2

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Wilda, Jet
That won't work for us because I need both contexts. In other words they proxy back to WebLogic hosting a saleslead and a salesleadv2 application. So only having the saleslead proxy statements would make it so we couldn't get to the salesleadv2 application in WebLogic. Does that make sense?

[EMAIL PROTECTED] mod_ssl Unable to Configure Key

2008-03-17 Thread Rich
Hi folks. I'm having some issues with mod_ssl and I was told this is the place to be asking such questions. [Mon Mar 17 11:47:58 2008] [error] mod_ssl: Init: (wasabi.local:443) Unable to configure RSA server private key (OpenSSL library error follows) [Mon Mar 17 11:47:58 2008] [error]

Re: [EMAIL PROTECTED] how to print the list of installed modules?

2008-03-17 Thread Alvaro Linares
Hi Giovanni, Probe That on Linux ;-) : apachectl -D DUMP_MODULES /dev/lp Greetings, Alvaro Linares Cabré 2008/3/17, Giovanni Gherdovich [EMAIL PROTECTED]: Hello, I would like to know if it is possible to print the list of the modules I've installed on my apache 2.0 webserver, or if

RE: [EMAIL PROTECTED] [warn] worker http://some_ip:port/context already used by another worker ?

2008-03-17 Thread Nils Jeppe
On Mon, 17 Mar 2008, Wilda, Jet wrote: Fixed it for the /saleslead vs /salesleadv2. What does having or not having the trailing slash change or mean? Apache will match everything to the right side of the statement. So for example /saleslead will also be matched. But if you change it

Re: [EMAIL PROTECTED] mod_ssl Unable to Configure Key

2008-03-17 Thread Krist van Besien
On Mon, Mar 17, 2008 at 5:04 PM, Rich [EMAIL PROTECTED] wrote: Hi folks. I'm having some issues with mod_ssl and I was told this is the place to be asking such questions. [Mon Mar 17 11:47:58 2008] [error] mod_ssl: Init: (wasabi.local:443) Unable to configure RSA server private key

Re: [EMAIL PROTECTED] mod_ssl Unable to Configure Key

2008-03-17 Thread Rich
Hi there. I realized I didn't have the right files, so I redid the cert generation by restructuring that command, and it started to work. Now if I could only get my browser to respect the self signed cert. On Mar 17, 2008, at 5:00 PM, Krist van Besien wrote: # openssl errstr 0B080074

[EMAIL PROTECTED] Re: [mod_python] mod_python tutorial issues

2008-03-17 Thread Nilesh Govindrajan
Joseph, I am sending a CC of this mail to Apache Mailing list. I will tell you if any replies are received. Apache Mailing List: Please solve Joseph's problem with Apache, mod_python on windows xp sp2. please read all the messages in here (quotes). Joseph Sliz wrote: Sorry for the delay in

[EMAIL PROTECTED] Force charset into each VirtualHost setting

2008-03-17 Thread edward yoon
Hi, community. i'm newbie in here. I have some question. Can i set the charset into each VirtualHost setting as describe below? -- LoadModule charset_module modules/mod_charset.so virtualhost ... forceCharset euc-kr ... /virtualhost virtualhost ... forceCharset utf-8 ...