[us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc

2009-08-11 Thread Martijn Moret
Hi, We use Apache httpd 2.2.11 on Solaris 10 (Sparc). I compiled httpd myself with the following options: # ./httpd -V Server version: Apache/2.2.11 (Unix) Server built: Feb 5 2009 09:00:47 Server's Module Magic Number: 20051115:21 Server loaded: APR 1.3.3, APR-Util 1.3.4 Compiled using: APR 1

[us...@httpd] warning message : what shall I do ?

2009-08-11 Thread Etienne Loutrel
hello my apache server keeps sending me warning messages when I reload it on my ubuntu server and I do not know how to fix that : [Tue Aug 11 10:23:30 2009] [warn] NameVirtualHost *:80 has no VirtualHosts [Tue Aug 11 10:23:30 2009] [warn] NameVirtualHost *:80 has no VirtualHosts [Tue Aug 11 10:23

Re: [us...@httpd] warning message : what shall I do ?

2009-08-11 Thread Jorge Schrauwen
removing the line "NameVirtualHost *:80" should fix it. ~Jorge On Tue, Aug 11, 2009 at 10:32 AM, Etienne Loutrel wrote: > hello > > my apache server keeps sending me warning messages when I reload it on my > ubuntu server and I do not know how to fix that : > > [Tue Aug 11 10:23:30 2009] [warn]

[us...@httpd] Tomcat clustering issue

2009-08-11 Thread Sergey Udaltsov
I have 2 clustered tomcat 5.5 instances running on Windows Server 2003 behind Apache load balancer (using AJP protocol) For some urls (I cannot get the pattern), I am getting the error on frontend. In Apache logs, I see the following: [Thu Aug 06 17:34:19 2009] [error] (OS 10061)No connection coul

[us...@httpd] mod_cache not working

2009-08-11 Thread Shibi NS
I have the following configuration in my httpd.conf LoadModule cache_module modules/mod_cache.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule perl_module modules/mod_perl.so CacheEnable disk /specs/ CacheRoot /data/cache/ SetEnvIfNoCase request_uri \.html$ gzip cache-enable=

Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc

2009-08-11 Thread Eric Covener
Can you find the processes using high cpu and post the unique parts of pstack output? -- Eric Covener cove...@gmail.com - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/user

Re: [us...@httpd] mod_cache not working

2009-08-11 Thread Eric Covener
On Tue, Aug 11, 2009 at 5:25 AM, Shibi NS wrote: > > I have the following configuration in my httpd.conf > > LoadModule cache_module modules/mod_cache.so > LoadModule disk_cache_module  modules/mod_disk_cache.so > LoadModule perl_module modules/mod_perl.so > > CacheEnable disk /specs/ > CacheRoot /

RE: [us...@httpd] Re: backup & restore apache & mysql

2009-08-11 Thread Richard Peacock
Hello I just wanted to provide an update to the list of my implemented backup procedure (it may help with other people in the same position!) 1. Apache - rsync the file httpd.conf and the conf.d folder over to another machine which is configured with the same Apache version (2.2 IIRC) - it a

Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc

2009-08-11 Thread Martijn Moret
Van: "Eric Covener" Aan: users@httpd.apache.org Verzonden: Dinsdag 11 augustus 2009 13:17:23 GMT +01:00 Amsterdam / Berlijn / Bern / Rome / Stockholm / Wenen Onderwerp: Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc Can you find the processes using high cpu and pos

Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc

2009-08-11 Thread Eric Covener
On Tue, Aug 11, 2009 at 8:00 AM, Martijn Moret wrote: >  fee5c4fc _ZN27WpiWebServerApacheConnector4ReadEPcPm (253038, 26f898, > fe5fa92c, fee45c90, ff03e3c0, ff0485b8) + 8 >  fee5c2fc _ZN27WpiWebServerApacheConnector7ReadAllEPPcPm (253038, 26f898, > fe5fa92c, 2, 80808000, 0) + 1e8 >  fee45c90 _ZN

Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc

2009-08-11 Thread Martijn Moret
Van: "Eric Covener" Aan: users@httpd.apache.org Verzonden: Dinsdag 11 augustus 2009 14:25:27 GMT +01:00 Amsterdam / Berlijn / Bern / Rome / Stockholm / Wenen Onderwerp: Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris 10 sparc On Tue, Aug 11, 2009 at 8:00 AM, Martijn Moret w

Re: [us...@httpd] mod_cache not working

2009-08-11 Thread Shibi NS
Thanks That helped me to find out the issue . The issue was Cache-Control header was not set Header set Cache-Control "max-age=60, public" SetHandlerperl-script PerlResponseHandler MyApp::HtmlHandler::handler But now I get this in debug log, seems like its caching each time

[us...@httpd] HTTPS communication between Apache & Tomcat

2009-08-11 Thread ravindra
Hi Everybody, I have an application "app" in tomcat and accessing it using http://hostname/app/login.action . I have added mod_proxy and proxying request to tomcat via apache. The following is setup; here Apache and Tomcat are on same host (for some reason). Http

[us...@httpd] Re: "SSL input filter read failed" error for apache with mod_nss

2009-08-11 Thread Rishi Renjith
Hello, The issue with the dummy DB was that some permissions to some files in it were not given. I did a chmod 777 to all files and now the dummy DB seems to be working fine. I configured the NSS database with the crypto card(sun sca6000) as follows. mkdir /opt/SMC/Apache2/nsscertdb cd /opt/SMC/A

Re: [us...@httpd] HTTPS communication between Apache & Tomcat

2009-08-11 Thread Suresh Visvanathan
you can redirect using mod_rewrite module From: ravindra To: us...@httpd..apache.org Sent: Tuesday, August 11, 2009 7:12:07 PM Subject: [us...@httpd] HTTPS communication between Apache & Tomcat Hi Everybody, I have an application “app” in tomcat and

Re: [us...@httpd] warning message : what shall I do ?

2009-08-11 Thread Eric Covener
On Tue, Aug 11, 2009 at 4:45 AM, Jorge Schrauwen wrote: > removing the line "NameVirtualHost *:80" should fix it. you should have just 1 NameVirtualHost *:80 to our "n" -- the warning implies you have 3 extras. -- Eric Covener cove...@gmail.com -

[us...@httpd] guidance on how to track down crazy apache processes

2009-08-11 Thread Timothy Martin
I've googled until the cows came home, but I can't for the life of me find a good method to figure out what's going on with my server. Help/ Input on what's happening given my description below would be great, but honestly I'm just looking for a method to figure it out on my own! What's hap

[us...@httpd] Tomcat not starting - No error messages seen

2009-08-11 Thread Anisha Parveen -X (anparvee - Infosys at Cisco)
Hi all, I am trying to start tomcat 4.1.3 on Solaris. ps -ef | grep tomcat returns nothing. Tomcat is not started. And I don't see any error messages also. >From the log messages it seems Tomcat is not loading the contexts provided in server.xml. Out of the contexts provided in server.xml , o