Re: [users@httpd] file size error? But I don't have a file this big...

2005-07-07 Thread Jason Czerak
On Wed, 2005-07-06 at 14:58 -0700, Dan Trainor wrote:
 Jason Czerak wrote:
  Wed Jul 06 16:25:18 2005] [notice] child pid 24242 exit signal File size
  limit exceeded (25)
  [Wed Jul 06 16:27:00 2005] [notice] child pid 24368 exit signal File
  size limit exceeded (25)
  [Wed Jul 06 16:27:02 2005] [notice] child pid 24523 exit signal File
  size limit exceeded (25)
  [Wed Jul 06 16:30:14 2005] [notice] child pid 24630 exit signal File
  size limit exceeded (25)
  
  
  Funny, I don't have any files over 2 gig. Any ideas?
  
  I do however run weblogic on the other side of this apache process, but
  nothing is being pulled from weblogic that is that big.
  
  This a sun v40z quad box AMD64. Running RHEL4 - AMD64-bit stuff. I had
  to use a 32-bit compile of apache because weblogic sucks like that.
  
  # ./httpd -V
  Server version: Apache/2.0.54
  Server built:   Jun 20 2005 09:58:15
  Server's Module Magic Number: 20020903:9
  Architecture:   32-bit
  Server compiled with
   -D APACHE_MPM_DIR=server/mpm/worker
   -D APR_HAS_SENDFILE
   -D APR_HAS_MMAP
   -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
   -D APR_USE_SYSVSEM_SERIALIZE
   -D APR_USE_PTHREAD_SERIALIZE
   -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
   -D APR_HAS_OTHER_CHILD
   -D AP_HAVE_RELIABLE_PIPED_LOGS
   -D HTTPD_ROOT=/u01/apache2_ia32_worker
   -D SUEXEC_BIN=/u01/apache2_ia32_worker/bin/suexec
   -D DEFAULT_SCOREBOARD=logs/apache_runtime_status
   -D DEFAULT_ERRORLOG=logs/error_log
   -D AP_TYPES_CONFIG_FILE=conf/mime.types
   -D SERVER_CONFIG_FILE=conf/httpd.conf
  
  
  
  
 
 Check access and error logs.  One of them is 2G.
 

Nope,


# pwd
/u01
# find ./ -size +200k -printf Size: %kK\tPath: %p\n
# find ./ -size +20k -printf Size: %kK\tPath: %p\n
Size: 500504K   Path: ./weblogic_projects/domains/platform/netui.log.1
Size: 250356K   Path: ./weblogic_projects/domains/platform/netui.log
Size: 727076K
Path: ./apache2_ia32_worker/logs/_site_.com/access_log.1115856000
Size: 242696K
Path: ./apache2_ia32_worker/logs/_site_.com/access_log.1117584000
Size: 273424K
Path: ./apache2_ia32_worker/logs/_site_.com/access_log.1118102400
Size: 220272K
Path: ./apache2_ia32_worker/logs/_site_.com/access_log.1119312000
Size: 277296K
Path: ./apache2_ia32_worker/logs/_site_.com/access_log.1118707200

All files would be in a directory some place under /u01 only one rotated
file is near 1 gig, the reast never get close to 300 megs. 

Files are rotated daily.

This site gets on average 4hits/sec. Durning peak hours it's close to
50/sec... In theory I would have that many entries
in /u01/apache/logs/error_log default log right? It's a one every 30 to
120 seconds if that. 


 Thanks
 -dant
 
 -
 The official User-To-User support forum of the Apache HTTP Server Project.
 See URL:http://httpd.apache.org/userslist.html for more info.
 To unsubscribe, e-mail: [EMAIL PROTECTED]
   from the digest: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
-- 
Jason Czerak ([EMAIL PROTECTED])
PPD Medical Device -- New Hope, MN
System Administrator

Desk:  763.489.6128
Cell:  586.405.8366 (Nextel: 130*21*2819)
Pager: 877.448.9280 ([EMAIL PROTECTED])


__
This email transmission and any documents, files or previous email
messages attached to it may contain information that is confidential or
legally privileged. If you are not the intended recipient or a person
responsible for delivering this transmission to the intended recipient,
you are hereby notified that you must not read this transmission and
that any disclosure, copying, printing, distribution or use of this
transmission is strictly prohibited. If you have received this transmission
in error, please immediately notify the sender by telephone or return email
and delete the original transmission and its attachments without reading
or saving in any manner.


-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users@httpd] file size error? But I don't have a file this big...

2005-07-07 Thread Joe Orton
On Wed, Jul 06, 2005 at 02:58:22PM -0700, Dan Trainor wrote:
 Jason Czerak wrote:
  Wed Jul 06 16:25:18 2005] [notice] child pid 24242 exit signal File size
  limit exceeded (25)
  [Wed Jul 06 16:27:00 2005] [notice] child pid 24368 exit signal File
  size limit exceeded (25)
  [Wed Jul 06 16:27:02 2005] [notice] child pid 24523 exit signal File
  size limit exceeded (25)
  [Wed Jul 06 16:30:14 2005] [notice] child pid 24630 exit signal File
  size limit exceeded (25)
...
 Check access and error logs.  One of them is 2G.

2.0.54 on Linux can handle 2Gb error/access log files.

But some other module or script is definitely accessing or trying to 
create 2Gb files on this server.  If you enable core dumps then you can 
find out exactly where; start the server with ulimit -c unlimited and 
add e.g.  CoreDumpDirectory /tmp to your httpd.conf, then run gdb on 
the core dumps produced in /tmp.

joe

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users@httpd] file size error? But I don't have a file this big...

2005-07-07 Thread Jason Czerak
On Thu, 2005-07-07 at 10:16 -0500, Jason Czerak wrote:

SOLVED. Stupid weblogic

/tmp/wlproxy.log was up to 2gig. that was killing my processes. I switch
things to only log error's to that file, not everything. 

Fixing this indirectly solved a random file upload timeout problem too.
Because the process died. :)

Thanks guys.



 On Thu, 2005-07-07 at 16:10 +0100, Joe Orton wrote:
  On Wed, Jul 06, 2005 at 02:58:22PM -0700, Dan Trainor wrote:
   Jason Czerak wrote:
Wed Jul 06 16:25:18 2005] [notice] child pid 24242 exit signal File size
limit exceeded (25)
[Wed Jul 06 16:27:00 2005] [notice] child pid 24368 exit signal File
size limit exceeded (25)
[Wed Jul 06 16:27:02 2005] [notice] child pid 24523 exit signal File
size limit exceeded (25)
[Wed Jul 06 16:30:14 2005] [notice] child pid 24630 exit signal File
size limit exceeded (25)
  ...
   Check access and error logs.  One of them is 2G.
  
  2.0.54 on Linux can handle 2Gb error/access log files.
  
  But some other module or script is definitely accessing or trying to 
  create 2Gb files on this server.  If you enable core dumps then you can 
  find out exactly where; start the server with ulimit -c unlimited and 
  add e.g.  CoreDumpDirectory /tmp to your httpd.conf, then run gdb on 
  the core dumps produced in /tmp.
  
 
 ohh so this may not be just log files? hm  lemme check some other
 things.
 
 
 
-- 
Jason Czerak ([EMAIL PROTECTED])
PPD Medical Device -- New Hope, MN
System Administrator

Desk:  763.489.6128
Cell:  586.405.8366 (Nextel: 130*21*2819)
Pager: 877.448.9280 ([EMAIL PROTECTED])


__
This email transmission and any documents, files or previous email
messages attached to it may contain information that is confidential or
legally privileged. If you are not the intended recipient or a person
responsible for delivering this transmission to the intended recipient,
you are hereby notified that you must not read this transmission and
that any disclosure, copying, printing, distribution or use of this
transmission is strictly prohibited. If you have received this transmission
in error, please immediately notify the sender by telephone or return email
and delete the original transmission and its attachments without reading
or saving in any manner.


-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]